commit 279ffc1abade7648d257ba735bd8fa8148b43952 Author: Matthias Blankertz Date: Sat Sep 6 09:18:15 2025 +0200 Pico-sized STM32F103 dev board An exercise to learn SMT PCB design. Licensed CC BY-SA 4.0. Signed-off-by: Matthias Blankertz diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..271e685 --- /dev/null +++ b/.gitignore @@ -0,0 +1,48 @@ +# Created by https://www.toptal.com/developers/gitignore/api/kicad +# Edit at https://www.toptal.com/developers/gitignore?templates=kicad + +### KiCad ### +# For PCBs designed using KiCad: https://www.kicad.org/ +# Format documentation: https://kicad.org/help/file-formats/ + +# Temporary files +*.000 +*.bak +*.bck +*.kicad_pcb-bak +*.kicad_sch-bak +*-backups +*.kicad_prl +*.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 + +### KiCad Patch ### +rescue-backup/ + +*.tsv +bom/ + +# Gerber export output +out/ + +# End of https://www.toptal.com/developers/gitignore/api/kicad + +production/ + +~*.lck diff --git a/fabrication-toolkit-options.json b/fabrication-toolkit-options.json new file mode 100644 index 0000000..e966d2d --- /dev/null +++ b/fabrication-toolkit-options.json @@ -0,0 +1 @@ +{"ARCHIVE_NAME": "", "EXTRA_LAYERS": "", "ALL_ACTIVE_LAYERS": false, "EXTEND_EDGE_CUT": false, "ALTERNATIVE_EDGE_CUT": false, "AUTO TRANSLATE": true, "AUTO FILL": true, "EXCLUDE DNP": false} \ No newline at end of file diff --git a/mini-stm-board.kicad_dru b/mini-stm-board.kicad_dru new file mode 100644 index 0000000..4447ce5 --- /dev/null +++ b/mini-stm-board.kicad_dru @@ -0,0 +1,138 @@ +(version 1) +# Custom Design Rules (DRC) for KiCAD 7.0 (Stored in '.kicad_dru' file). +# +# Matching JLCPCB capabilities: https://jlcpcb.com/capabilities/pcb-capabilities +# +# KiCad documentation: https://docs.kicad.org/master/id/pcbnew/pcbnew_advanced.html#custom_design_rules +# +# Inspiration +# - https://gist.github.com/darkxst/f713268e5469645425eed40115fb8b49 (with comments) +# - https://gist.github.com/denniskupec/e163d13b0a64c2044bd259f64659485e (with comments) + +# TODO new rule: NPTH pads. +# Inner diameter of pad should be 0.4-0.5 mm larger than NPTH drill diameter. +# JLCPCB: "We make NPTH via dry sealing film process, if customer would like a NPTH but around with pad/copper, our engineer will dig out around pad/copper about 0.2mm-0.25mm, otherwise the metal potion will be flowed into the hole and it becomes a PTH. (there will be no copper dig out optimization for single board)." + +# TODO: new rule for plated slots: min diameter/width 0.5mm +# JLCPCB: "The minimum plated slot width is 0.5mm, which is drawn with a pad." + +# TODO new rule: non-plated slots: min diameter/width 1.0mm +# JLCPCB: "The minimum Non-Plated Slot Width is 1.0mm, please draw the slot outline in the mechanical layer(GML or GKO)"" + +(rule "Track width, outer layer (1oz copper)" + (layer outer) + (condition "A.Type == 'track'") + (constraint track_width (min 0.127mm)) +) + +(rule "Track spacing, outer layer (1oz copper)" + (layer outer) + (condition "A.Type == 'track' && B.Type == A.Type") + (constraint clearance (min 0.127mm)) +) + +(rule "Track width, inner layer" + (layer inner) + (condition "A.Type == 'track'") + (constraint track_width (min 0.09mm)) +) + +(rule "Track spacing, inner layer" + (layer inner) + (condition "A.Type == 'track' && B.Type == A.Type") + (constraint clearance (min 0.09mm)) +) + +(rule "Silkscreen text" + (layer "?.Silkscreen") + (condition "A.Type == 'Text' || A.Type == 'Text Box'") + (constraint text_thickness (min 0.15mm)) + (constraint text_height (min 1mm)) +) + +(rule "Pad to Silkscreen" + (layer outer) + (condition "A.Type == 'pad' && B.Layer == '?.Silkscreen'") + (constraint silk_clearance (min 0.15mm)) +) + +(rule "Edge (routed) to track clearance" + (condition "A.Type == 'track'") + (constraint edge_clearance (min 0.3mm)) +) + +#(rule "Edge (v-cut) to track clearance" +# (condition "A.Type == 'track'") +# (constraint edge_clearance (min 0.4mm)) +#) + +# JLCPCB restrictions ambiguous: +# Illustration: 0.2 mm, 1&2 layer: 0.3 mm, multilayer: "(0.15mm more costly)" +# This rule handles diameter minimum and maximum for ALL holes. +# Other specialized rules handle restrictions (e.g. Via, PTH, NPTH) +(rule "Hole diameter" + (constraint hole_size (min 0.2mm) (max 6.3mm)) +) + +(rule "Hole (NPTH) diameter" + (layer outer) + (condition "!A.isPlated()") + (constraint hole_size (min 0.5mm)) +) + +# TODO: Hole to board edge ≥ 1 mm. Min. board size 10 × 10 mm +(rule "Hole (castellated) diameter" + (layer outer) + (condition "A.Type == 'pad' && A.Fabrication_Property == 'Castellated pad'") + (constraint hole_size (min 0.6mm)) +) + +# JLCPCB: "Via diameter should be 0.1mm(0.15mm preferred) larger than Via hole size" (illustration shows diameters for both dimensions) +# JLCPCB: PTH: "The annular ring size will be enlarged to 0.15mm in production." +(rule "Annular ring width (via and PTH)" + (layer outer) + (condition "A.isPlated()") + (constraint annular_width (min 0.075mm)) +) + +(rule "Clearance: hole to hole (perimeter), different nets" + (layer outer) + (condition "A.Net != B.Net && (A.Type != 'Via' || B.Type != 'Via')") + (constraint hole_to_hole (min 0.5mm)) +) + +(rule "Clearance: via to via (perimeter), different nets" + (layer outer) + (condition "A.Net != B.Net && A.Type == 'Via' && B.Type == 'Via'") + (constraint hole_to_hole (min 0.2mm)) +) + +(rule "Clearance: hole to hole (perimeter), same net" + (layer outer) + (condition "A.Net == B.Net") + (constraint hole_to_hole (min 0.254mm)) +) + +(rule "Clearance: track to NPTH hole (perimeter)" +# (condition "A.Pad_Type == 'NPTH, mechanical' && B.Type == 'track' && A.Net != B.Net") + (condition "!A.isPlated() && B.Type == 'track' && A.Net != B.Net") + (constraint hole_clearance (min 0.254mm)) +) + +(rule "Clearance: track to PTH hole perimeter" + (condition "A.isPlated() && B.Type == 'track' && A.Net != B.Net") + (constraint hole_clearance (min 0.33mm)) +) + +# TODO: try combining with rule "Clearance: PTH to track, different nets" +(rule "Clearance: track to pad" + (condition "A.Type == 'pad' && B.Type == 'track' && A.Net != B.Net") + (constraint clearance (min 0.2mm)) +) + +(rule "Clearance: pad/via to pad/via" + (layer outer) +# (condition "(A.Type == 'Pad' || A.Type == 'Via') && (B.Type == 'Pad' || B.Type == 'Via') && A.Net != B.Net") + (condition "A.isPlated() && B.isPlated() && A.Net != B.Net") + (constraint clearance (min 0.2mm)) +) diff --git a/mini-stm-board.kicad_pcb b/mini-stm-board.kicad_pcb new file mode 100644 index 0000000..8a7ef37 --- /dev/null +++ b/mini-stm-board.kicad_pcb @@ -0,0 +1,19536 @@ +(kicad_pcb + (version 20241229) + (generator "pcbnew") + (generator_version "9.0") + (general + (thickness 1.69) + (legacy_teardrops no) + ) + (paper "A4") + (title_block + (title "Pico STM32") + (date "2025-09-05") + (rev "1") + (comment 1 "Copyright (c) 2025 Matthias Blankertz") + (comment 2 "CC BY-SA 4.0") + ) + (layers + (0 "F.Cu" signal) + (2 "B.Cu" mixed) + (9 "F.Adhes" user "F.Adhesive") + (11 "B.Adhes" user "B.Adhesive") + (13 "F.Paste" user) + (15 "B.Paste" user) + (5 "F.SilkS" user "F.Silkscreen") + (1 "F.Mask" user) + (3 "B.Mask" user) + (17 "Dwgs.User" user "User.Drawings") + (19 "Cmts.User" user "User.Comments") + (21 "Eco1.User" user "User.Eco1") + (23 "Eco2.User" user "User.Eco2") + (25 "Edge.Cuts" user) + (27 "Margin" user) + (31 "F.CrtYd" user "F.Courtyard") + (29 "B.CrtYd" user "B.Courtyard") + (35 "F.Fab" user) + (33 "B.Fab" user) + (39 "User.1" user) + (41 "User.2" user) + (43 "User.3" user) + (45 "User.4" user) + ) + (setup + (stackup + (layer "F.SilkS" + (type "Top Silk Screen") + ) + (layer "F.Paste" + (type "Top Solder Paste") + ) + (layer "F.Mask" + (type "Top Solder Mask") + (thickness 0.01) + ) + (layer "F.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "dielectric 1" + (type "core") + (thickness 1.6) + (material "FR4") + (epsilon_r 4.5) + (loss_tangent 0.02) + ) + (layer "B.Cu" + (type "copper") + (thickness 0.035) + ) + (layer "B.Mask" + (type "Bottom Solder Mask") + (thickness 0.01) + ) + (layer "B.Paste" + (type "Bottom Solder Paste") + ) + (copper_finish "None") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0) + (allow_soldermask_bridges_in_footprints no) + (tenting front back) + (pcbplotparams + (layerselection 0x00000000_00000000_55555555_5755f57f) + (plot_on_all_layers_selection 0x00000000_00000000_00000000_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) + (mode 1) + (useauxorigin no) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (pdf_front_fp_property_popups yes) + (pdf_back_fp_property_popups yes) + (pdf_metadata yes) + (pdf_single_document no) + (dxfpolygonmode yes) + (dxfimperialunits yes) + (dxfusepcbnewfont yes) + (psnegative no) + (psa4output no) + (plot_black_and_white yes) + (sketchpadsonfab no) + (plotpadnumbers no) + (hidednponfab no) + (sketchdnponfab yes) + (crossoutdnponfab yes) + (subtractmaskfromsilk yes) + (outputformat 1) + (mirror no) + (drillshape 0) + (scaleselection 1) + (outputdirectory "") + ) + ) + (net 0 "") + (net 1 "GND") + (net 2 "VBUS") + (net 3 "+3.3V") + (net 4 "unconnected-(J1-SBU1-PadA8)") + (net 5 "unconnected-(J1-SBU2-PadB8)") + (net 6 "Net-(U1-PD0)") + (net 7 "Net-(U1-PD1)") + (net 8 "Net-(J1-CC1)") + (net 9 "Net-(J1-CC2)") + (net 10 "/PA9_USART1TX") + (net 11 "/PA10_USART1RX") + (net 12 "/BOOT0") + (net 13 "/PA15") + (net 14 "/PB4") + (net 15 "/PB2_BOOT1") + (net 16 "/PB3") + (net 17 "/PB5") + (net 18 "/PB8") + (net 19 "/PB9") + (net 20 "/PB7") + (net 21 "/PB6") + (net 22 "/PC14") + (net 23 "+5V") + (net 24 "/PA14_SWCLK") + (net 25 "/PA13_SWDIO") + (net 26 "/USB_D_P") + (net 27 "/USB_D_N") + (net 28 "/PA3") + (net 29 "/PA4") + (net 30 "/PA0") + (net 31 "/PA1") + (net 32 "/PA6") + (net 33 "/PA8") + (net 34 "/PA2") + (net 35 "/PA7") + (net 36 "/PA5") + (net 37 "/PC15") + (net 38 "/PC13") + (net 39 "/PB10") + (net 40 "/PB15") + (net 41 "/PB11") + (net 42 "/PB13") + (net 43 "/PB14") + (net 44 "/PB12") + (net 45 "/PB1") + (net 46 "/PB0") + (net 47 "/nRST") + (net 48 "Net-(D1-Pad1)") + (net 49 "Net-(C10-Pad2)") + (footprint "PCM_JLCPCB:SOT-143-4_L2.9-W1.3-P1.90-LS2.4-BL-1" + (layer "F.Cu") + (uuid "0359b284-bf78-41a4-89c2-af47d27ab554") + (at 156.972 65.405 -90) + (descr "SOT-143-4_L2.9-W1.3-P1.90-LS2.4-BL-1 footprint") + (tags "SOT-143-4_L2.9-W1.3-P1.90-LS2.4-BL-1 footprint C22395520") + (property "Reference" "D3" + (at 0.03 -3.19 90) + (layer "F.SilkS") + (hide yes) + (uuid "55a1dcd4-9816-43f5-a218-501e4c155abd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "H5VUT1B" + (at 0.03 3.19 90) + (layer "F.Fab") + (uuid "7e3b8ae7-7be8-43ed-8ba4-ba81fed4131e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://wmsc.lcsc.com/wmsc/upload/file/pdf/v2/lcsc/2405091603_hongjiacheng-H5VUT1B_C22395520.pdf" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "1b1a01f1-d268-4bdd-9dca-259a0a522736") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "5A 75W 15V 6V Bidirectional 5V SOT-143 ESD and Surge Protection (TVS/ESD) ROHS" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "28a368c1-9741-407a-946c-530037105da9") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C22395520" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2c814215-e7cc-45ea-b63f-1eea0d00ee6d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "10590" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a3f7d91d-1751-443e-9be0-ff83d7677450") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.054USD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7d8634ea-3915-41c8-ae10-34b2b11041f0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4ff86900-0094-494f-8042-360f9a6d03de") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "5" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1307aeb2-329b-4166-a87c-8b3125cf1ce5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "4" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "33734669-634f-4e50-b0fb-9c3ba04720d4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Preferred Component" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9aca3221-fe17-42fe-8bc9-f94f52bde76f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Circuit Protection,ESD And Surge Protection (TVS/ESD)" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6d8bc8e8-8c9e-4fe6-84a8-713af9d96011") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "hongjiacheng" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "39a58096-885b-4175-a04b-1c7db3b15e58") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "H5VUT1B" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ccf79019-59c6-4839-a026-44144f7c2433") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/d140b889-6492-4bb2-82a2-50ab7e0cb11e") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (attr smd) + (fp_line + (start -1.5 0.4) + (end 1.5 0.4) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "b8c5df6c-7551-46f9-9c8c-361b7c28fdb5") + ) + (fp_line + (start -1.5 -0.4) + (end -1.5 0.4) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "e8148931-7b7b-4bd3-bd54-00c238f31b5f") + ) + (fp_line + (start -1.5 -0.4) + (end 1.5 -0.4) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "f352e44e-7fe3-4134-b1c9-cfbe6f6c97de") + ) + (fp_line + (start 1.5 -0.4) + (end 1.5 0.4) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "20ec160f-89c1-4f72-81e8-3cbd96f6fa15") + ) + (fp_circle + (center -1.5 0.75) + (end -1.47 0.75) + (stroke + (width 0.15) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "8a0db5d0-3bf7-4544-b5c0-73713ac7ed3a") + ) + (fp_line + (start -1.5 0.75) + (end 1.5 0.75) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "1c9958f1-9f59-468a-bc4f-75082ae945c3") + ) + (fp_line + (start 1.5 0.75) + (end 1.5 -0.75) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "d4d7f301-f224-4185-bf30-180dc8b488a4") + ) + (fp_line + (start -1.5 -0.75) + (end -1.5 0.75) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "83fabda7-6f9c-43f8-b810-24e91b84dbc4") + ) + (fp_line + (start 1.5 -0.75) + (end -1.5 -0.75) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "20aeb047-ac4a-4bb8-b82e-4b625ed7d022") + ) + (fp_circle + (center -0.9 1.4) + (end -0.8 1.4) + (stroke + (width 0.2) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "8a98cddc-9a11-42f8-93dc-4ff95556ab3d") + ) + (fp_text user "REF**" + (at 0.03 5.19 90) + (layer "F.Fab") + (uuid "2a534dce-8250-4206-b21a-d995b4dbdf34") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -0.75 1.19 270) + (size 1.19 0.84) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pinfunction "1") + (pintype "unspecified") + (zone_connect 2) + (uuid "ba631f3a-7507-4764-94f3-ee724408a1e1") + ) + (pad "2" smd roundrect + (at 0.95 1.19 270) + (size 0.84 0.84) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 26 "/USB_D_P") + (pinfunction "2") + (pintype "unspecified") + (uuid "a6ae7f5b-5aeb-479a-8ba2-6221a894739f") + ) + (pad "3" smd roundrect + (at -0.95 -1.19 270) + (size 0.84 0.84) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 27 "/USB_D_N") + (pinfunction "3") + (pintype "unspecified") + (uuid "32bc4965-e666-44d8-afc9-9145a4b37d7e") + ) + (pad "4" smd roundrect + (at 0.95 -1.19 270) + (size 0.84 0.84) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 2 "VBUS") + (pinfunction "4") + (pintype "unspecified") + (uuid "290ef7b8-1d3d-468b-92ce-2ad6d15284d1") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/SOT-143-4_L2.9-W1.3-P1.90-LS2.4-BL-1.step" + (offset + (xyz 0 0 0.5) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "043e1af4-a10c-40a7-afc2-8ab2287ff9f3") + (at 151.638 84.1756 90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C6" + (at 0 -1.16 90) + (layer "F.SilkS") + (hide yes) + (uuid "77584f5f-5c58-4dcf-9e46-a569bc25cef0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.16 90) + (layer "F.Fab") + (uuid "1ec6cf32-5f9b-44e8-8e1b-a0852f2b408d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "044a9190-695e-47e1-82a7-3ef98616bb90") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e04ab783-69cc-4b5a-8e38-484f3ef880e7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "91ff5214-3a30-4e83-9706-ad78d5b87f10") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "20208285" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b9dc406a-a901-406c-8ccd-2630030f037d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c1fad2fb-2c6d-4fce-b3e3-f06f9bdc890c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "092b4ae7-f19a-4caa-a93c-710d8b6bb856") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9d74b1ab-bf00-4d45-a562-f53343cc2d05") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb88f3d6-3a0c-42c6-92de-3f1b9013816a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "20f34bec-d63e-4eb7-896f-355904267c86") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dd174648-bfdd-4457-8a49-b13734f6c6b6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "41fb881d-66fe-4de4-be81-c20bd7569583") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d94eea03-4e4e-47df-b1d1-c97421b9b5a0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "16V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f5a949db-afca-4c02-947b-ed7784b87ae5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "abeeb072-468b-46d1-9403-83c6d2ddd7f6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "100nF" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "26a7aefd-8c63-4617-a45a-3d00374a505d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "84013270-0faa-4692-9076-bd36fa42c0c2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/77c6cee7-eede-4140-8c90-0efaacacf376") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "85569657-a8a3-4c6e-96f7-e522906b22a3") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "3c88888b-94b4-4351-bacd-41f5427785f8") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "5c0cb111-92b6-494f-bb9b-2a444c42ac72") + ) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "e2fac1f4-464c-407f-a4e0-a48af5207ce1") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "81abb8e6-7add-4021-bcdc-f5b6cf7a4b93") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "62e2d6d2-8a78-46d5-bab8-2ef6e65fe4c2") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7a205258-9a6a-4cd2-bd7a-9058933e2d26") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d3fb7863-01c6-4073-8d2e-efa9cfb9a805") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "10192a15-d333-4ab4-9ec7-31c324cbb447") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "f0456583-6484-4bb2-bf7b-9faaccfd77ca") + ) + (pad "2" smd roundrect + (at 0.499999 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "57150713-ecc9-4074-9aae-8a3017b2f533") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:TYPE-C-SMD_HX-TYPE-C-16PIN" + (layer "F.Cu") + (uuid "0565571b-c86f-4476-8881-c1176426eefa") + (at 157.48 59.69 180) + (descr "TYPE-C-SMD_HX-TYPE-C-16PIN footprint") + (tags "TYPE-C-SMD_HX-TYPE-C-16PIN footprint C2927039") + (property "Reference" "J1" + (at 0 -4.38 0) + (layer "F.SilkS") + (hide yes) + (uuid "c8531b2d-642c-47c3-9840-6e4267b71366") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Connector, USB-TYPE-C-16P" + (at 0 7.08 0) + (layer "F.Fab") + (uuid "fffeeaf3-f1e0-4443-88ca-346a84225534") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20220920/0EF8F885FCCEA71F60E9E85152155021.pdf" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "317092c6-2bad-4290-a97c-ed476b6769f0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "3A 1 Horizontal attachment 16P Female -25℃~+85℃ Type-C SMD USB Connectors ROHS" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "3673d34a-889d-4711-861e-9d70de3cc0df") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C2927039" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d34944ae-99df-4743-8765-6d799d38305c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/d080791b-a954-4c61-b00f-85e5588e23e2") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (attr through_hole) + (fp_line + (start -4.8 5) + (end 4.8 5) + (stroke + (width 0.05) + (type default) + ) + (layer "Dwgs.User") + (uuid "9f845376-9426-454f-a239-0652282e5b08") + ) + (fp_line + (start 4.75 5.25) + (end -4.75 5.25) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "c69d41ca-4d0c-4aad-9556-2d49a03d4fb7") + ) + (fp_line + (start 4.75 -3) + (end 4.75 5.25) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "b3c59dfd-1a67-4074-ba70-90ef0d20af35") + ) + (fp_line + (start -4.75 5.25) + (end -4.75 -3) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "f899954f-ac26-474d-aa86-9123569cb1c8") + ) + (fp_line + (start -4.75 -3) + (end 4.75 -3) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "5b17838b-e685-4946-b620-46ab5a0739c9") + ) + (fp_text user "REF**" + (at 0 9.08 0) + (layer "F.Fab") + (uuid "0eae4027-b017-4640-b1b4-1b47c65b0b08") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "" np_thru_hole circle + (at -2.89 -1.3 180) + (size 0.6 0.6) + (drill 0.6) + (layers "*.Cu" "*.Mask") + (uuid "1b14ec3a-5579-4288-a08e-02fb10ac4e37") + ) + (pad "" np_thru_hole circle + (at 2.89 -1.3 180) + (size 0.6 0.6) + (drill 0.6) + (layers "*.Cu" "*.Mask") + (uuid "e2c5e14e-dc51-44e0-964a-a4d2c75d2c4c") + ) + (pad "A5" smd rect + (at -1.25 -2.5 180) + (size 0.3 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 8 "Net-(J1-CC1)") + (pinfunction "CC1") + (pintype "bidirectional") + (uuid "699e7469-59c0-4bb1-8a36-1dcc97b31706") + ) + (pad "A6" smd rect + (at -0.25 -2.5 180) + (size 0.3 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 26 "/USB_D_P") + (pinfunction "D+") + (pintype "bidirectional") + (uuid "7ef449fc-efb4-4b42-b96f-ae8e0f60148b") + ) + (pad "A7" smd rect + (at 0.25 -2.5 180) + (size 0.3 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 27 "/USB_D_N") + (pinfunction "D-") + (pintype "bidirectional") + (uuid "57ce26b4-d463-4adb-9b0e-81a93fd83362") + ) + (pad "A8" smd rect + (at 1.25 -2.5 180) + (size 0.3 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 4 "unconnected-(J1-SBU1-PadA8)") + (pinfunction "SBU1") + (pintype "bidirectional+no_connect") + (uuid "55eab77c-77fe-4868-8e81-52b200d426a4") + ) + (pad "A9B4" smd rect + (at 2.4 -2.5 180) + (size 0.5 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 2 "VBUS") + (pinfunction "VBUS") + (pintype "passive") + (uuid "f2937b35-8bb1-4957-9e78-d471b82a7cd9") + ) + (pad "A12B1" smd rect + (at 3.2 -2.5 180) + (size 0.5 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 1 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "dbd44b5f-a7e8-49cc-a650-e94be32a6ac9") + ) + (pad "B5" smd rect + (at 1.75 -2.5 180) + (size 0.3 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 9 "Net-(J1-CC2)") + (pinfunction "CC2") + (pintype "bidirectional") + (uuid "cae9329d-b6a0-4466-87c6-cb263c128d14") + ) + (pad "B6" smd rect + (at 0.75 -2.5 180) + (size 0.3 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 26 "/USB_D_P") + (pinfunction "D+") + (pintype "bidirectional") + (uuid "218bc983-31a7-4ca3-b2ac-03668d17fed5") + ) + (pad "B7" smd rect + (at -0.75 -2.5 180) + (size 0.3 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 27 "/USB_D_N") + (pinfunction "D-") + (pintype "bidirectional") + (uuid "cd5a09e1-b7d6-434c-aa32-d060b2095501") + ) + (pad "B8" smd rect + (at -1.75 -2.5 180) + (size 0.3 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 5 "unconnected-(J1-SBU2-PadB8)") + (pinfunction "SBU2") + (pintype "bidirectional+no_connect") + (uuid "95b29983-3fcb-49b1-916b-826bdfa70de0") + ) + (pad "B9A4" smd rect + (at -2.4 -2.5 180) + (size 0.5 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 2 "VBUS") + (pinfunction "VBUS") + (pintype "passive") + (uuid "4881cbea-67e3-43e6-9951-322faaa9dafe") + ) + (pad "B12A1" smd rect + (at -3.2 -2.5 180) + (size 0.5 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (net 1 "GND") + (pinfunction "GND") + (pintype "passive") + (uuid "ed97df35-831e-459d-bb07-67d4ef5b341c") + ) + (pad "S1" thru_hole oval + (at -4.33 -1.82 180) + (size 1.3 2.3) + (drill oval 0.5 1.6) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (uuid "f3df0eed-d708-4d9d-91d8-d738d5fc2d27") + ) + (pad "S1" thru_hole oval + (at -4.33 2.38 180) + (size 1.3 2.1) + (drill oval 0.5 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (uuid "0ffc69a7-7dc5-4a9c-953e-06e1fc208c81") + ) + (pad "S1" thru_hole circle + (at -2 1 180) + (size 0.5 0.5) + (drill 0.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (thermal_bridge_angle 90) + (uuid "d4fe996e-f07a-4b0d-acd1-07053b6ecc34") + ) + (pad "S1" thru_hole circle + (at -2 3 180) + (size 0.5 0.5) + (drill 0.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (thermal_bridge_angle 90) + (uuid "d445709d-cf3f-4432-b0e5-bc6a1d76db14") + ) + (pad "S1" smd roundrect + (at 0 2 180) + (size 5 3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1666666667) + (net 1 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (zone_connect 2) + (uuid "18b8337d-989d-4956-ae12-4a9923a8da3a") + ) + (pad "S1" thru_hole circle + (at 2 1 180) + (size 0.5 0.5) + (drill 0.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (thermal_bridge_angle 90) + (uuid "11cb3d91-a97a-42e4-81aa-685026076fc0") + ) + (pad "S1" thru_hole circle + (at 2 3 180) + (size 0.5 0.5) + (drill 0.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (thermal_bridge_angle 90) + (uuid "cf7f2906-ae30-46d5-86c2-78d85800cdce") + ) + (pad "S1" thru_hole oval + (at 4.33 -1.82 180) + (size 1.3 2.3) + (drill oval 0.5 1.6) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (uuid "d77a20e3-403d-468e-8ce6-ab130171d68f") + ) + (pad "S1" thru_hole oval + (at 4.33 2.38 180) + (size 1.3 2.1) + (drill oval 0.5 1.3) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "SHIELD") + (pintype "passive") + (uuid "1ceb67f6-2bf5-4355-8030-3b736da0be92") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/TYPE-C-SMD_HX-TYPE-C-16PIN.step" + (offset + (xyz 0 -1.063 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "11b2e3ad-cb4b-43f4-b963-ae168fb185c3") + (at 152.8198 89.036 -90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C9" + (at 0 -1.16 90) + (layer "F.SilkS") + (hide yes) + (uuid "f11c5866-9db5-4ba9-9dba-18e26c8e2e62") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10pF" + (at -0.765 1.391 90) + (layer "F.Fab") + (uuid "49cc1086-2699-47f4-ad58-740c6c353764") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05C100JB5NNNC_C32949.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "24d561e9-aae8-4c7a-a2e4-b99cefea35a2") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "50V 10pF C0G ±5% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "54737ee4-e505-4d6c-8529-c089ee0a227c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C32949" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f47ed32b-b5b6-4c93-8f9e-2f6388f2d5c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "564575" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3a785457-2dfd-4e41-9d04-27a353ed15af") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.007USD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b5ad6cdf-7350-480f-b495-24a15806c59b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "36cd91d2-8317-415f-a915-37060b44b00a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "78b17808-292f-4766-8db5-e72e216f79ce") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d4a95169-0e9f-49d0-8d8f-82494d6151ce") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9d168b3f-41b6-4de8-94ee-1faa81047d88") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "93f207ef-fd7a-463d-8dbf-00ad8836a18d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d2de9c79-d716-4133-bcbd-e5fa062169d5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05C100JB5NNNC" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "54d47277-8e9e-447f-adee-83fb3e28ab5a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "50V" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2d318140-ed45-47b9-9d45-92b4f9bd2dfe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±5%" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ae07ad51-e1b7-47e3-aa33-672a384fe467") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "10pF" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8b8c83f9-8e22-4aa0-aa63-d251ab9061ab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "C0G" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a9de972f-9a66-48e8-9797-f49aa8d890cb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/bea934d7-479b-4bb2-9a6b-ba14e635406a") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "dbd20e37-f315-4405-a28c-fab7d6a3e962") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "f635a54c-6bc2-4a61-a1f5-d0c475874153") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "86be1093-d015-4329-844c-d8b62285180a") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "34cfde25-de92-495a-9013-8d467c616a85") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4df6c7db-c4b5-48e7-a26f-aca4e9b49e40") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "169706d6-ceef-40aa-8fb5-be494ef848c5") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "42399f12-25a2-4941-804f-44a0256d4392") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d91f7679-1a27-4bd4-8bd9-bbdd29795cce") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "a9adbbd2-82a3-48f4-9739-5c219abe2df0") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 270) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "5db0c38a-c428-46ea-ae19-5ba4e925c6a7") + ) + (pad "2" smd roundrect + (at 0.499999 0 270) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 6 "Net-(U1-PD0)") + (pintype "passive") + (uuid "c73b78b7-ea32-4aee-a733-18e8bee72764") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:D_0805" + (layer "F.Cu") + (uuid "121196d7-0633-43fc-bbdb-0c3aa4f2bc28") + (at 158.75 72.644 -90) + (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator") + (tags "LED") + (property "Reference" "D1" + (at 0 -1.65 90) + (layer "F.SilkS") + (hide yes) + (uuid "26aa9ffd-4ed0-4283-9e3a-fd1d770f7bc1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Green" + (at 0 1.65 90) + (layer "F.Fab") + (uuid "6d8f0604-dfbe-4652-a904-61c42bc0741c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_1806151820_Hubei-KENTO-Elec-KT-0805G_C2297.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2ed849cd-34b4-48fc-aa6e-e644a29910ef") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Emerald 0805 LED Indication - Discrete ROHS" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "482a8562-9477-449b-a846-c64e27bae321") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C2297" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "45a6bb4e-7016-4cc9-86ff-ba7ea45d50b9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "2062782" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c871a2dd-765a-4117-8edd-4f8d65c7f8fd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.014USD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "07e19575-a22d-43f0-b26e-0b8d55b175de") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e57ca7d2-0421-4ed1-8703-95b353dbda11") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f436b2b3-e115-456d-a234-59828545057d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b67f8197-5ea4-45f7-bd61-fc5172dd4410") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b7d12161-13e5-47cc-a19c-3f10d5f885c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Optoelectronics,Light Emitting Diodes (LED)" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bfec8a32-573e-4092-8d63-46696dade3e0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Hubei KENTO Elec" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8384a535-b02c-486a-9445-070f21ef99c5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "KT-0805G" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d444ee8a-4545-400c-9b48-bcdc0f30227c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Emitted Color" "Emerald" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "69a770a5-9fa4-4758-b8a9-6b7e4920c3ac") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "D_*") + (path "/9a05a4a7-86c6-49e6-8643-735ccf34a49b") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start -1.69 0.96) + (end 1 0.96) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "102edb0d-1586-44f2-99c7-6b7f6059ca47") + ) + (fp_line + (start -1.69 -0.96) + (end -1.69 0.96) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "8296d067-af67-4a5b-9ff2-af31fea417ad") + ) + (fp_line + (start 1 -0.96) + (end -1.69 -0.96) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "e92a411a-f0d9-4321-abdd-893a7e0115cf") + ) + (fp_line + (start -1.68 0.95) + (end -1.68 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "21e07161-a61a-4075-826f-db57e4be2222") + ) + (fp_line + (start 1.68 0.95) + (end -1.68 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ce219259-081f-4652-8b8f-9c294372be9b") + ) + (fp_line + (start -1.68 -0.95) + (end 1.68 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "44be0d6b-53dc-45fb-a533-cb93fccdf809") + ) + (fp_line + (start 1.68 -0.95) + (end 1.68 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "b57fe801-763d-4f15-8ee6-df4813310ab2") + ) + (fp_line + (start -1 0.6) + (end 1 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "807ae577-f5f1-441a-a9aa-b7e273701498") + ) + (fp_line + (start 1 0.6) + (end 1 -0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "408dec57-a0aa-409b-b4bc-01d06f410d91") + ) + (fp_line + (start -1 -0.3) + (end -1 0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b821ac05-3220-4771-a391-0bbff7e24150") + ) + (fp_line + (start -0.7 -0.6) + (end -1 -0.3) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4eb07dd0-09f4-4250-9afd-f65eda3de036") + ) + (fp_line + (start 1 -0.6) + (end -0.7 -0.6) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e87468e5-b6ea-4987-bbbf-7fe5e013e717") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "efa908f1-b921-4323-81b1-5f1a354f6c34") + (effects + (font + (size 0.5 0.5) + (thickness 0.08) + ) + ) + ) + (pad "1" smd roundrect + (at -0.939999 0 270) + (size 0.97 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 48 "Net-(D1-Pad1)") + (pintype "passive") + (uuid "3091c2c4-ccbd-42b3-b808-44070cb28c84") + ) + (pad "2" smd roundrect + (at 0.939999 0 270) + (size 0.97 1.4) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 33 "/PA8") + (pintype "passive") + (uuid "8c4a5b18-c0eb-4c26-b1d8-838d8befd313") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/D_0805.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:R_0402" + (layer "F.Cu") + (uuid "1b08aeee-bc7d-4540-a7ee-d1308a0da6e8") + (at 156.718 101.981 -90) + (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R9" + (at -1.05 -0.85 90) + (layer "F.SilkS") + (hide yes) + (uuid "11fe09ea-d408-4295-b2bd-26d068dc7801") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify right) + ) + ) + (property "Value" "10kΩ" + (at 0 0.199999 90) + (layer "F.Fab") + (hide yes) + (uuid "64ecc469-3e22-41b0-8674-2f23fcc5e864") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2411221126_UNI-ROYAL-Uniroyal-Elec-0402WGF1002TCE_C25744.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "69c324d2-563f-48ea-83fc-6216ceae71a7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 10kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e3b4ef9f-11f5-4884-883a-af7b9a1581ba") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "48481bb6-06d8-4f42-bfe1-fb35725b1303") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "24372091" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d4d98260-85bc-4607-805b-c29495050ca3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1dfa072e-98ce-4c5a-b5ef-a8d4244bf94d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f218d54b-f613-4d40-b5d7-daf78ba12d76") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "de307d83-4d81-48e9-8867-aa379ec35f22") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fd64d922-1dab-4e9f-b76e-a160f2f1fe79") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cf965232-bf69-4708-b2b7-8db965ed4664") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "16b9fced-5934-4223-8900-943a6371e7b0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bf02ada6-8358-4f1d-9f33-a954951811e4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "0402WGF1002TCE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ff2f92bf-e83e-471c-a156-8e53a74fd1c9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Resistance" "10kΩ" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d92390b4-b8d9-4db5-96a6-cbba7ab64594") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "633b348f-8014-4c7a-87b9-e0b689aad259") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9ce0ca31-4a0b-4fbb-abe6-665492bf23e8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "13e97e3f-899b-45fd-896f-3cc40f43e18e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4a8c4ba3-ee65-49c0-ab45-cd0b0fc17861") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e06e79ba-7114-4c01-a9fb-a11f2a0ec7ec") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b024bfe9-09c1-49e6-a215-6c751edadeee") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/d1d19b8d-2c92-468c-953b-7507654198ff") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "ae023f2d-54c6-4109-bb0f-92cf3828bd4e") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "31584c01-f76e-4321-861e-6494902a4d6e") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "a99fadda-050d-41a1-b06b-74518d05ed42") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "e60a13cd-ab61-49e7-baac-d6558cf905a3") + ) + (fp_poly + (pts + (xy -0.53 -0.27) (xy 0.53 -0.27) (xy 0.53 0.27) (xy -0.53 0.27) + ) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "5c20ff7b-80d3-4f5c-82e8-d0edf79a383c") + ) + (pad "1" smd roundrect + (at -0.499999 0 270) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 12 "/BOOT0") + (pintype "passive") + (uuid "2543f9ab-fd69-41af-8afd-e16d2f6bf4f2") + ) + (pad "2" smd roundrect + (at 0.499999 0 270) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "2f26a1ff-8563-436e-8a95-620dbc725f19") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/R_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:LQFP-48_7x7mm_P0.5mm" + (layer "F.Cu") + (uuid "1f828b8f-e3a9-420d-9fdf-e73a26064ba4") + (at 157.210592 81.010592 90) + (descr "LQFP, 48 Pin (https://www.analog.com/media/en/technical-documentation/data-sheets/ltc2358-16.pdf), generated with kicad-footprint-generator ipc_gullwing_generator.py") + (tags "LQFP QFP") + (property "Reference" "U1" + (at 0 -5.85 90) + (layer "F.SilkS") + (hide yes) + (uuid "b2004576-121e-4acb-9713-89b15c9ee4d1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "STM32F103C8T6" + (at 0 5.85 90) + (layer "F.Fab") + (uuid "a93a7ad0-4be0-4fc4-8c04-fa3a7d14170f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f103c8.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b6426609-d680-47da-8df3-a213922c401b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "32Bit, 72MHz, 64KB Flash, 20KB RAM, 2.0-3.6V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "86dad2ba-81d1-4e8e-b30d-fe671b169618") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C8734" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1db99c7c-be00-490c-9bbc-8d9c1417360d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "1.086USD" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5f090d24-e44d-4173-a33b-f0dedd785560") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "207004" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "73929e06-6ab6-4e19-b15d-6a23e1577a99") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2bb06a82-d4dd-4964-8d65-f42843c2b5af") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "1" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "38ba9e63-8276-4a0a-8d5b-75074ceec1a0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "0" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6454c05c-0d59-41fe-97e8-1c9b5d880ecc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Preferred Component" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e2c2cc01-403f-483f-829c-8fc37e18b709") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Embedded Processors & Controllers,ST Microelectronics" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a470badb-0d15-4965-9361-f5859f2adef1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "STMicroelectronics" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9bb28826-c790-4955-9cb4-b3ab92015ac6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "STM32F103C8T6" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "da080e24-93c7-4c4e-9935-0b42573aff6d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Adc (Bit)" "12bit" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "09f46a63-c8ca-4b89-8c4b-f3ddf23bd4a2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Low-Voltage Detect" "Yes" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b705d4b3-4732-4509-a70d-f45259a6b108") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Universal Serial Bus" "Yes" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "435cfeb8-ed6d-41d8-8058-ade34331efac") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Direct Memory Access" "Yes" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e84fbe88-c3cb-4dc3-bc9b-f3db3c144eab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Watchdog" "Yes" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e2d7017f-3eef-49d2-bd2a-6c585f1fbe9e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Program Storage Size" "64KB" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "00915a95-a8fd-4ef0-a603-03b91212a2bb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Cpu Maximum Speed" "72MHz" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a5b69276-d2f9-4704-9f7d-7bc613d67713") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Gpio Ports Number" "37" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "65ce5936-319f-49f2-a084-fddbf369d1a1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Internal Oscillator" "Yes" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a6b21ec0-c9eb-47be-834b-fdae20360314") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Infrared Data Association" "Yes" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7953ca44-5ed2-465a-91f1-26e036470f42") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Voltage Range" "2V~3.6V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a2e85249-d72d-4f09-b49c-51602a52c995") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Ram Size" "20KB" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fda960e5-5836-4153-af6f-882e7d578f33") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Cpu Core" "ARM-M3" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8aaf3cf0-005d-4eac-9190-0a5b394e1356") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature Range" "-40°C~+85°C" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a3dce66b-69d8-4813-a760-273b68983a31") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Program Memory Type" "FLASH" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0f8075fc-45b7-4f0b-a047-0ff0c39e53c8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Peripheral/Function" "DMA;On-chip temperature sensor;WDT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f14e40c8-dae6-4f25-9a80-ec431b70b8fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Low Voltage Detection Threshold" "2V~3.6V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "196818f4-c0d5-445a-8536-1880b18f30ab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "LQFP*7x7mm*P0.5mm*") + (path "/6231ac83-0920-4199-b7ec-0ad75afa1b04") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (attr smd) + (fp_line + (start 3.61 -3.61) + (end 3.61 -3.16) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "7724b55e-1a36-43f7-81d8-2ec941c99ca5") + ) + (fp_line + (start 3.16 -3.61) + (end 3.61 -3.61) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "4e853d2d-e7d9-413a-a00e-832a026a1c19") + ) + (fp_line + (start -3.16 -3.61) + (end -3.61 -3.61) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "228e0bea-216f-42e1-ab0b-91a6ca777988") + ) + (fp_line + (start -3.61 -3.61) + (end -3.61 -3.16) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "0bff94ac-ee22-4741-8f8e-514cf3c37cfa") + ) + (fp_line + (start 3.61 3.61) + (end 3.61 3.16) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "755abd2f-dd73-4419-8764-352d65272b1c") + ) + (fp_line + (start 3.16 3.61) + (end 3.61 3.61) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "5c91121f-0e47-42a5-bbb3-86967315d7b4") + ) + (fp_line + (start -3.16 3.61) + (end -3.61 3.61) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "deda13dc-a46d-461f-bbe0-11b682d37c58") + ) + (fp_line + (start -3.61 3.61) + (end -3.61 3.16) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "ddf8797c-68d1-4413-91be-66011b1ac441") + ) + (fp_poly + (pts + (xy -4.2 -3.16) (xy -4.54 -3.63) (xy -3.86 -3.63) (xy -4.2 -3.16) + ) + (stroke + (width 0.12) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "4eef0f54-2067-423e-8b4a-36bdb7bd3cd6") + ) + (fp_line + (start 3.15 -5.15) + (end 3.15 -3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "712d3d57-c145-4005-a481-8c59b170b28b") + ) + (fp_line + (start 0 -5.15) + (end 3.15 -5.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0dc5da4e-c6ce-43ce-a037-38f68c810c68") + ) + (fp_line + (start 0 -5.15) + (end -3.15 -5.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e060d1b3-23cd-4af6-b83f-f0ab037bf4f0") + ) + (fp_line + (start -3.15 -5.15) + (end -3.15 -3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5d491889-baca-4945-bff8-aec91a5ae976") + ) + (fp_line + (start 3.75 -3.75) + (end 3.75 -3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "e971e0b7-828c-4c4e-a156-874c3d3644cf") + ) + (fp_line + (start 3.15 -3.75) + (end 3.75 -3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "25b2f403-660c-4011-a45f-e852585b42e3") + ) + (fp_line + (start -3.15 -3.75) + (end -3.75 -3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fe45bbfb-cbec-4dfd-9041-cc919722338c") + ) + (fp_line + (start -3.75 -3.75) + (end -3.75 -3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2feb5c1a-3758-4e99-a80a-401d0d88a1b9") + ) + (fp_line + (start 5.15 -3.15) + (end 5.15 0) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "da1a5c1d-4928-4250-8a11-6af80871fb49") + ) + (fp_line + (start 3.75 -3.15) + (end 5.15 -3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "3a4757bb-b898-46be-a44e-5532772c5a75") + ) + (fp_line + (start -3.75 -3.15) + (end -5.15 -3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "79a5620b-7452-43fc-9808-51b47afb6054") + ) + (fp_line + (start -5.15 -3.15) + (end -5.15 0) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "1ba921d7-a891-44a8-9baf-2e5f41d0dd94") + ) + (fp_line + (start 5.15 3.15) + (end 5.15 0) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5d7c28d4-fc87-440f-9739-6b2044ebadc6") + ) + (fp_line + (start 3.75 3.15) + (end 5.15 3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0dc45c38-8a92-42f2-8271-b4c8139ffa6d") + ) + (fp_line + (start -3.75 3.15) + (end -5.15 3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "121ebdae-2e56-4007-8c45-6cfa57e0dbd4") + ) + (fp_line + (start -5.15 3.15) + (end -5.15 0) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "2c6048c0-1e8e-419e-b617-8e42cb0e5ea7") + ) + (fp_line + (start 3.75 3.75) + (end 3.75 3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4691105d-2e4b-4275-85e5-241ce3e7fd81") + ) + (fp_line + (start 3.15 3.75) + (end 3.75 3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ce64c051-b228-467a-989a-a156c788b293") + ) + (fp_line + (start -3.15 3.75) + (end -3.75 3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "4ae20233-bfd8-451e-84a6-09bbd133a14f") + ) + (fp_line + (start -3.75 3.75) + (end -3.75 3.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "106f79e1-1e72-4064-9c61-3fbaed4c19a6") + ) + (fp_line + (start 3.15 5.15) + (end 3.15 3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0051bd35-8942-4724-9e26-57d137595e77") + ) + (fp_line + (start 0 5.15) + (end 3.15 5.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "a329c411-8b2e-488d-a071-25b72050a3a9") + ) + (fp_line + (start 0 5.15) + (end -3.15 5.15) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "900da69b-fee4-423d-87f7-4b7f77fb3095") + ) + (fp_line + (start -3.15 5.15) + (end -3.15 3.75) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ad29dffb-12fd-48af-bec1-a5ffc4794266") + ) + (fp_line + (start 3.5 -3.5) + (end 3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "42ced61a-c6a2-4223-b789-bb13826894cc") + ) + (fp_line + (start -2.5 -3.5) + (end 3.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "41bcadb2-a17a-4099-a82b-e7145cccc57a") + ) + (fp_line + (start -3.5 -2.5) + (end -2.5 -3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f047d8c3-1b89-4046-bb71-a2a6564ed413") + ) + (fp_line + (start 3.5 3.5) + (end -3.5 3.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "25888e30-0c96-4f60-b302-8f49fa5e8389") + ) + (fp_line + (start -3.5 3.5) + (end -3.5 -2.5) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "75b45481-1b1a-49b3-92e5-9dcf60d4057f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "53606e4b-3dd1-42bf-affb-0ee0869b95c5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -4.16 -2.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pinfunction "VBAT") + (pintype "power_in") + (uuid "fd9d2bbc-14cc-454e-9232-8eaa02bc4eb8") + ) + (pad "2" smd roundrect + (at -4.16 -2.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 38 "/PC13") + (pinfunction "PC13") + (pintype "bidirectional") + (uuid "6e8de054-b5e7-4518-812f-85fb8d5c3bb5") + ) + (pad "3" smd roundrect + (at -4.16 -1.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 22 "/PC14") + (pinfunction "PC14") + (pintype "bidirectional") + (uuid "b160a103-f052-4786-9dd1-8b31e1636829") + ) + (pad "4" smd roundrect + (at -4.16 -1.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 37 "/PC15") + (pinfunction "PC15") + (pintype "bidirectional") + (uuid "3d8acb2b-791e-407b-b20f-bd2e3eb4dfd1") + ) + (pad "5" smd roundrect + (at -4.16 -0.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 6 "Net-(U1-PD0)") + (pinfunction "PD0") + (pintype "bidirectional") + (uuid "59bd2088-5adc-47d8-9563-5b7973769e61") + ) + (pad "6" smd roundrect + (at -4.16 -0.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 7 "Net-(U1-PD1)") + (pinfunction "PD1") + (pintype "bidirectional") + (uuid "0b257644-c5f4-4f15-bc32-4d6af9e4ca13") + ) + (pad "7" smd roundrect + (at -4.16 0.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 47 "/nRST") + (pinfunction "NRST") + (pintype "input") + (uuid "1e844393-49b8-4e90-bb93-b9194325203a") + ) + (pad "8" smd roundrect + (at -4.16 0.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pinfunction "VSSA") + (pintype "power_in") + (uuid "f31fe762-95e2-46d8-b588-5477eb2b3d99") + ) + (pad "9" smd roundrect + (at -4.16 1.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pinfunction "VDDA") + (pintype "power_in") + (uuid "9501ad4d-905f-4367-97c1-89a7a2bcd4a7") + ) + (pad "10" smd roundrect + (at -4.16 1.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 30 "/PA0") + (pinfunction "PA0") + (pintype "bidirectional") + (uuid "7a199951-95f7-4a0c-aa33-9ef35ecbe593") + ) + (pad "11" smd roundrect + (at -4.16 2.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 31 "/PA1") + (pinfunction "PA1") + (pintype "bidirectional") + (uuid "a2ab37d4-9571-4815-b034-e3967049cbba") + ) + (pad "12" smd roundrect + (at -4.16 2.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 34 "/PA2") + (pinfunction "PA2") + (pintype "bidirectional") + (uuid "d9fa2a8e-9677-40e0-b8e2-b88ef09e610a") + ) + (pad "13" smd roundrect + (at -2.75 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 28 "/PA3") + (pinfunction "PA3") + (pintype "bidirectional") + (uuid "2e75567b-260b-4150-a564-fef356d59c81") + ) + (pad "14" smd roundrect + (at -2.25 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 29 "/PA4") + (pinfunction "PA4") + (pintype "bidirectional") + (uuid "4566c449-e609-4c45-8ba7-fc6c19ceb58f") + ) + (pad "15" smd roundrect + (at -1.75 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 36 "/PA5") + (pinfunction "PA5") + (pintype "bidirectional") + (uuid "fc412790-4541-4acf-98ec-17637c2e3fed") + ) + (pad "16" smd roundrect + (at -1.25 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 32 "/PA6") + (pinfunction "PA6") + (pintype "bidirectional") + (uuid "c245cda5-0f6d-4073-bf09-b6a21473c363") + ) + (pad "17" smd roundrect + (at -0.75 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 35 "/PA7") + (pinfunction "PA7") + (pintype "bidirectional") + (uuid "e9bd8ced-57c9-4783-8837-387cb6ea79e4") + ) + (pad "18" smd roundrect + (at -0.25 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 46 "/PB0") + (pinfunction "PB0") + (pintype "bidirectional") + (uuid "a37259b2-3cda-430d-8b2f-a30825c54001") + ) + (pad "19" smd roundrect + (at 0.25 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 45 "/PB1") + (pinfunction "PB1") + (pintype "bidirectional") + (uuid "6e4b3e8e-c165-4e32-aabb-959478e7bdb4") + ) + (pad "20" smd roundrect + (at 0.75 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 15 "/PB2_BOOT1") + (pinfunction "PB2") + (pintype "bidirectional") + (uuid "cfdb3fd4-bd72-491d-92a2-fda5acedd7d0") + ) + (pad "21" smd roundrect + (at 1.25 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 39 "/PB10") + (pinfunction "PB10") + (pintype "bidirectional") + (uuid "07f3f1a2-b686-4631-9228-006d47537c04") + ) + (pad "22" smd roundrect + (at 1.75 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 41 "/PB11") + (pinfunction "PB11") + (pintype "bidirectional") + (uuid "6e243f1d-c385-4060-9077-30f526ae3361") + ) + (pad "23" smd roundrect + (at 2.25 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pinfunction "VSS") + (pintype "power_in") + (uuid "9dadb861-47ec-464f-845e-a975c86187e3") + ) + (pad "24" smd roundrect + (at 2.75 4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pinfunction "VDD") + (pintype "power_in") + (uuid "f3201c77-a0ca-4efa-83db-bec7b866e8c6") + ) + (pad "25" smd roundrect + (at 4.16 2.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 44 "/PB12") + (pinfunction "PB12") + (pintype "bidirectional") + (uuid "eaf819ac-3468-4028-a146-fefdad8be7f1") + ) + (pad "26" smd roundrect + (at 4.16 2.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 42 "/PB13") + (pinfunction "PB13") + (pintype "bidirectional") + (uuid "8c96c66f-57f4-4ca6-9073-7a074fd0b992") + ) + (pad "27" smd roundrect + (at 4.16 1.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 43 "/PB14") + (pinfunction "PB14") + (pintype "bidirectional") + (uuid "d9b405dd-b1b7-4f83-bf94-5d404abf99da") + ) + (pad "28" smd roundrect + (at 4.16 1.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 40 "/PB15") + (pinfunction "PB15") + (pintype "bidirectional") + (uuid "2a971462-e3b7-40a3-a6f6-436d87ddaa96") + ) + (pad "29" smd roundrect + (at 4.16 0.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 33 "/PA8") + (pinfunction "PA8") + (pintype "bidirectional") + (uuid "cc201331-15da-4f3c-b570-9b8b7eee9abe") + ) + (pad "30" smd roundrect + (at 4.16 0.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 10 "/PA9_USART1TX") + (pinfunction "PA9") + (pintype "bidirectional") + (uuid "28e8e100-3fa7-4261-a3a2-333a8147168c") + ) + (pad "31" smd roundrect + (at 4.16 -0.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 11 "/PA10_USART1RX") + (pinfunction "PA10") + (pintype "bidirectional") + (uuid "59cfd972-7ca5-4dc3-9b5e-b88f3c016f06") + ) + (pad "32" smd roundrect + (at 4.16 -0.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 27 "/USB_D_N") + (pinfunction "PA11") + (pintype "bidirectional") + (uuid "80ee13b3-8902-4b22-a5b8-ee024fe669d4") + ) + (pad "33" smd roundrect + (at 4.16 -1.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 26 "/USB_D_P") + (pinfunction "PA12") + (pintype "bidirectional") + (uuid "ac81a804-228f-4738-ab72-45d06f45c339") + ) + (pad "34" smd roundrect + (at 4.16 -1.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 25 "/PA13_SWDIO") + (pinfunction "PA13") + (pintype "bidirectional") + (uuid "bbb0bb25-b2b1-4176-b098-2671557f7f28") + ) + (pad "35" smd roundrect + (at 4.16 -2.25 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pinfunction "VSS") + (pintype "passive") + (uuid "fb75fa79-69cf-4f4b-9fdf-51722aef0e05") + ) + (pad "36" smd roundrect + (at 4.16 -2.75 90) + (size 1.48 0.3) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pinfunction "VDD") + (pintype "power_in") + (uuid "1ee53414-3aec-4ce6-860d-b6455e2fb2f2") + ) + (pad "37" smd roundrect + (at 2.75 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 24 "/PA14_SWCLK") + (pinfunction "PA14") + (pintype "bidirectional") + (uuid "8c77ebe0-824e-4dce-a4f2-d1e8a90126ac") + ) + (pad "38" smd roundrect + (at 2.25 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 13 "/PA15") + (pinfunction "PA15") + (pintype "bidirectional") + (uuid "6e971687-d8f0-48c1-a9cb-aeb90d4abb31") + ) + (pad "39" smd roundrect + (at 1.75 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 16 "/PB3") + (pinfunction "PB3") + (pintype "bidirectional") + (uuid "dba78574-0086-48d8-ac85-85dfc805cdfa") + ) + (pad "40" smd roundrect + (at 1.25 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 14 "/PB4") + (pinfunction "PB4") + (pintype "bidirectional+no_connect") + (uuid "96ee23aa-62e5-4c98-854f-0efd649a63bd") + ) + (pad "41" smd roundrect + (at 0.75 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 17 "/PB5") + (pinfunction "PB5") + (pintype "bidirectional") + (uuid "93c613b7-2219-4021-ba0b-97755f25f625") + ) + (pad "42" smd roundrect + (at 0.25 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 21 "/PB6") + (pinfunction "PB6") + (pintype "bidirectional") + (uuid "6f9329a6-dedb-44dc-8c22-09006a5028ba") + ) + (pad "43" smd roundrect + (at -0.25 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 20 "/PB7") + (pinfunction "PB7") + (pintype "bidirectional") + (uuid "3ca01670-5d99-4a4c-8b06-d6ac2f9ad549") + ) + (pad "44" smd roundrect + (at -0.75 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 12 "/BOOT0") + (pinfunction "BOOT0") + (pintype "input") + (uuid "0dddbd17-db08-44dc-8a3b-fe44d378338d") + ) + (pad "45" smd roundrect + (at -1.25 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 18 "/PB8") + (pinfunction "PB8") + (pintype "bidirectional") + (uuid "4fd851fc-92f2-41f5-8193-4b7007904e9d") + ) + (pad "46" smd roundrect + (at -1.75 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 19 "/PB9") + (pinfunction "PB9") + (pintype "bidirectional") + (uuid "defd5c22-be99-4ec9-a4a9-0c07488f0de8") + ) + (pad "47" smd roundrect + (at -2.25 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pinfunction "VSS") + (pintype "passive") + (uuid "7489aabd-6bf1-4f24-a9be-c8beb202db47") + ) + (pad "48" smd roundrect + (at -2.75 -4.16 90) + (size 0.3 1.48) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pinfunction "VDD") + (pintype "power_in") + (uuid "049dc782-92c9-45ff-aa9c-2faeab68333a") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/LQFP-48_7x7mm_P0.5mm.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "219a35c7-c319-438a-8201-62a15603db2f") + (at 152.4 85.5472 180) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C11" + (at 0 -1.16 0) + (layer "F.SilkS") + (hide yes) + (uuid "9427725f-b6dd-488f-bfad-57d7d41d3ee2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.16 0) + (layer "F.Fab") + (uuid "18f1439a-740f-4237-8268-c36abd798c3c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "578b7db6-8a59-4f77-9e8c-49116d97b3e5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "85c1d3fd-0136-4950-9139-df238804bc87") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2b93ae36-a817-40ea-bc36-a56f16889a01") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "20208285" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f87bb87f-96eb-4b6d-9558-627373042c0d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f2b55170-5b7d-4d3d-910f-80663d83f02a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ead2bf0d-044d-4e42-964f-754609846d73") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bcc8fa7d-7486-46b0-9d9d-9046a3b3651a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "095a358e-a975-444d-a3fe-c454b28dba58") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "33b27323-cedb-40e8-a5d4-1327a67ca7de") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb51819c-653d-4ac6-9deb-161151c0fcd1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "686aa3de-c0d6-4a6c-932d-131462fe7fcb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "08f399a0-bf1a-48d8-b133-a9cd11d6aee0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "16V" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8ce1abef-16bf-4833-8e95-1808924b184f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1054bcbb-643b-4686-b984-0e25fe9feb0c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "100nF" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3e905fe3-1128-49ac-9b76-99bb06c1cbd9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "993e7e4d-80db-4784-a9fd-14160944fa9c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/0e347212-8c47-4b33-8ec3-e5561d84a4a8") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "04018d7d-ff0e-4e35-a04a-52855a1a967e") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "4b7c645f-936b-4333-8a11-7f16453ff1bb") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "c23b189e-8ff0-48aa-8588-120f076621a1") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "2f845174-6659-4fd3-9a14-a63dc85340bf") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "e85e1bb5-2b9a-4c35-be0d-bbbb220390ef") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5a25e634-8b97-421c-9a42-227be6c12719") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ef001ed2-a702-4e3f-b633-e3a8850d0041") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "1398c29a-abf1-4da2-8b8c-3b8539c85478") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "f765ba2c-b433-4d9f-8b5d-d8b32a33ec43") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 180) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "dcd79c55-edd7-46f2-9159-d2c78b5ac4d1") + ) + (pad "2" smd roundrect + (at 0.499999 0 180) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "0d2721f1-472e-4c5b-9c07-2e01fe611ac4") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:R_0402" + (layer "F.Cu") + (uuid "28001b3b-e5c7-4211-8a37-333588cc10d7") + (at 155.194 74.168) + (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R7" + (at -1.05 -0.85 0) + (layer "F.SilkS") + (hide yes) + (uuid "bed62fdc-c3c0-493e-8093-9a32c5c54c83") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left) + ) + ) + (property "Value" "1.5kΩ" + (at 0 0.2 0) + (layer "F.Fab") + (hide yes) + (uuid "9c8f0777-4726-46f4-ba5a-abef2d9787c4") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2206010045_UNI-ROYAL-Uniroyal-Elec-0402WGF1501TCE_C25867.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8c980e27-7d72-46ed-8efc-205160e007db") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 1.5kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9aac4593-4848-4868-9d68-c09c94e88b45") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25867" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b2fcd548-4da4-4fb2-804c-3fee776d8016") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "1178558" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8ccc57e4-e550-4d4c-b44e-36841aa7b71c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "65408099-efeb-4871-8e03-c236bc74d0cf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4627793a-5cdb-486f-ba9e-36908b8e550f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d3d96550-494d-4f59-a91b-a72182995acf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "125381c4-8d64-42f3-8c2c-20d8b3af702b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "01d52734-d60c-4596-a7cc-d535b5cb6fcc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b7838dfa-c48c-4fac-ae2c-11ca4d229228") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a2e4978d-0c97-454c-a37e-73c81dc3c22b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "0402WGF1501TCE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b77428e3-e0f7-4719-95a9-763dd0413061") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Resistance" "1.5kΩ" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5d5b6d8d-29d1-4ce8-bcf1-0416bf569b39") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e3190748-3c6b-4993-9244-c62dbae79301") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "372220af-ea2f-4ded-a41b-6145acdb3060") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "88853e55-5b3b-4ec1-8711-85e0745a5dc9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "75e4713e-42a2-422d-8346-b41f07b8fdf1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d469d74a-009f-4b44-9cff-f551cf7fb658") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "03042fa9-a01f-4a9a-8a47-807893e76112") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/60774f59-4c12-41de-a6f4-9056b53db2b4") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "90f05876-8eb8-42da-9ae0-f862bae4009b") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "fba50c20-4c07-4d91-83e4-e43a8e30d3aa") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "1865a24d-0423-4928-be89-32a65ec5785c") + ) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "cd01a3aa-3f54-4050-9ad8-c897576df298") + ) + (fp_rect + (start -0.53 -0.27) + (end 0.53 0.27) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "f98e3039-817b-4bb1-8e4c-469ccd46e3d5") + ) + (pad "1" smd roundrect + (at -0.5 0) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "bf2ec3c8-b872-4403-995f-bf6c8b71fff3") + ) + (pad "2" smd roundrect + (at 0.5 0) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 26 "/USB_D_P") + (pintype "passive") + (uuid "47e2b2e8-d71e-437f-b21b-0613d3a82881") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/R_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:R_0402" + (layer "F.Cu") + (uuid "3741a485-5cfb-4450-ab2e-a024de6a3373") + (at 163.195 57.277 90) + (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R1" + (at -1.05 -0.85 90) + (layer "F.SilkS") + (hide yes) + (uuid "c787c42c-d537-4a9c-b797-90a7a0441c09") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left) + ) + ) + (property "Value" "5.1kΩ" + (at 0 0.2 90) + (layer "F.Fab") + (hide yes) + (uuid "c5a9ab23-3b31-45a4-92a9-20876002c2b9") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2206010045_UNI-ROYAL-Uniroyal-Elec-0402WGF5101TCE_C25905.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f3618a52-aa54-47ad-91d8-cb7624ac0e55") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 5.1kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7804dd9f-8682-401c-887f-4238c56fb19f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25905" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a3453ab3-31f2-40ae-80dc-4f5f3a3e75c4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "3534773" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e95e17fd-c0d1-4cf2-9e1e-5a03d46712f8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d6c4187c-14cb-488d-93a3-6d4b5c9899da") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fdd1f967-8ca1-462a-90f5-a2ac16aa73f6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4fa15ade-0c84-4fb5-b9e4-2d2d57212aed") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "48827bfd-686f-4ce6-8dd4-826a88a26ab5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a2e77f1b-bfd3-4b3d-b324-faa59886507a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b5efff90-8dc3-40d5-86d3-f1078c0ab0cf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6db98432-8ce3-4bbb-b22d-1e87625d83b4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "0402WGF5101TCE" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "051e2541-bd95-42f9-822f-9d42c838beda") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Resistance" "5.1kΩ" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d95a8538-1c9a-4cfa-b4b6-453f986fcc8b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ab051855-04ec-4977-b99e-e737a9cf921c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6f106aa1-4a6b-4546-b948-a3a7ab755c5c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5fb9a3d9-4f23-43ff-a82b-97d1d06d218e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dffa6496-198f-4230-913d-15bf7e9574d6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1569b066-45e6-4a0d-a2a0-948fb5293e3f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7de10f7d-4db4-415b-ad24-98048c610311") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/593b032d-d4d4-42ca-881e-9736033a93b6") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "7cef0b6c-1406-47a9-8c78-814c7b78684e") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "794c30f0-1675-442e-9c13-1c5b89c8038f") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "f5661827-9089-4baf-9af7-6c68c3cc3513") + ) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "4d750b1f-e343-4ddd-a181-5b381e16d03e") + ) + (fp_rect + (start -0.53 -0.27) + (end 0.53 0.27) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "17086b66-4f4c-4b13-9b7a-b12a1127434d") + ) + (pad "1" smd roundrect + (at -0.5 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 8 "Net-(J1-CC1)") + (pintype "passive") + (uuid "509238dc-e6b8-4716-a269-e681aff594f9") + ) + (pad "2" smd roundrect + (at 0.5 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "b8dcf515-2ea2-4eb6-99b1-880150448b1b") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/R_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:OSC-SMD_4P-L3.2-W2.5-BL" + (layer "F.Cu") + (uuid "40ad3176-1e2f-41a0-8a19-493b8697a0a0") + (at 155.316799 88.646 180) + (descr "OSC-SMD_4P-L3.2-W2.5-BL footprint") + (tags "OSC-SMD_4P-L3.2-W2.5-BL footprint C9006") + (property "Reference" "X1" + (at 0 -2.5 0) + (layer "F.SilkS") + (hide yes) + (uuid "31bae2dd-95fb-4608-a40c-2dd44389b65e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "X322516MLB4SI" + (at -0.129999 3.9 0) + (layer "F.Fab") + (uuid "4bd97089-aa3a-4ffb-82e0-4f74ffdd4fa3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2403291504_YXC-Crystal-Oscillators-X322516MLB4SI_C13738.pdf" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "c894289b-01c9-4894-94b5-fe0e51b8cef3") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "16MHz Surface Mount Crystal 9pF ±10ppm ±20ppm SMD3225-4P Crystals ROHS" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "a51da6a3-a9b0-4084-99a5-4e863e3ffffc") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C13738" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b6382264-5464-4d61-81a6-fa26b11fd982") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "162087" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b253c018-4e2e-4a8a-9773-5dd4a25234e8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.068USD" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "46da7d4f-b368-4a70-9afd-400d77985803") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1b55ca94-1a89-44b2-a8ee-47bd823d104d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "5" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a4538746-41ee-4f10-a98b-9741bbf44825") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "4" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0f11f906-2499-4007-8899-5fa8646fcbde") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bf3dab5c-8a87-4eba-9391-5ac40d91410d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Crystals/Oscillators/Resonators,Crystals" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8057052b-caf7-465a-90bf-fd10b42fc375") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Yangxing Tech" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "68f01009-9bb5-4766-9646-83dca2263583") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "X322516MLB4SI" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "94f8fd54-9644-44c9-aafb-d998dc02c7fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Frequency" "16MHz" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fd2b9afb-4b59-4458-9375-39245ec3ba9b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Frequency Stability" "±20ppm" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "423aa1a7-dfa0-46a3-b2bd-09da9fd3df3c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature" "-40°C~+85°C" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b971be12-8bdb-43c3-84a6-c28e78805ef8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Frequency Tolerance" "±10ppm" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "88fea52a-ae2e-4945-900a-b6c4ddc12602") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Crystal Type" "SMD Crystal Resonator" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "841e532f-b3ed-4656-9a39-06ca0ceef495") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Load Capacitance" "9pF" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3dc773f2-167d-49ce-a3b5-2697ef35b8c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Normal Temperature Frequency Tolerance" "±10ppm" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "44b46c8a-f171-4cbf-ba36-87383f6740e3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "Surface Mount Crystal" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5c65c173-1ad6-45e3-bda5-a4fe657ecf62") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/e8d42cda-b3c4-49fb-ab68-91c6a54c0052") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (attr smd) + (fp_line + (start -2 1.7) + (end -0.4 1.7) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "692aa71e-caca-4693-8fff-0b4da2e45df8") + ) + (fp_line + (start -2 0.35) + (end -2 1.7) + (stroke + (width 0.15) + (type default) + ) + (layer "F.SilkS") + (uuid "159e8397-fa44-4dd5-84e9-d0c64f4de759") + ) + (fp_line + (start 1.8 1.45) + (end -1.8 1.45) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "021b953b-67ae-4fef-b9f1-54b8cc154a05") + ) + (fp_line + (start 1.8 -1.45) + (end 1.8 1.45) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "7aab2d19-bd1f-4533-b267-24ae4f9090ed") + ) + (fp_line + (start -1.8 1.45) + (end -1.8 -1.45) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "837b5838-d59c-4956-9c60-00e66c6e1f9c") + ) + (fp_line + (start -1.8 -1.45) + (end 1.8 -1.45) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "6c15c6ad-2fb1-4043-ad18-40b8f9e601a8") + ) + (fp_circle + (center -1.8 1.45) + (end -1.67 1.45) + (stroke + (width 0.25) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "15243e85-d9f4-4095-8399-b1e7cd84d4fe") + ) + (fp_text user "REF**" + (at -0.13 5.9 0) + (layer "F.Fab") + (uuid "ec0c25e0-3a66-4392-8a2c-023a2e76f251") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -1.099999 0.88 180) + (size 1.4 1.2) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.2083333333) + (net 49 "Net-(C10-Pad2)") + (pinfunction "OSC") + (pintype "unspecified") + (uuid "6418f3e6-e205-4a48-af4b-95c8594f37a5") + ) + (pad "2" smd roundrect + (at 1.099999 0.88 180) + (size 1.4 1.2) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.2083333333) + (net 1 "GND") + (pinfunction "GND") + (pintype "unspecified") + (uuid "dcb8de85-8aa3-43af-be7b-993994eba454") + ) + (pad "3" smd roundrect + (at 1.099999 -0.88 180) + (size 1.4 1.2) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.2083333333) + (net 6 "Net-(U1-PD0)") + (pinfunction "OSC") + (pintype "unspecified") + (uuid "4cee4c1d-0f98-4acf-b645-3428243ebaf9") + ) + (pad "4" smd roundrect + (at -1.099999 -0.88 180) + (size 1.4 1.2) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.2083333333) + (net 1 "GND") + (pinfunction "GND") + (pintype "unspecified") + (uuid "6ce35dcb-875b-4c54-bf16-0711deedf9a5") + ) + (zone + (net 0) + (net_name "") + (layer "F.Cu") + (uuid "512701f6-af2e-4c86-8790-62c1571a6d87") + (hatch edge 0.5) + (connect_pads + (clearance 0) + ) + (min_thickness 0.25) + (filled_areas_thickness no) + (keepout + (tracks allowed) + (vias allowed) + (pads allowed) + (copperpour not_allowed) + (footprints not_allowed) + ) + (placement + (enabled no) + (sheetname "") + ) + (fill + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 157.316799 90.246) (xy 153.316799 90.246) (xy 153.316799 87.046) (xy 157.316799 87.046) + ) + ) + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/OSC-SMD_4P-L3.2-W2.5-BL.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "5045ce0a-5e73-4f3f-97ec-36218693e4fa") + (at 153.416 76.2 90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C5" + (at 0 -1.16 90) + (layer "F.SilkS") + (hide yes) + (uuid "37bb8f91-c312-4539-bc7e-fe5eac702937") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.16 90) + (layer "F.Fab") + (uuid "36add483-5d1f-452e-b987-6d9dbcadd02e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "14c414a0-e2ee-4894-a26b-e50cf19ffbda") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b6848b30-d5eb-4661-8872-d05f409052e0") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e6cd6aa8-7528-42ee-a0b3-0f8ed7c532a5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "20208285" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "81695ba3-2571-438c-833f-9b22d33ce584") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0e201086-1d8c-47bb-8d2b-5d0cbb471379") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "af9fe53c-3fbd-4c45-889e-4aafe7d200a5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7f87d3bb-e63c-47e2-9e24-95612c42fefa") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c1419118-4321-4590-b0c1-0b4fac993989") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "af0c8ca6-72df-4026-a36f-12e3ffdb0be0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "99117ae5-062a-4cc0-ac81-4839f0df47b1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2a6da13b-8558-4635-9237-e021e3bd682d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7f00d6b5-e02d-49d2-a8a3-e01a5b91a595") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "16V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b22240c7-2a23-4274-ad1f-8f1660cf2b1f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b15f3db2-ee90-42b7-a1ea-b0dfd0149490") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "100nF" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "26449f42-2eb9-43ff-9a88-861535bd3121") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "de08018e-ff0f-4bb8-8b06-a9d1fdd094b8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/c94686e7-a4a3-46ff-acd2-d9336694218a") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "dd073e0a-86be-4012-a9a3-0ba1482fd9fa") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "93e00744-bb56-4089-90c1-e46687b12887") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "69d2cb0d-702d-4be0-a925-b923b89833f1") + ) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "dcec0e2b-0350-425f-a853-1153c70da6b8") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cc1b88e2-c290-4c8e-bda3-9eececb15f63") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "baf7cc2f-4e40-4a5e-ac11-8d0034f95c3b") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "28d3c1c0-8c17-4d56-ad75-f31edf5380b7") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "cdf912e8-d907-46cf-887e-11e3e852927d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "3880323a-79a4-4113-8b5e-e5f653944860") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "1b1f1422-b510-419b-9ea7-e6c408488017") + ) + (pad "2" smd roundrect + (at 0.499999 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "fd430ed1-e2b7-416e-886a-dc7fb2508485") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:SOT-23-3_L2.9-W1.6-P1.90-LS2.8-BR" + (layer "F.Cu") + (uuid "5563688e-d69b-458e-a446-5e3bad823c13") + (at 162.687 65.151 -90) + (descr "SOT-23-3_L2.9-W1.6-P1.90-LS2.8-BR footprint") + (tags "SOT-23-3_L2.9-W1.6-P1.90-LS2.8-BR footprint C2829399") + (property "Reference" "U2" + (at 0 -3.54 90) + (layer "F.SilkS") + (hide yes) + (uuid "3dfe07d8-2946-42d2-8a4f-adabce18aa79") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "XC6206P332MR" + (at 0 3.54 90) + (layer "F.Fab") + (uuid "f1a7f359-a813-4604-a83b-5a1e1821a14a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Torex-Semicon-XC6206P332MR-G_C5446.pdf" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "37f47a76-ac67-4d16-8dfd-d4e6b04b9111") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "200mA Fixed 3.3V Positive electrode 6V SOT-23-3L Voltage Regulators - Linear, Low Drop Out (LDO) Regulators ROHS" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "6c644d28-d2ae-4c8e-9480-5c603746cdc5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C5446" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8c7a184b-9350-41ae-a537-1ca2232260fe") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "517770" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d3315ff-c142-424d-8c5a-e0de4c5bb75f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.103USD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "556ef7a9-9e86-4e33-b28e-f8725b55c73d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "49e0e3da-3b70-4029-a174-19c0605f4500") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "5" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb23eaa6-c81f-4d5d-a1f7-61cb654fa9b6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "2" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d185975f-38c5-4207-9afa-4e99ed4ff69b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "11633941-4349-4497-992c-c32bb4452a01") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Power Management ICs,Linear Voltage Regulators (LDO)" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0d33b549-adcb-4929-824b-e4f7f600d163") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Torex Semicon" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "59c8cdcf-e9e6-470e-adf4-2129afc6a101") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "XC6206P332MR-G" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "44ca224a-799a-4532-a591-20307382bd15") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Number Of Outputs" "1" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "199ce3ee-68e2-4724-a123-011ffa0c3942") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Output Voltage" "3.3V" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2cbc336e-16fc-435e-aa5d-fdc30b63f0cb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Dropout Voltage" "680mV@(100mA)" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4eaba7fe-b6f8-454c-a44f-c39a4044eddd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Output Current" "200mA" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5bcf0179-fbb4-474b-904f-c04ca9d2f590") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Output Type" "Fixed" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "66af34c2-c85d-4c3c-bf93-5af5d239900e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Maximum Input Voltage" "6V" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd79f25d-de11-432b-9c08-776743e4b8f2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Output Polarity" "Positive electrode" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4a34fc5f-eab9-4642-bfb8-923a4e807670") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Feature" "Low ESR;Overcurrent Protection(OCP)" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2d1b7797-99af-4d2a-969c-cb3c19753258") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/711d344f-fc2d-45d4-b461-15df617579af") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (zone_connect 2) + (attr smd) + (fp_line + (start -0.88 1.54) + (end -0.88 0.49) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "e9b7c334-dedb-4b09-90ce-109d3bc79f94") + ) + (fp_line + (start 0.88 1.54) + (end -0.88 1.54) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "38fd7a8d-9c3f-49ee-b39d-a96253b7880a") + ) + (fp_line + (start 0.88 -0.46) + (end 0.88 0.46) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "e9afc729-6611-4fdc-9663-ac4cd3a1a438") + ) + (fp_line + (start -0.88 -1.54) + (end -0.88 -0.49) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "3fb70dd0-9fde-4586-9642-9eacc1b52943") + ) + (fp_line + (start 0.88 -1.54) + (end -0.88 -1.54) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "d75d1fc6-0349-4efa-9589-71bc5c43b0c3") + ) + (fp_circle + (center 1.25 1.5) + (end 1.28 1.5) + (stroke + (width 0.15) + (type solid) + ) + (fill no) + (layer "F.SilkS") + (uuid "bc503a2f-0e28-44a2-a513-aa0d72ef2b14") + ) + (fp_line + (start -1 1.5) + (end 1 1.5) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "c02a4488-111b-4372-9b2e-6b66e3955eba") + ) + (fp_line + (start 1 1.5) + (end 1 -1.5) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "9103b8f9-8808-42fa-b914-6f28dd91c17c") + ) + (fp_line + (start -1 -1.5) + (end -1 1.5) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "8920c500-c4cf-4da6-ad3d-ea50eb6e4f7a") + ) + (fp_line + (start 1 -1.5) + (end -1 -1.5) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "9aa66599-43c9-4ab5-987b-94b369fa0e7e") + ) + (fp_circle + (center 1.65 0.95) + (end 1.75 0.95) + (stroke + (width 0.2) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "a9b32ff7-1a8e-4f54-99f2-0f3d097ebf06") + ) + (fp_text user "REF**" + (at 0 5.54 90) + (layer "F.Fab") + (uuid "133bf777-cba5-478c-b2a9-0bda2295e531") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at 1.24 0.95 270) + (size 1.07 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pinfunction "GND") + (pintype "unspecified") + (uuid "8f0d4ced-34db-4d21-96d2-655cc8bcb619") + ) + (pad "2" smd roundrect + (at 1.24 -0.95 270) + (size 1.07 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pinfunction "VOUT") + (pintype "unspecified") + (uuid "9ce74175-6ec5-4ef1-9697-ec06cbf7dd46") + ) + (pad "3" smd roundrect + (at -1.24 0 270) + (size 1.07 0.6) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 23 "+5V") + (pinfunction "VIN") + (pintype "unspecified") + (uuid "15aa0e33-9ec8-4678-97d9-d0cf2a1434fc") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/SOT-23-3_L2.9-W1.6-P1.90-LS2.8-BR.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 -90) + ) + ) + ) + (footprint "PCM_JLCPCB:SW_TS-1088-AR02016" + (layer "F.Cu") + (uuid "5d206b37-98ab-44b5-b294-d23b827f954b") + (at 160.655 103.505 90) + (property "Reference" "S1" + (at 0.425 -2.635 90) + (layer "F.SilkS") + (hide yes) + (uuid "1c18f520-fa03-4b2f-809d-72201a761a26") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Tactile Button, 160gf" + (at 3.683 0 0) + (layer "F.Fab") + (uuid "24d1985b-d3a2-4681-90f0-1363a5c11564") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_XUNPU-TS-1088-AR02016_C720477.pdf" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "578a59c9-ad60-4774-9dac-385099bdea28") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Without 50mA 4mm 100MΩ 100000 Times 12V 160gf 3mm 2mm Round Button Standing paste SPST SMD Tactile Switches ROHS" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "8930f74c-1fc2-469d-a2b5-dbc9d6dbde22") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C720477" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3345485d-8b5f-4bf4-a703-50cb1fbc60a5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "346801" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d0daad83-bb17-452e-87f9-29a020bbab25") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.044USD" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd1838c6-7d47-47d6-ad47-e6094fa4f673") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6dc2af29-223a-45f7-a64c-c3bdb03a9aca") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "5" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b37bef05-6135-4867-90aa-f45b1d9eaa05") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "4" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5c6bd134-8721-477f-8e2b-e25820ff9891") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6175844f-6f12-44e3-8135-d9b667a357f0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Switches,Tactile Switches" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e897135c-5b6a-4e12-8dbb-30a59cee86eb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "XUNPU" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "aad9fb9c-9ee2-4310-b703-99b202cca262") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "TS-1088-AR02016" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "878f3756-e452-4b90-8531-b6ed573caf08") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Switch Length" "4mm" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "082ea800-7553-47bb-abd2-a5cc9bfa7b64") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rating (Dc)" "12V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7f48f227-e2ba-4e68-aa57-49e3d046c15b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "With Lamp" "No" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fb8f9a61-67e0-4d15-aa08-6cd188192e13") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Force" "160gf@±50gf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "964ae9dd-e99f-46fd-85ec-2da2ede6aa32") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Actuator/Cap Color" "Black" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "69d8fa0d-0a78-41e1-b048-b992e79927fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Mechanical Life" "100000 Times" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5c588bd8-3242-4f8b-b208-5b471e015fe4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Strike Gundam" "NO" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d6ba0366-af3a-4e77-bcc7-6bad0fadee87") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Circuit" "SPST" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "41e15809-0749-4c5b-a41e-1d787f67eba4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Switch Height" "2mm" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5323a31f-8cac-4716-b67f-3cbbcd123924") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Actuator Style" "Round Button" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0027b264-8f00-4f85-8ae9-9d2a21759d31") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Switch Width" "3mm" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "19767027-f1f8-4df3-8ed4-af6dba3069bf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Contact Current" "50mA" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0712a45d-3462-433d-9643-15d4c8b82775") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature" "-30°C~+80°C" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8a6595cb-f25c-4cd5-bd9f-25ebae8f1d36") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Mounting Style" "Brick nogging" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7aff47b8-8849-415d-85cd-e1fd2d54e833") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Insulation Resistance" "100MΩ" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "49726cc3-3fdc-4520-9d2d-26896d4b873d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Pin Style" "SMDSplicing" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e988fd28-abed-43a7-9b02-d86bd4bb2e15") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/a722ba06-74f2-40cf-ac03-00e350a33c0f") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (attr smd) + (fp_line + (start 2 -1.45) + (end 2 -1.22) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "9316a0d3-209d-4ca4-9960-f4102548cf5f") + ) + (fp_line + (start -2 -1.45) + (end 2 -1.45) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "762b91a0-cf1e-48c1-9b85-eb5b1afd1d35") + ) + (fp_line + (start -2 -1.22) + (end -2 -1.45) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "9ac1fc5f-64cd-42d4-a47b-bc8fe7980919") + ) + (fp_line + (start 2 1.45) + (end 2 1.22) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "6f7720b2-a471-41d6-bfec-c6d0f6753302") + ) + (fp_line + (start 2 1.45) + (end -2 1.45) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "6242ac36-70d0-4c26-8eb3-2113454f0824") + ) + (fp_line + (start -2 1.45) + (end -2 1.22) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "ccee8a2a-ab85-4513-9f4d-16090e065dba") + ) + (fp_line + (start 3 -1.7) + (end -3 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "73f4d897-b9a5-4a39-909c-9e42219a12b2") + ) + (fp_line + (start -3 -1.7) + (end -3 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "19c93e59-8225-4d4e-9f97-0cacda1685d4") + ) + (fp_line + (start 3 1.7) + (end 3 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "faf78e0c-15c7-4154-b3d1-33aac2d78b8b") + ) + (fp_line + (start -3 1.7) + (end 3 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "60a9b949-a178-471d-9c0c-0d2a0b6627cb") + ) + (fp_line + (start -2 -1.45) + (end 2 -1.45) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "6a1aa6d8-d740-4dd1-b635-ba6be6166883") + ) + (fp_line + (start 2 1.45) + (end -2 1.45) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "faed9843-e737-4479-8718-16a5cc8c67f6") + ) + (pad "1" smd roundrect + (at -2.075 0 90) + (size 1.35 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1851851852) + (net 1 "GND") + (pinfunction "A") + (pintype "unspecified") + (solder_mask_margin 0.102) + (uuid "50bde361-3f78-467c-a32f-a2335a3aefc4") + ) + (pad "2" smd roundrect + (at 2.075 0 90) + (size 1.35 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1851851852) + (net 47 "/nRST") + (pinfunction "B") + (pintype "unspecified") + (solder_mask_margin 0.102) + (uuid "06dccff3-67b1-48b8-9cd4-dd85467d3824") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/TS-1088-AR02016.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz -90 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "5e40a3f6-57aa-4fe4-b55e-93c5b6f0b424") + (at 157.861 89.789 90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C10" + (at 0 -1.16 90) + (layer "F.SilkS") + (hide yes) + (uuid "28a49caf-90fd-4061-9f13-47ac4d671dff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "10pF" + (at 0 1.16 90) + (layer "F.Fab") + (uuid "3be96208-edd8-4e1e-b945-11621c172081") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05C100JB5NNNC_C32949.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "25b2bce7-e54d-4111-884e-9a08c412b8d5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "50V 10pF C0G ±5% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f41f36aa-72cd-496e-ad22-9088524a33db") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C32949" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c464aba2-c9ce-4e48-8f4b-70a6f85e6b71") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "564575" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3f65f175-d8be-46ec-817e-6a4db8ede797") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.007USD" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c9fca4da-8d47-4d26-bee6-53eb8ac07314") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "584774b2-b605-406d-9fc9-689352d6475f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "198984e0-3ef3-4fed-8345-e797b9675fff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a1722301-2dea-4e6c-8186-83262f129c9c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "38e61073-186e-4ca5-bc6d-e4b7176df917") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "858ccae2-5141-4d9e-b27e-dd5a86aae849") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "48da7d7b-df49-42f0-8fb9-e1f8305cabe2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05C100JB5NNNC" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "90e06c7b-6c7d-43dc-8309-5eda43caeecc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "50V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7b4aafcc-971e-4279-be82-2d32c881ce7d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±5%" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0197c35d-647f-4154-8901-2123e789228c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "10pF" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dc9de826-2abe-4d99-9a3e-f901465b3940") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "C0G" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "68ace2ae-d773-4b4d-a816-952d7f503e59") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/09f9b246-e654-45aa-ac19-20d3e8911708") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "18d4d655-01c5-48f5-938f-8b8c14812f73") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "d7a942c8-1f05-481f-85b9-a3ad4d407904") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "0d5ffb56-3d01-4e8d-af78-a157a2fdad62") + ) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "bf5fc358-0f51-4854-994f-c20819ebb6e5") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a7cee32e-5c87-41ab-bb09-4df6efcb52eb") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "5d599342-1385-471c-a2d0-1fe219477f1a") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "78331602-e81c-4ebe-9395-81d341353f36") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8420dbe2-1565-4a4e-bce5-7c127e103582") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "14f846ae-a2ab-4223-9d8e-f0f25ad6b9f3") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "01516a02-35ac-4c22-a289-40b958dff509") + ) + (pad "2" smd roundrect + (at 0.499999 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 49 "Net-(C10-Pad2)") + (pintype "passive") + (uuid "71cb9e26-fa58-4a74-8c32-4eec41fcb36b") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:D_SOD-323" + (layer "F.Cu") + (uuid "5e7d6f12-d9b4-485f-b086-55b7502412b6") + (at 159.258 68.072 180) + (descr "SOD-323") + (tags "SOD-323") + (property "Reference" "D2" + (at 0 -1.85 0) + (layer "F.SilkS") + (hide yes) + (uuid "57c464ef-f1fb-4463-9a79-7e3015135381") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "B0540WS" + (at 0.1 1.9 0) + (layer "F.Fab") + (uuid "21daa91a-86e3-4dbf-82ec-ee50e6ba9b68") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://wmsc.lcsc.com/wmsc/upload/file/pdf/v2/lcsc/2308281514_hongjiacheng-B0540WS_C7420326.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1974f8f2-dc84-48ea-8e57-99d58c0c315b") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "40V Independent Type 500mA 510mV@500mA SOD-323 Schottky Diodes ROHS" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e2cdb881-e1d9-4351-9127-9e5c74b8e2de") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C7420326" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8fa4c5b0-0aeb-494c-b16b-3d28e50c6be3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "261810" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b63ad31e-f6dd-4aa6-83c9-be70914f3450") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.018USD" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "50949bd8-f0b0-42bc-bed3-0870c4014c84") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ec930555-0213-4f1d-93c6-34339ff2edf6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "04bdaf62-655b-4ff6-ac8d-964d596d3adc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "6" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f49c91fb-b5c9-47a6-978c-8a9ec581b8a0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Preferred Component" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f159a23f-6be7-4bed-a821-27f5419404b7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Diodes,Schottky Barrier Diodes (SBD)" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ee425dfa-5cd0-4807-b583-fafb0dafa480") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "hongjiacheng" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cd3b4b3c-9b8e-49fb-958c-a4e9a98b43d0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "B0540WS" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c4424e0e-155a-465d-8951-10dd316b43bc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "D_*") + (path "/001cced7-9698-42ee-8973-f17f55532bc9") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start -1.61 0.85) + (end 1.05 0.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "1b37d212-9906-44a9-b93c-6748bf6f9c05") + ) + (fp_line + (start -1.61 -0.85) + (end 1.05 -0.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "cb355301-2ffc-4791-81d0-ac22f43ed5a0") + ) + (fp_line + (start -1.61 -0.85) + (end -1.61 0.85) + (stroke + (width 0.15) + (type solid) + ) + (layer "F.SilkS") + (uuid "881bf55a-63df-4279-a5de-eb4b340c9b53") + ) + (fp_line + (start 1.6 -0.95) + (end 1.6 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "bb731728-5f3d-43a1-a136-0c14b189f4c0") + ) + (fp_line + (start -1.6 0.95) + (end 1.6 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7c24ff30-8f8a-4ea0-b7ef-f803fa465767") + ) + (fp_line + (start -1.6 -0.95) + (end 1.6 -0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "7b8c8268-6445-4e38-97a6-934e3a548713") + ) + (fp_line + (start -1.6 -0.95) + (end -1.6 0.95) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "9d35c108-120e-4e8a-a500-a67dd38d5353") + ) + (fp_line + (start 0.9 0.7) + (end -0.9 0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "001dc786-05b2-4183-b539-0c5069f32516") + ) + (fp_line + (start 0.9 -0.7) + (end 0.9 0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "49910465-b928-4ac8-90cc-ef7b552a3a9d") + ) + (fp_line + (start 0.2 0.35) + (end -0.3 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "85f92066-4cf1-4229-a8ee-a83ded7d3f4c") + ) + (fp_line + (start 0.2 0) + (end 0.45 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4e890d4a-684d-4bea-a7da-4a904d30576b") + ) + (fp_line + (start 0.2 -0.35) + (end 0.2 0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b7f8970d-e374-47cd-bb24-ea922aada475") + ) + (fp_line + (start -0.3 0) + (end 0.2 -0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2cca8bcc-8974-494b-9d00-e633a0302185") + ) + (fp_line + (start -0.3 0) + (end -0.5 0) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "14b55c64-5eaa-4d3b-bff8-12c72b7f8d0b") + ) + (fp_line + (start -0.3 -0.35) + (end -0.3 0.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "44154dc8-3bbb-4cdb-b03e-a4037b5b63ca") + ) + (fp_line + (start -0.9 0.7) + (end -0.9 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "a77b558a-a641-449d-974d-e83af50b209f") + ) + (fp_line + (start -0.9 -0.7) + (end 0.9 -0.7) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "4c0cca69-5555-4880-9c97-ddf31e972443") + ) + (fp_text user "${REFERENCE}" + (at 0 -1.85 0) + (layer "F.Fab") + (uuid "066d43ec-cc4d-471c-9045-9597678e342a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" smd roundrect + (at -1.05 0 180) + (size 0.6 0.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 23 "+5V") + (pintype "passive") + (uuid "a5933894-a4ca-48a9-b19b-2ec01884dc64") + ) + (pad "2" smd roundrect + (at 1.05 0 180) + (size 0.6 0.45) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 2 "VBUS") + (pintype "passive") + (uuid "5b7a0c78-10f9-4589-b609-977f59f77b38") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/D_SOD-323.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "682f752f-e089-4a78-aede-3b9bc0c24f92") + (at 163.068 78.105 -90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C4" + (at 0 -1.16 90) + (layer "F.SilkS") + (hide yes) + (uuid "d8c0b30f-7d8c-454f-ad82-8d19a0c7c462") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.16 90) + (layer "F.Fab") + (uuid "b1dbfd54-35c8-48a6-af34-90854d092da2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "634ffa4b-9042-42a2-be1e-d22f1b765197") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0f54b863-4fe4-4627-8546-77a859d536b6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6c05cee9-ec2d-44d7-9725-64fcc889c3fb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "20208285" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4c4d5d8a-81e7-42d5-bd2d-b1f95909126b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bd684268-686d-4aa1-818d-a9e144ee5c99") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ce048d99-00f6-44d4-8a83-ae5b76cd1e8e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2e21a493-3a52-42d3-866f-bb553fc92467") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7d1e850a-8172-4118-9733-2c580443d658") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e09d9c26-c17b-480b-8e2b-48855d2d88cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cacf64e7-e799-41c4-965b-7a68fa633a3f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "54cf7a0f-6da8-41fd-9e80-a6d6e4cafc14") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ecbf0a3f-6c42-4561-b99b-7707ef3aa474") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "16V" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "67f1b26c-5edb-48f5-8f56-1f879901ebff") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "da245307-2841-4f10-8497-8fad2b31015e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "100nF" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9af7fb2f-483a-44a7-8fe9-e81542af4bd9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d4cdcf73-af04-49bc-892f-4eed50eb06eb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/7ca74afc-96fe-4a4e-97ad-30ffaedf100b") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "f2299ff0-4161-4852-972d-0ed8406a61db") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "f4bda5c8-cafd-4849-b653-94cbc8b815ae") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "0c26dcf3-8ffd-4eda-93a7-31e2e01a9809") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "28918ba5-fe0b-4c32-b226-87c64c2a8169") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "aac9da06-e758-4e3e-a99e-f9d45f9108b8") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "16c5bd17-6e69-4fbb-9e42-64c94b05da63") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "8ef651ef-1786-4739-812a-f55cb9af31c8") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d668ec2f-cbb4-4656-ae06-9b9961cee780") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "fd04a763-c3d4-4623-b0df-035f35bc230c") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 270) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "bec7ae23-9102-4286-b57a-d94ad23c4d37") + ) + (pad "2" smd roundrect + (at 0.499999 0 270) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "4559f8ba-3562-480c-b353-2b365eb2d2ab") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "7baa758a-3d96-49c0-8b0d-697b3d4e9ad3") + (at 160.655 71.501 -90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C8" + (at 0 -1.16 90) + (layer "F.SilkS") + (hide yes) + (uuid "951f38c2-31dc-46f0-86a5-62fcf249da06") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at -0.892 0.955 90) + (layer "F.Fab") + (uuid "2ba5f1b2-b8c7-4309-9c69-3a263abf15be") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9919d509-83d8-4f05-9a58-c9b6cd553175") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3efcbb11-e8d8-4bc4-8e67-ccd41abd1c72") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5bbaf060-7de4-4ce4-9568-bb325207901f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "20208285" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "69249db0-8246-4a20-b392-86575515d9fd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "745b5423-4853-4ba7-a84a-8974a16640bf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a0278abd-82e2-4ff9-aedb-ce49ce59e7a8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "00c95a71-9c50-41bc-9b4b-b446ba9c0a2b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3a625e15-e14e-4a10-aaba-b92f59f6047b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "cc96f95c-5be2-48a4-9ef2-5f49fa7987f5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ed5f216f-012c-4641-9a67-992c8e97d049") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9d141ac1-cca9-45cc-85f8-734b65926293") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "20947bcc-f624-4f79-bbff-c57f67733712") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "16V" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "64b94817-f2d3-404b-8a20-6ebd9f51afbd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "172af2d2-259d-466c-93f5-bdd9ae781f7d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "100nF" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c7cc9491-706d-46ea-8843-0425f80f5944") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "28de3f0c-30c8-4f5a-a217-a6b6c38a1776") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/85ea1aed-eb15-4012-8afc-7d047feb39ea") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "f063dda3-3811-4cb2-8e8f-fdcda3ae23a0") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "a76c992a-11bf-47f4-850c-ea993e386778") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "8aeb1dc5-19c5-4167-84e8-6def2c04ee76") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "bad2da86-516e-44f7-8202-fbbe2bb2c207") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "76e725bd-c7dd-4e51-9d48-82785b9191f8") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7e429a9c-5079-496e-a927-4641a235abc7") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b4d831f9-7de8-4048-9b92-e7b6d59df211") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9e8f3cef-f6ea-48f2-8566-edd20032c98d") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "da630668-8ec5-427d-8072-dc3dc88f39ce") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 270) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "c4e30c38-9519-4224-bf7c-005364353870") + ) + (pad "2" smd roundrect + (at 0.499999 0 270) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 47 "/nRST") + (pintype "passive") + (uuid "021d9c91-aef6-4ae0-afd8-14d951f34ab9") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Symbol:KiCad-Logo2_5mm_SilkScreen" + (layer "F.Cu") + (uuid "8bdabd8e-de49-470d-a182-d595815bb16e") + (at 156.972 93.472) + (descr "KiCad Logo") + (tags "Logo KiCad") + (property "Reference" "REF**" + (at 0 -5.08 0) + (layer "F.SilkS") + (hide yes) + (uuid "115888e8-a942-49fa-9823-f6fcb10a4576") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "KiCad-Logo2_5mm_SilkScreen" + (at 0 5.08 0) + (layer "F.Fab") + (hide yes) + (uuid "8844ef9d-fee1-455d-be66-3b6852d24d67") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "240cc77e-95fb-4ebc-9e74-91de1cf4430c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4dda8c0a-4102-42cf-9291-1e393cb2b8f6") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (attr board_only exclude_from_pos_files exclude_from_bom allow_missing_courtyard) + (fp_poly + (pts + (xy 4.188614 2.275877) (xy 4.212327 2.290647) (xy 4.238978 2.312227) (xy 4.238978 2.633773) (xy 4.238893 2.72783) + (xy 4.238529 2.801932) (xy 4.237724 2.858704) (xy 4.236313 2.900768) (xy 4.234133 2.930748) (xy 4.231021 2.951267) + (xy 4.226814 2.964949) (xy 4.221348 2.974416) (xy 4.217472 2.979082) (xy 4.186034 2.999575) (xy 4.150233 2.998739) + (xy 4.118873 2.981264) (xy 4.092222 2.959684) (xy 4.092222 2.312227) (xy 4.118873 2.290647) (xy 4.144594 2.274949) + (xy 4.1656 2.269067) (xy 4.188614 2.275877) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "9cb7c89e-3ed4-4f15-9d01-428f9f2f6f1c") + ) + (fp_poly + (pts + (xy -2.923822 2.291645) (xy -2.917242 2.299218) (xy -2.912079 2.308987) (xy -2.908164 2.323571) + (xy -2.905324 2.345585) (xy -2.903387 2.377648) (xy -2.902183 2.422375) (xy -2.901539 2.482385) + (xy -2.901284 2.560294) (xy -2.901245 2.635956) (xy -2.901314 2.729802) (xy -2.901638 2.803689) + (xy -2.902386 2.860232) (xy -2.903732 2.902049) (xy -2.905846 2.931757) (xy -2.9089 2.951973) (xy -2.913066 2.965314) + (xy -2.918516 2.974398) (xy -2.923822 2.980267) (xy -2.956826 2.999947) (xy -2.991991 2.998181) + (xy -3.023455 2.976717) (xy -3.030684 2.968337) (xy -3.036334 2.958614) (xy -3.040599 2.944861) + (xy -3.043673 2.924389) (xy -3.045752 2.894512) (xy -3.04703 2.852541) (xy -3.047701 2.795789) (xy -3.047959 2.721567) + (xy -3.048 2.637537) (xy -3.048 2.324485) (xy -3.020291 2.296776) (xy -2.986137 2.273463) (xy -2.953006 2.272623) + (xy -2.923822 2.291645) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "d95d357a-1821-47b3-923a-c3b38f96bc98") + ) + (fp_poly + (pts + (xy -2.273043 -2.973429) (xy -2.176768 -2.949191) (xy -2.090184 -2.906359) (xy -2.015373 -2.846581) + (xy -1.954418 -2.771506) (xy -1.909399 -2.68278) (xy -1.883136 -2.58647) (xy -1.877286 -2.489205) + (xy -1.89214 -2.395346) (xy -1.92584 -2.307489) (xy -1.976528 -2.22823) (xy -2.042345 -2.160164) + (xy -2.121434 -2.105888) (xy -2.211934 -2.067998) (xy -2.2632 -2.055574) (xy -2.307698 -2.048053) + (xy -2.341999 -2.045081) (xy -2.37496 -2.046906) (xy -2.415434 -2.053775) (xy -2.448531 -2.06075) + (xy -2.541947 -2.092259) (xy -2.625619 -2.143383) (xy -2.697665 -2.212571) (xy -2.7562 -2.298272) + (xy -2.770148 -2.325511) (xy -2.786586 -2.361878) (xy -2.796894 -2.392418) (xy -2.80246 -2.42455) + (xy -2.804669 -2.465693) (xy -2.804948 -2.511778) (xy -2.800861 -2.596135) (xy -2.787446 -2.665414) + (xy -2.762256 -2.726039) (xy -2.722846 -2.784433) (xy -2.684298 -2.828698) (xy -2.612406 -2.894516) + (xy -2.537313 -2.939947) (xy -2.454562 -2.96715) (xy -2.376928 -2.977424) (xy -2.273043 -2.973429) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "cd45797a-b2be-45d2-ad8c-59bc220af130") + ) + (fp_poly + (pts + (xy 4.963065 2.269163) (xy 5.041772 2.269542) (xy 5.102863 2.270333) (xy 5.148817 2.27167) (xy 5.182114 2.273683) + (xy 5.205236 2.276506) (xy 5.220662 2.280269) (xy 5.230871 2.285105) (xy 5.235813 2.288822) (xy 5.261457 2.321358) + (xy 5.264559 2.355138) (xy 5.248711 2.385826) (xy 5.238348 2.398089) (xy 5.227196 2.40645) (xy 5.211035 2.411657) + (xy 5.185642 2.414457) (xy 5.146798 2.415596) (xy 5.09028 2.415821) (xy 5.07918 2.415822) (xy 4.933244 2.415822) + (xy 4.933244 2.686756) (xy 4.933148 2.772154) (xy 4.932711 2.837864) (xy 4.931712 2.886774) (xy 4.929928 2.921773) + (xy 4.927137 2.945749) (xy 4.923117 2.961593) (xy 4.917645 2.972191) (xy 4.910666 2.980267) (xy 4.877734 3.000112) + (xy 4.843354 2.998548) (xy 4.812176 2.975906) (xy 4.809886 2.9731) (xy 4.802429 2.962492) (xy 4.796747 2.950081) + (xy 4.792601 2.93285) (xy 4.78975 2.907784) (xy 4.787954 2.871867) (xy 4.786972 2.822083) (xy 4.786564 2.755417) + (xy 4.786489 2.679589) (xy 4.786489 2.415822) (xy 4.647127 2.415822) (xy 4.587322 2.415418) (xy 4.545918 2.41384) + (xy 4.518748 2.410547) (xy 4.501646 2.404992) (xy 4.490443 2.396631) (xy 4.489083 2.395178) (xy 4.472725 2.361939) + (xy 4.474172 2.324362) (xy 4.492978 2.291645) (xy 4.50025 2.285298) (xy 4.509627 2.280266) (xy 4.523609 2.276396) + (xy 4.544696 2.273537) (xy 4.575389 2.271535) (xy 4.618189 2.270239) (xy 4.675595 2.269498) (xy 4.75011 2.269158) + (xy 4.844233 2.269068) (xy 4.86426 2.269067) (xy 4.963065 2.269163) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "f70c18ba-7a4e-4e16-b89d-808876ca0334") + ) + (fp_poly + (pts + (xy 6.228823 2.274533) (xy 6.260202 2.296776) (xy 6.287911 2.324485) (xy 6.287911 2.63392) (xy 6.287838 2.725799) + (xy 6.287495 2.79784) (xy 6.286692 2.85278) (xy 6.285241 2.89336) (xy 6.282952 2.922317) (xy 6.279636 2.942391) + (xy 6.275105 2.956321) (xy 6.269169 2.966845) (xy 6.264514 2.9731) (xy 6.233783 2.997673) (xy 6.198496 3.000341) + (xy 6.166245 2.985271) (xy 6.155588 2.976374) (xy 6.148464 2.964557) (xy 6.144167 2.945526) (xy 6.141991 2.914992) + (xy 6.141228 2.868662) (xy 6.141155 2.832871) (xy 6.141155 2.698045) (xy 5.644444 2.698045) (xy 5.644444 2.8207) + (xy 5.643931 2.876787) (xy 5.641876 2.915333) (xy 5.637508 2.941361) (xy 5.630056 2.959897) (xy 5.621047 2.9731) + (xy 5.590144 2.997604) (xy 5.555196 3.000506) (xy 5.521738 2.983089) (xy 5.512604 2.973959) (xy 5.506152 2.961855) + (xy 5.501897 2.943001) (xy 5.499352 2.91362) (xy 5.498029 2.869937) (xy 5.497443 2.808175) (xy 5.497375 2.794) + (xy 5.496891 2.677631) (xy 5.496641 2.581727) (xy 5.496723 2.504177) (xy 5.497231 2.442869) (xy 5.498262 2.39569) + (xy 5.499913 2.36053) (xy 5.502279 2.335276) (xy 5.505457 2.317817) (xy 5.509544 2.306041) (xy 5.514634 2.297835) + (xy 5.520266 2.291645) (xy 5.552128 2.271844) (xy 5.585357 2.274533) (xy 5.616735 2.296776) (xy 5.629433 2.311126) + (xy 5.637526 2.326978) (xy 5.642042 2.349554) (xy 5.644006 2.384078) (xy 5.644444 2.435776) (xy 5.644444 2.551289) + (xy 6.141155 2.551289) (xy 6.141155 2.432756) (xy 6.141662 2.378148) (xy 6.143698 2.341275) (xy 6.148035 2.317307) + (xy 6.155447 2.301415) (xy 6.163733 2.291645) (xy 6.195594 2.271844) (xy 6.228823 2.274533) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "5b5bc0b3-ae28-49cd-a9a0-3f334ee946ae") + ) + (fp_poly + (pts + (xy 1.018309 2.269275) (xy 1.147288 2.273636) (xy 1.256991 2.286861) (xy 1.349226 2.309741) (xy 1.425802 2.34307) + (xy 1.488527 2.387638) (xy 1.539212 2.444236) (xy 1.579663 2.513658) (xy 1.580459 2.515351) (xy 1.604601 2.577483) + (xy 1.613203 2.632509) (xy 1.606231 2.687887) (xy 1.583654 2.751073) (xy 1.579372 2.760689) (xy 1.550172 2.816966) + (xy 1.517356 2.860451) (xy 1.475002 2.897417) (xy 1.41719 2.934135) (xy 1.413831 2.936052) (xy 1.363504 2.960227) + (xy 1.306621 2.978282) (xy 1.239527 2.990839) (xy 1.158565 2.998522) (xy 1.060082 3.001953) (xy 1.025286 3.002251) + (xy 0.859594 3.002845) (xy 0.836197 2.9731) (xy 0.829257 2.963319) (xy 0.823842 2.951897) (xy 0.819765 2.936095) + (xy 0.816837 2.913175) (xy 0.814867 2.880396) (xy 0.814225 2.856089) (xy 0.970844 2.856089) (xy 1.064726 2.856089) + (xy 1.119664 2.854483) (xy 1.17606 2.850255) (xy 1.222345 2.844292) (xy 1.225139 2.84379) (xy 1.307348 2.821736) + (xy 1.371114 2.7886) (xy 1.418452 2.742847) (xy 1.451382 2.682939) (xy 1.457108 2.667061) (xy 1.462721 2.642333) + (xy 1.460291 2.617902) (xy 1.448467 2.5854) (xy 1.44134 2.569434) (xy 1.418 2.527006) (xy 1.38988 2.49724) + (xy 1.35894 2.476511) (xy 1.296966 2.449537) (xy 1.217651 2.429998) (xy 1.125253 2.418746) (xy 1.058333 2.41627) + (xy 0.970844 2.415822) (xy 0.970844 2.856089) (xy 0.814225 2.856089) (xy 0.813668 2.835021) (xy 0.81305 2.774311) + (xy 0.812825 2.695526) (xy 0.8128 2.63392) (xy 0.8128 2.324485) (xy 0.840509 2.296776) (xy 0.852806 2.285544) + (xy 0.866103 2.277853) (xy 0.884672 2.27304) (xy 0.912786 2.270446) (xy 0.954717 2.26941) (xy 1.014737 2.26927) + (xy 1.018309 2.269275) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "78ac23c9-6604-4c1e-9a2a-de8e8d3cc8f4") + ) + (fp_poly + (pts + (xy -6.121371 2.269066) (xy -6.081889 2.269467) (xy -5.9662 2.272259) (xy -5.869311 2.28055) (xy -5.787919 2.295232) + (xy -5.718723 2.317193) (xy -5.65842 2.347322) (xy -5.603708 2.38651) (xy -5.584167 2.403532) (xy -5.55175 2.443363) + (xy -5.52252 2.497413) (xy -5.499991 2.557323) (xy -5.487679 2.614739) (xy -5.4864 2.635956) (xy -5.494417 2.694769) + (xy -5.515899 2.759013) (xy -5.546999 2.819821) (xy -5.583866 2.86833) (xy -5.589854 2.874182) (xy -5.640579 2.915321) + (xy -5.696125 2.947435) (xy -5.759696 2.971365) (xy -5.834494 2.987953) (xy -5.923722 2.998041) + (xy -6.030582 3.002469) (xy -6.079528 3.002845) (xy -6.141762 3.002545) (xy -6.185528 3.001292) + (xy -6.214931 2.998554) (xy -6.234079 2.993801) (xy -6.247077 2.986501) (xy -6.254045 2.980267) + (xy -6.260626 2.972694) (xy -6.265788 2.962924) (xy -6.269703 2.94834) (xy -6.272543 2.926326) (xy -6.27448 2.894264) + (xy -6.275684 2.849536) (xy -6.276328 2.789526) (xy -6.276583 2.711617) (xy -6.276622 2.635956) + (xy -6.27687 2.535041) (xy -6.276817 2.454427) (xy -6.275857 2.415822) (xy -6.129867 2.415822) (xy -6.129867 2.856089) + (xy -6.036734 2.856004) (xy -5.980693 2.854396) (xy -5.921999 2.850256) (xy -5.873028 2.844464) + (xy -5.871538 2.844226) (xy -5.792392 2.82509) (xy -5.731002 2.795287) (xy -5.684305 2.752878) (xy -5.654635 2.706961) + (xy -5.636353 2.656026) (xy -5.637771 2.6082) (xy -5.658988 2.556933) (xy -5.700489 2.503899) (xy -5.757998 2.4646) + (xy -5.83275 2.438331) (xy -5.882708 2.429035) (xy -5.939416 2.422507) (xy -5.999519 2.417782) (xy -6.050639 2.415817) + (xy -6.053667 2.415808) (xy -6.129867 2.415822) (xy -6.275857 2.415822) (xy -6.27526 2.391851) (xy -6.270998 2.345055) + (xy -6.26283 2.311778) (xy -6.249556 2.289759) (xy -6.229974 2.276739) (xy -6.202883 2.270457) (xy -6.167082 2.268653) + (xy -6.121371 2.269066) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "1c359cdb-10e1-443f-b853-dcd5a6d1ad9f") + ) + (fp_poly + (pts + (xy -1.300114 2.273448) (xy -1.276548 2.287273) (xy -1.245735 2.309881) (xy -1.206078 2.342338) + (xy -1.15598 2.385708) (xy -1.093843 2.441058) (xy -1.018072 2.509451) (xy -0.931334 2.588084) (xy -0.750711 2.751878) + (xy -0.745067 2.532029) (xy -0.743029 2.456351) (xy -0.741063 2.399994) (xy -0.738734 2.359706) + (xy -0.735606 2.332235) (xy -0.731245 2.314329) (xy -0.725216 2.302737) (xy -0.717084 2.294208) + (xy -0.712772 2.290623) (xy -0.678241 2.27167) (xy -0.645383 2.274441) (xy -0.619318 2.290633) (xy -0.592667 2.312199) + (xy -0.589352 2.627151) (xy -0.588435 2.719779) (xy -0.587968 2.792544) (xy -0.588113 2.848161) + (xy -0.589032 2.889342) (xy -0.590887 2.918803) (xy -0.593839 2.939255) (xy -0.59805 2.953413) (xy -0.603682 2.963991) + (xy -0.609927 2.972474) (xy -0.623439 2.988207) (xy -0.636883 2.998636) (xy -0.652124 3.002639) + (xy -0.671026 2.999094) (xy -0.695455 2.986879) (xy -0.727273 2.964871) (xy -0.768348 2.931949) + (xy -0.820542 2.886991) (xy -0.885722 2.828875) (xy -0.959556 2.762099) (xy -1.224845 2.521458) + (xy -1.230489 2.740589) (xy -1.232531 2.816128) (xy -1.234502 2.872354) (xy -1.236839 2.912524) + (xy -1.239981 2.939896) (xy -1.244364 2.957728) (xy -1.250424 2.969279) (xy -1.2586 2.977807) (xy -1.262784 2.981282) + (xy -1.299765 3.000372) (xy -1.334708 2.997493) (xy -1.365136 2.9731) (xy -1.372097 2.963286) (xy -1.377523 2.951826) + (xy -1.381603 2.935968) (xy -1.384529 2.912963) (xy -1.386492 2.880062) (xy -1.387683 2.834516) + (xy -1.388292 2.773573) (xy -1.388511 2.694486) (xy -1.388534 2.635956) (xy -1.38846 2.544407) (xy -1.388113 2.472687) + (xy -1.387301 2.418045) (xy -1.385833 2.377732) (xy -1.383519 2.348998) (xy -1.380167 2.329093) + (xy -1.375588 2.315268) (xy -1.369589 2.304772) (xy -1.365136 2.298811) (xy -1.35385 2.284691) (xy -1.343301 2.274029) + (xy -1.331893 2.267892) (xy -1.31803 2.267343) (xy -1.300114 2.273448) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "52a7964d-ac4e-44fb-a7d2-57ddd9b74038") + ) + (fp_poly + (pts + (xy -1.950081 2.274599) (xy -1.881565 2.286095) (xy -1.828943 2.303967) (xy -1.794708 2.327499) + (xy -1.785379 2.340924) (xy -1.775893 2.372148) (xy -1.782277 2.400395) (xy -1.80243 2.427182) (xy -1.833745 2.439713) + (xy -1.879183 2.438696) (xy -1.914326 2.431906) (xy -1.992419 2.418971) (xy -2.072226 2.417742) + (xy -2.161555 2.428241) (xy -2.186229 2.43269) (xy -2.269291 2.456108) (xy -2.334273 2.490945) (xy -2.380461 2.536604) + (xy -2.407145 2.592494) (xy -2.412663 2.621388) (xy -2.409051 2.680012) (xy -2.385729 2.731879) + (xy -2.344824 2.775978) (xy -2.288459 2.811299) (xy -2.21876 2.836829) (xy -2.137852 2.851559) (xy -2.04786 2.854478) + (xy -1.95091 2.844575) (xy -1.945436 2.843641) (xy -1.906875 2.836459) (xy -1.885494 2.829521) (xy -1.876227 2.819227) + (xy -1.874006 2.801976) (xy -1.873956 2.792841) (xy -1.873956 2.754489) (xy -1.942431 2.754489) + (xy -2.0029 2.750347) (xy -2.044165 2.737147) (xy -2.068175 2.71373) (xy -2.076877 2.678936) (xy -2.076983 2.674394) + (xy -2.071892 2.644654) (xy -2.054433 2.623419) (xy -2.021939 2.609366) (xy -1.971743 2.601173) + (xy -1.923123 2.598161) (xy -1.852456 2.596433) (xy -1.801198 2.59907) (xy -1.766239 2.6088) (xy -1.74447 2.628353) + (xy -1.73278 2.660456) (xy -1.72806 2.707838) (xy -1.7272 2.770071) (xy -1.728609 2.839535) (xy -1.732848 2.886786) + (xy -1.739936 2.912012) (xy -1.741311 2.913988) (xy -1.780228 2.945508) (xy -1.837286 2.97047) (xy -1.908869 2.98834) + (xy -1.991358 2.998586) (xy -2.081139 3.000673) (xy -2.174592 2.994068) (xy -2.229556 2.985956) + (xy -2.315766 2.961554) (xy -2.395892 2.921662) (xy -2.462977 2.869887) (xy -2.473173 2.859539) + (xy -2.506302 2.816035) (xy -2.536194 2.762118) (xy -2.559357 2.705592) (xy -2.572298 2.654259) + (xy -2.573858 2.634544) (xy -2.567218 2.593419) (xy -2.549568 2.542252) (xy -2.524297 2.488394) + (xy -2.494789 2.439195) (xy -2.468719 2.406334) (xy -2.407765 2.357452) (xy -2.328969 2.318545) + (xy -2.235157 2.290494) (xy -2.12915 2.274179) (xy -2.032 2.270192) (xy -1.950081 2.274599) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "7691cfbd-3083-4c6d-b59f-c92a2e6819bb") + ) + (fp_poly + (pts + (xy 0.230343 2.26926) (xy 0.306701 2.270174) (xy 0.365217 2.272311) (xy 0.408255 2.276175) (xy 0.438183 2.282267) + (xy 0.457368 2.29109) (xy 0.468176 2.303146) (xy 0.472973 2.318939) (xy 0.474127 2.33897) (xy 0.474133 2.341335) + (xy 0.473131 2.363992) (xy 0.468396 2.381503) (xy 0.457333 2.394574) (xy 0.437348 2.403913) (xy 0.405846 2.410227) + (xy 0.360232 2.414222) (xy 0.297913 2.416606) (xy 0.216293 2.418086) (xy 0.191277 2.418414) (xy -0.0508 2.421467) + (xy -0.054186 2.486378) (xy -0.057571 2.551289) (xy 0.110576 2.551289) (xy 0.176266 2.551531) (xy 0.223172 2.552556) + (xy 0.255083 2.554811) (xy 0.275791 2.558742) (xy 0.289084 2.564798) (xy 0.298755 2.573424) (xy 0.298817 2.573493) + (xy 0.316356 2.607112) (xy 0.315722 2.643448) (xy 0.297314 2.674423) (xy 0.293671 2.677607) (xy 0.280741 2.685812) + (xy 0.263024 2.691521) (xy 0.23657 2.695162) (xy 0.197432 2.697167) (xy 0.141662 2.697964) (xy 0.105994 2.698045) + (xy -0.056445 2.698045) (xy -0.056445 2.856089) (xy 0.190161 2.856089) (xy 0.27158 2.856231) (xy 0.33341 2.856814) + (xy 0.378637 2.858068) (xy 0.410248 2.860227) (xy 0.431231 2.863523) (xy 0.444573 2.868189) (xy 0.453261 2.874457) + (xy 0.45545 2.876733) (xy 0.471614 2.90828) (xy 0.472797 2.944168) (xy 0.459536 2.975285) (xy 0.449043 2.985271) + (xy 0.438129 2.990769) (xy 0.421217 2.995022) (xy 0.395633 2.99818) (xy 0.358701 3.000392) (xy 0.307746 3.001806) + (xy 0.240094 3.002572) (xy 0.153069 3.002838) (xy 0.133394 3.002845) (xy 0.044911 3.002787) (xy -0.023773 3.002467) + (xy -0.075436 3.001667) (xy -0.112855 3.000167) (xy -0.13881 2.997749) (xy -0.156078 2.994194) (xy -0.167438 2.989282) + (xy -0.175668 2.982795) (xy -0.180183 2.978138) (xy -0.186979 2.969889) (xy -0.192288 2.959669) + (xy -0.196294 2.9448) (xy -0.199179 2.922602) (xy -0.201126 2.890393) (xy -0.202319 2.845496) (xy -0.202939 2.785228) + (xy -0.203171 2.706911) (xy -0.2032 2.640994) (xy -0.203129 2.548628) (xy -0.202792 2.476117) (xy -0.202002 2.420737) + (xy -0.200574 2.379765) (xy -0.198321 2.350478) (xy -0.195057 2.330153) (xy -0.190596 2.316066) + (xy -0.184752 2.305495) (xy -0.179803 2.298811) (xy -0.156406 2.269067) (xy 0.133774 2.269067) (xy 0.230343 2.26926) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "61991b7c-277c-4795-98e8-efba23b5e7c9") + ) + (fp_poly + (pts + (xy -4.712794 2.269146) (xy -4.643386 2.269518) (xy -4.590997 2.270385) (xy -4.552847 2.271946) + (xy -4.526159 2.274403) (xy -4.508153 2.277957) (xy -4.496049 2.28281) (xy -4.487069 2.289161) (xy -4.483818 2.292084) + (xy -4.464043 2.323142) (xy -4.460482 2.358828) (xy -4.473491 2.39051) (xy -4.479506 2.396913) (xy -4.489235 2.403121) + (xy -4.504901 2.40791) (xy -4.529408 2.411514) (xy -4.565661 2.414164) (xy -4.616565 2.416095) (xy -4.685026 2.417539) + (xy -4.747617 2.418418) (xy -4.995334 2.421467) (xy -4.998719 2.486378) (xy -5.002105 2.551289) + (xy -4.833958 2.551289) (xy -4.760959 2.551919) (xy -4.707517 2.554553) (xy -4.670628 2.560309) + (xy -4.647288 2.570304) (xy -4.634494 2.585656) (xy -4.629242 2.607482) (xy -4.628445 2.627738) + (xy -4.630923 2.652592) (xy -4.640277 2.670906) (xy -4.659383 2.683637) (xy -4.691118 2.691741) + (xy -4.738359 2.696176) (xy -4.803983 2.697899) (xy -4.839801 2.698045) (xy -5.000978 2.698045) + (xy -5.000978 2.856089) (xy -4.752622 2.856089) (xy -4.671213 2.856202) (xy -4.609342 2.856712) + (xy -4.563968 2.85787) (xy -4.532054 2.85993) (xy -4.510559 2.863146) (xy -4.496443 2.867772) (xy -4.486668 2.874059) + (xy -4.481689 2.878667) (xy -4.46461 2.90556) (xy -4.459111 2.929467) (xy -4.466963 2.958667) (xy -4.481689 2.980267) + (xy -4.489546 2.987066) (xy -4.499688 2.992346) (xy -4.514844 2.996298) (xy -4.537741 2.999113) + (xy -4.571109 3.000982) (xy -4.617675 3.002098) (xy -4.680167 3.002651) (xy -4.761314 3.002833) + (xy -4.803422 3.002845) (xy -4.893598 3.002765) (xy -4.963924 3.002398) (xy -5.017129 3.001552) + (xy -5.05594 3.000036) (xy -5.083087 2.997659) (xy -5.101298 2.994229) (xy -5.1133 2.989554) (xy -5.121822 2.983444) + (xy -5.125156 2.980267) (xy -5.131755 2.97267) (xy -5.136927 2.96287) (xy -5.140846 2.948239) (xy -5.143684 2.926152) + (xy -5.145615 2.893982) (xy -5.146812 2.849103) (xy -5.147448 2.788889) (xy -5.147697 2.710713) + (xy -5.147734 2.637923) (xy -5.1477 2.544707) (xy -5.147465 2.471431) (xy -5.14683 2.415458) (xy -5.145594 2.374151) + (xy -5.143556 2.344872) (xy -5.140517 2.324984) (xy -5.136277 2.31185) (xy -5.130635 2.302832) (xy -5.123391 2.295293) + (xy -5.121606 2.293612) (xy -5.112945 2.286172) (xy -5.102882 2.280409) (xy -5.088625 2.276112) + (xy -5.067383 2.273064) (xy -5.036364 2.271051) (xy -4.992777 2.26986) (xy -4.933831 2.269275) (xy -4.856734 2.269083) + (xy -4.802001 2.269067) (xy -4.712794 2.269146) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "629445c9-0aa9-4c0b-a325-7f1fe5db9f6e") + ) + (fp_poly + (pts + (xy 3.744665 2.271034) (xy 3.764255 2.278035) (xy 3.76501 2.278377) (xy 3.791613 2.298678) (xy 3.80627 2.319561) + (xy 3.809138 2.329352) (xy 3.808996 2.342361) (xy 3.804961 2.360895) (xy 3.796146 2.387257) (xy 3.781669 2.423752) + (xy 3.760645 2.472687) (xy 3.732188 2.536365) (xy 3.695415 2.617093) (xy 3.675175 2.661216) (xy 3.638625 2.739985) + (xy 3.604315 2.812423) (xy 3.573552 2.87588) (xy 3.547648 2.927708) (xy 3.52791 2.965259) (xy 3.51565 2.985884) + (xy 3.513224 2.988733) (xy 3.482183 3.001302) (xy 3.447121 2.999619) (xy 3.419 2.984332) (xy 3.417854 2.983089) + (xy 3.406668 2.966154) (xy 3.387904 2.93317) (xy 3.363875 2.88838) (xy 3.336897 2.836032) (xy 3.327201 2.816742) + (xy 3.254014 2.67015) (xy 3.17424 2.829393) (xy 3.145767 2.884415) (xy 3.11935 2.932132) (xy 3.097148 2.968893) + (xy 3.081319 2.991044) (xy 3.075954 2.995741) (xy 3.034257 3.002102) (xy 2.999849 2.988733) (xy 2.989728 2.974446) + (xy 2.972214 2.942692) (xy 2.948735 2.896597) (xy 2.92072 2.839285) (xy 2.889599 2.77388) (xy 2.856799 2.703507) + (xy 2.82375 2.631291) (xy 2.791881 2.560355) (xy 2.762619 2.493825) (xy 2.737395 2.434826) (xy 2.717636 2.386481) + (xy 2.704772 2.351915) (xy 2.700231 2.334253) (xy 2.700277 2.333613) (xy 2.711326 2.311388) (xy 2.73341 2.288753) + (xy 2.73471 2.287768) (xy 2.761853 2.272425) (xy 2.786958 2.272574) (xy 2.796368 2.275466) (xy 2.807834 2.281718) + (xy 2.82001 2.294014) (xy 2.834357 2.314908) (xy 2.852336 2.346949) (xy 2.875407 2.392688) (xy 2.90503 2.454677) + (xy 2.931745 2.511898) (xy 2.96248 2.578226) (xy 2.990021 2.637874) (xy 3.012938 2.687725) (xy 3.029798 2.724664) + (xy 3.039173 2.745573) (xy 3.04054 2.748845) (xy 3.046689 2.743497) (xy 3.060822 2.721109) (xy 3.081057 2.684946) + (xy 3.105515 2.638277) (xy 3.115248 2.619022) (xy 3.148217 2.554004) (xy 3.173643 2.506654) (xy 3.193612 2.474219) + (xy 3.21021 2.453946) (xy 3.225524 2.443082) (xy 3.24164 2.438875) (xy 3.252143 2.4384) (xy 3.27067 2.440042) + (xy 3.286904 2.446831) (xy 3.303035 2.461566) (xy 3.321251 2.487044) (xy 3.343739 2.526061) (xy 3.372689 2.581414) + (xy 3.388662 2.612903) (xy 3.41457 2.663087) (xy 3.437167 2.704704) (xy 3.454458 2.734242) (xy 3.46445 2.748189) + (xy 3.465809 2.74877) (xy 3.472261 2.737793) (xy 3.486708 2.70929) (xy 3.507703 2.666244) (xy 3.533797 2.611638) + (xy 3.563546 2.548454) (xy 3.57818 2.517071) (xy 3.61625 2.436078) (xy 3.646905 2.373756) (xy 3.671737 2.328071) + (xy 3.692337 2.296989) (xy 3.710298 2.278478) (xy 3.72721 2.270504) (xy 3.744665 2.271034) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "82f2a07f-657c-4664-80cc-9b74a43794b0") + ) + (fp_poly + (pts + (xy -3.691703 2.270351) (xy -3.616888 2.275581) (xy -3.547306 2.28375) (xy -3.487002 2.29455) (xy -3.44002 2.307673) + (xy -3.410406 2.322813) (xy -3.40586 2.327269) (xy -3.390054 2.36185) (xy -3.394847 2.397351) (xy -3.419364 2.427725) + (xy -3.420534 2.428596) (xy -3.434954 2.437954) (xy -3.450008 2.442876) (xy -3.471005 2.443473) + (xy -3.503257 2.439861) (xy -3.552073 2.432154) (xy -3.556 2.431505) (xy -3.628739 2.422569) (xy -3.707217 2.418161) + (xy -3.785927 2.418119) (xy -3.859361 2.422279) (xy -3.922011 2.430479) (xy -3.96837 2.442557) (xy -3.971416 2.443771) + (xy -4.005048 2.462615) (xy -4.016864 2.481685) (xy -4.007614 2.500439) (xy -3.978047 2.518337) + (xy -3.928911 2.534837) (xy -3.860957 2.549396) (xy -3.815645 2.556406) (xy -3.721456 2.569889) + (xy -3.646544 2.582214) (xy -3.587717 2.594449) (xy -3.541785 2.607661) (xy -3.505555 2.622917) + (xy -3.475838 2.641285) (xy -3.449442 2.663831) (xy -3.42823 2.685971) (xy -3.403065 2.716819) (xy -3.390681 2.743345) + (xy -3.386808 2.776026) (xy -3.386667 2.787995) (xy -3.389576 2.827712) (xy -3.401202 2.857259) + (xy -3.421323 2.883486) (xy -3.462216 2.923576) (xy -3.507817 2.954149) (xy -3.561513 2.976203) + (xy -3.626692 2.990735) (xy -3.706744 2.998741) (xy -3.805057 3.001218) (xy -3.821289 3.001177) + (xy -3.886849 2.999818) (xy -3.951866 2.99673) (xy -4.009252 2.992356) (xy -4.051922 2.98714) (xy -4.055372 2.986541) + (xy -4.097796 2.976491) (xy -4.13378 2.963796) (xy -4.15415 2.95219) (xy -4.173107 2.921572) (xy -4.174427 2.885918) + (xy -4.158085 2.854144) (xy -4.154429 2.850551) (xy -4.139315 2.839876) (xy -4.120415 2.835276) + (xy -4.091162 2.836059) (xy -4.055651 2.840127) (xy -4.01597 2.843762) (xy -3.960345 2.846828) (xy -3.895406 2.849053) + (xy -3.827785 2.850164) (xy -3.81 2.850237) (xy -3.742128 2.849964) (xy -3.692454 2.848646) (xy -3.65661 2.845827) + (xy -3.630224 2.84105) (xy -3.608926 2.833857) (xy -3.596126 2.827867) (xy -3.568 2.811233) (xy -3.550068 2.796168) + (xy -3.547447 2.791897) (xy -3.552976 2.774263) (xy -3.57926 2.757192) (xy -3.624478 2.741458) (xy -3.686808 2.727838) + (xy -3.705171 2.724804) (xy -3.80109 2.709738) (xy -3.877641 2.697146) (xy -3.93778 2.686111) (xy -3.98446 2.67572) + (xy -4.020637 2.665056) (xy -4.049265 2.653205) (xy -4.073298 2.639251) (xy -4.095692 2.622281) + (xy -4.119402 2.601378) (xy -4.12738 2.594049) (xy -4.155353 2.566699) (xy -4.17016 2.545029) (xy -4.175952 2.520232) + (xy -4.176889 2.488983) (xy -4.166575 2.427705) (xy -4.135752 2.37564) (xy -4.084595 2.332958) (xy -4.013283 2.299825) + (xy -3.9624 2.284964) (xy -3.9071 2.275366) (xy -3.840853 2.269936) (xy -3.767706 2.268367) (xy -3.691703 2.270351) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "1981304d-b1ac-477c-b387-f2b055a39e36") + ) + (fp_poly + (pts + (xy 0.328429 -2.050929) (xy 0.48857 -2.029755) (xy 0.65251 -1.989615) (xy 0.822313 -1.930111) (xy 1.000043 -1.850846) + (xy 1.01131 -1.845301) (xy 1.069005 -1.817275) (xy 1.120552 -1.793198) (xy 1.162191 -1.774751) (xy 1.190162 -1.763614) + (xy 1.199733 -1.761067) (xy 1.21895 -1.756059) (xy 1.223561 -1.751853) (xy 1.218458 -1.74142) (xy 1.202418 -1.715132) + (xy 1.177288 -1.675743) (xy 1.144914 -1.626009) (xy 1.107143 -1.568685) (xy 1.065822 -1.506524) + (xy 1.022798 -1.442282) (xy 0.979917 -1.378715) (xy 0.939026 -1.318575) (xy 0.901971 -1.26462) (xy 0.8706 -1.219603) + (xy 0.846759 -1.186279) (xy 0.832294 -1.167403) (xy 0.830309 -1.165213) (xy 0.820191 -1.169862) + (xy 0.79785 -1.187038) (xy 0.76728 -1.21356) (xy 0.751536 -1.228036) (xy 0.655047 -1.303318) (xy 0.548336 -1.358759) + (xy 0.432832 -1.393859) (xy 0.309962 -1.40812) (xy 0.240561 -1.406949) (xy 0.119423 -1.389788) (xy 0.010205 -1.353906) + (xy -0.087418 -1.299041) (xy -0.173772 -1.22493) (xy -0.249185 -1.131312) (xy -0.313982 -1.017924) + (xy -0.351399 -0.931333) (xy -0.395252 -0.795634) (xy -0.427572 -0.64815) (xy -0.448443 -0.492686) + (xy -0.457949 -0.333044) (xy -0.456173 -0.173027) (xy -0.443197 -0.016439) (xy -0.419106 0.132918) + (xy -0.383982 0.27124) (xy -0.337908 0.394724) (xy -0.321627 0.428978) (xy -0.25338 0.543064) (xy -0.172921 0.639557) + (xy -0.08143 0.71767) (xy 0.019911 0.776617) (xy 0.12992 0.815612) (xy 0.247415 0.833868) (xy 0.288883 0.835211) + (xy 0.410441 0.82429) (xy 0.530878 0.791474) (xy 0.648666 0.737439) (xy 0.762277 0.662865) (xy 0.853685 0.584539) + (xy 0.900215 0.540008) (xy 1.081483 0.837271) (xy 1.12658 0.911433) (xy 1.167819 0.979646) (xy 1.203735 1.039459) + (xy 1.232866 1.08842) (xy 1.25375 1.124079) (xy 1.264924 1.143984) (xy 1.266375 1.147079) (xy 1.258146 1.156718) + (xy 1.232567 1.173999) (xy 1.192873 1.197283) (xy 1.142297 1.224934) (xy 1.084074 1.255315) (xy 1.021437 1.28679) + (xy 0.957621 1.317722) (xy 0.89586 1.346473) (xy 0.839388 1.371408) (xy 0.791438 1.390889) (xy 0.767986 1.399318) + (xy 0.634221 1.437133) (xy 0.496327 1.462136) (xy 0.348622 1.47514) (xy 0.221833 1.477468) (xy 0.153878 1.476373) + (xy 0.088277 1.474275) (xy 0.030847 1.471434) (xy -0.012597 1.468106) (xy -0.026702 1.466422) (xy -0.165716 1.437587) + (xy -0.307243 1.392468) (xy -0.444725 1.33375) (xy -0.571606 1.26412) (xy -0.649111 1.211441) (xy -0.776519 1.103239) + (xy -0.894822 0.976671) (xy -1.001828 0.834866) (xy -1.095348 0.680951) (xy -1.17319 0.518053) (xy -1.217044 0.400756) + (xy -1.267292 0.217128) (xy -1.300791 0.022581) (xy -1.317551 -0.178675) (xy -1.317584 -0.382432) + (xy -1.300899 -0.584479) (xy -1.267507 -0.780608) (xy -1.21742 -0.966609) (xy -1.213603 -0.978197) + (xy -1.150719 -1.14025) (xy -1.073972 -1.288168) (xy -0.980758 -1.426135) (xy -0.868473 -1.558339) + (xy -0.824608 -1.603601) (xy -0.688466 -1.727543) (xy -0.548509 -1.830085) (xy -0.402589 -1.912344) + (xy -0.248558 -1.975436) (xy -0.084268 -2.020477) (xy 0.011289 -2.037967) (xy 0.170023 -2.053534) + (xy 0.328429 -2.050929) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "841b0c79-d023-471a-831a-15b7b6d4c6d2") + ) + (fp_poly + (pts + (xy 6.186507 -0.527755) (xy 6.186526 -0.293338) (xy 6.186552 -0.080397) (xy 6.186625 0.112168) (xy 6.186782 0.285459) + (xy 6.187064 0.440576) (xy 6.187509 0.57862) (xy 6.188156 0.700692) (xy 6.189045 0.807894) (xy 6.190213 0.901326) + (xy 6.191701 0.98209) (xy 6.193546 1.051286) (xy 6.195789 1.110015) (xy 6.198469 1.159379) (xy 6.201623 1.200478) + (xy 6.205292 1.234413) (xy 6.209513 1.262286) (xy 6.214327 1.285198) (xy 6.219773 1.304249) (xy 6.225888 1.32054) + (xy 6.232712 1.335173) (xy 6.240285 1.349249) (xy 6.248645 1.363868) (xy 6.253839 1.372974) (xy 6.288104 1.433689) + (xy 5.429955 1.433689) (xy 5.429955 1.337733) (xy 5.429224 1.29437) (xy 5.427272 1.261205) (xy 5.424463 1.243424) + (xy 5.423221 1.241778) (xy 5.411799 1.248662) (xy 5.389084 1.266505) (xy 5.366385 1.285879) (xy 5.3118 1.326614) + (xy 5.242321 1.367617) (xy 5.16527 1.405123) (xy 5.087965 1.435364) (xy 5.057113 1.445012) (xy 4.988616 1.459578) + (xy 4.905764 1.469539) (xy 4.816371 1.474583) (xy 4.728248 1.474396) (xy 4.649207 1.468666) (xy 4.611511 1.462858) + (xy 4.473414 1.424797) (xy 4.346113 1.367073) (xy 4.230292 1.290211) (xy 4.126637 1.194739) (xy 4.035833 1.081179) + (xy 3.969031 0.970381) (xy 3.914164 0.853625) (xy 3.872163 0.734276) (xy 3.842167 0.608283) (xy 3.823311 0.471594) + (xy 3.814732 0.320158) (xy 3.814006 0.242711) (xy 3.8161 0.185934) (xy 4.645217 0.185934) (xy 4.645424 0.279002) + (xy 4.648337 0.366692) (xy 4.654 0.443772) (xy 4.662455 0.505009) (xy 4.665038 0.51735) (xy 4.69684 0.624633) + (xy 4.738498 0.711658) (xy 4.790363 0.778642) (xy 4.852781 0.825805) (xy 4.9261 0.853365) (xy 5.010669 0.861541) + (xy 5.106835 0.850551) (xy 5.170311 0.834829) (xy 5.219454 0.816639) (xy 5.273583 0.790791) (xy 5.314244 0.767089) + (xy 5.3848 0.720721) (xy 5.3848 -0.42947) (xy 5.317392 -0.473038) (xy 5.238867 -0.51396) (xy 5.154681 -0.540611) + (xy 5.069557 -0.552535) (xy 4.988216 -0.549278) (xy 4.91538 -0.530385) (xy 4.883426 -0.514816) (xy 4.825501 -0.471819) + (xy 4.776544 -0.415047) (xy 4.73539 -0.342425) (xy 4.700874 -0.251879) (xy 4.671833 -0.141334) (xy 4.670552 -0.135467) + (xy 4.660381 -0.073212) (xy 4.652739 0.004594) (xy 4.64767 0.09272) (xy 4.645217 0.185934) (xy 3.8161 0.185934) + (xy 3.821857 0.029895) (xy 3.843802 -0.165941) (xy 3.879786 -0.344668) (xy 3.929759 -0.506155) (xy 3.993668 -0.650274) + (xy 4.071462 -0.776894) (xy 4.163089 -0.885885) (xy 4.268497 -0.977117) (xy 4.313662 -1.008068) + (xy 4.414611 -1.064215) (xy 4.517901 -1.103826) (xy 4.627989 -1.127986) (xy 4.74933 -1.137781) (xy 4.841836 -1.136735) + (xy 4.97149 -1.125769) (xy 5.084084 -1.103954) (xy 5.182875 -1.070286) (xy 5.271121 -1.023764) (xy 5.319986 -0.989552) + (xy 5.349353 -0.967638) (xy 5.371043 -0.952667) (xy 5.379253 -0.948267) (xy 5.380868 -0.959096) + (xy 5.382159 -0.989749) (xy 5.383138 -1.037474) (xy 5.383817 -1.099521) (xy 5.38421 -1.173138) (xy 5.38433 -1.255573) + (xy 5.384188 -1.344075) (xy 5.383797 -1.435893) (xy 5.383171 -1.528276) (xy 5.38232 -1.618472) (xy 5.38126 -1.703729) + (xy 5.380001 -1.781297) (xy 5.378556 -1.848424) (xy 5.376938 -1.902359) (xy 5.375161 -1.94035) (xy 5.374669 -1.947333) + (xy 5.367092 -2.017749) (xy 5.355531 -2.072898) (xy 5.337792 -2.120019) (xy 5.311682 -2.166353) + (xy 5.305415 -2.175933) (xy 5.280983 -2.212622) (xy 6.186311 -2.212622) (xy 6.186507 -0.527755) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "7f256547-c5e9-418e-83c9-1c4704dd6037") + ) + (fp_poly + (pts + (xy 2.673574 -1.133448) (xy 2.825492 -1.113433) (xy 2.960756 -1.079798) (xy 3.080239 -1.032275) + (xy 3.184815 -0.970595) (xy 3.262424 -0.907035) (xy 3.331265 -0.832901) (xy 3.385006 -0.753129) + (xy 3.42791 -0.660909) (xy 3.443384 -0.617839) (xy 3.456244 -0.578858) (xy 3.467446 -0.542711) (xy 3.47712 -0.507566) + (xy 3.485396 -0.47159) (xy 3.492403 -0.43295) (xy 3.498272 -0.389815) (xy 3.503131 -0.340351) (xy 3.50711 -0.282727) + (xy 3.51034 -0.215109) (xy 3.512949 -0.135666) (xy 3.515067 -0.042564) (xy 3.516824 0.066027) (xy 3.518349 0.191942) + (xy 3.519772 0.337012) (xy 3.521025 0.479778) (xy 3.522351 0.635968) (xy 3.523556 0.771239) (xy 3.524766 0.887246) + (xy 3.526106 0.985645) (xy 3.5277 1.068093) (xy 3.529675 1.136246) (xy 3.532156 1.19176) (xy 3.535269 1.236292) + (xy 3.539138 1.271498) (xy 3.543889 1.299034) (xy 3.549648 1.320556) (xy 3.556539 1.337722) (xy 3.564689 1.352186) + (xy 3.574223 1.365606) (xy 3.585266 1.379638) (xy 3.589566 1.385071) (xy 3.605386 1.40791) (xy 3.612422 1.423463) + (xy 3.612444 1.423922) (xy 3.601567 1.426121) (xy 3.570582 1.428147) (xy 3.521957 1.429942) (xy 3.458163 1.431451) + (xy 3.381669 1.432616) (xy 3.294944 1.43338) (xy 3.200457 1.433686) (xy 3.18955 1.433689) (xy 2.766657 1.433689) + (xy 2.763395 1.337622) (xy 2.760133 1.241556) (xy 2.698044 1.292543) (xy 2.600714 1.360057) (xy 2.490813 1.414749) + (xy 2.404349 1.444978) (xy 2.335278 1.459666) (xy 2.251925 1.469659) (xy 2.162159 1.474646) (xy 2.073845 1.474313) + (xy 1.994851 1.468351) (xy 1.958622 1.462638) (xy 1.818603 1.424776) (xy 1.692178 1.369932) (xy 1.58026 1.298924) + (xy 1.483762 1.212568) (xy 1.4036 1.111679) (xy 1.340687 0.997076) (xy 1.296312 0.870984) (xy 1.283978 0.814401) + (xy 1.276368 0.752202) (xy 1.272739 0.677363) (xy 1.272245 0.643467) (xy 1.27231 0.640282) (xy 2.032248 0.640282) + (xy 2.041541 0.715333) (xy 2.069728 0.77916) (xy 2.118197 0.834798) (xy 2.123254 0.839211) (xy 2.171548 0.874037) + (xy 2.223257 0.89662) (xy 2.283989 0.90854) (xy 2.359352 0.911383) (xy 2.377459 0.910978) (xy 2.431278 0.908325) + (xy 2.471308 0.902909) (xy 2.506324 0.892745) (xy 2.545103 0.87585) (xy 2.555745 0.870672) (xy 2.616396 0.834844) + (xy 2.663215 0.792212) (xy 2.675952 0.776973) (xy 2.720622 0.720462) (xy 2.720622 0.524586) (xy 2.720086 0.445939) + (xy 2.718396 0.387988) (xy 2.715428 0.348875) (xy 2.711057 0.326741) (xy 2.706972 0.320274) (xy 2.691047 0.317111) + (xy 2.657264 0.314488) (xy 2.61034 0.312655) (xy 2.554993 0.311857) (xy 2.546106 0.311842) (xy 2.42533 0.317096) + (xy 2.32266 0.333263) (xy 2.236106 0.360961) (xy 2.163681 0.400808) (xy 2.108751 0.447758) (xy 2.064204 0.505645) + (xy 2.03948 0.568693) (xy 2.032248 0.640282) (xy 1.27231 0.640282) (xy 1.274178 0.549712) (xy 1.282522 0.470812) + (xy 1.298768 0.39959) (xy 1.324405 0.328864) (xy 1.348401 0.276493) (xy 1.40702 0.181196) (xy 1.485117 0.09317) + (xy 1.580315 0.014017) (xy 1.690238 -0.05466) (xy 1.81251 -0.111259) (xy 1.944755 -0.154179) (xy 2.009422 -0.169118) + (xy 2.145604 -0.191223) (xy 2.294049 -0.205806) (xy 2.445505 -0.212187) (xy 2.572064 -0.210555) + (xy 2.73395 -0.203776) (xy 2.72653 -0.262755) (xy 2.707238 -0.361908) (xy 2.676104 -0.442628) (xy 2.632269 -0.505534) + (xy 2.574871 -0.551244) (xy 2.503048 -0.580378) (xy 2.415941 -0.593553) (xy 2.312686 -0.591389) + (xy 2.274711 -0.587388) (xy 2.13352 -0.56222) (xy 1.996707 -0.521186) (xy 1.902178 -0.483185) (xy 1.857018 -0.46381) + (xy 1.818585 -0.44824) (xy 1.792234 -0.438595) (xy 1.784546 -0.436548) (xy 1.774802 -0.445626) (xy 1.758083 -0.474595) + (xy 1.734232 -0.523783) (xy 1.703093 -0.593516) (xy 1.664507 -0.684121) (xy 1.65791 -0.699911) (xy 1.627853 -0.772228) + (xy 1.600874 -0.837575) (xy 1.578136 -0.893094) (xy 1.560806 -0.935928) (xy 1.550048 -0.963219) + (xy 1.546941 -0.972058) (xy 1.55694 -0.976813) (xy 1.583217 -0.98209) (xy 1.611489 -0.985769) (xy 1.641646 -0.990526) + (xy 1.689433 -0.999972) (xy 1.750612 -1.01318) (xy 1.820946 -1.029224) (xy 1.896194 -1.04718) (xy 1.924755 -1.054203) + (xy 2.029816 -1.079791) (xy 2.11748 -1.099853) (xy 2.192068 -1.115031) (xy 2.257903 -1.125965) (xy 2.319307 -1.133296) + (xy 2.380602 -1.137665) (xy 2.44611 -1.139713) (xy 2.504128 -1.140111) (xy 2.673574 -1.133448) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "9f109be3-1a0c-491a-beef-149d4b8fda4b") + ) + (fp_poly + (pts + (xy -2.9464 -2.510946) (xy -2.935535 -2.397007) (xy -2.903918 -2.289384) (xy -2.853015 -2.190385) + (xy -2.784293 -2.102316) (xy -2.699219 -2.027484) (xy -2.602232 -1.969616) (xy -2.495964 -1.929995) + (xy -2.38895 -1.911427) (xy -2.2833 -1.912566) (xy -2.181125 -1.93207) (xy -2.084534 -1.968594) + (xy -1.995638 -2.020795) (xy -1.916546 -2.087327) (xy -1.849369 -2.166848) (xy -1.796217 -2.258013) + (xy -1.759199 -2.359477) (xy -1.740427 -2.469898) (xy -1.738489 -2.519794) (xy -1.738489 -2.607733) + (xy -1.68656 -2.607733) (xy -1.650253 -2.604889) (xy -1.623355 -2.593089) (xy -1.596249 -2.569351) + (xy -1.557867 -2.530969) (xy -1.557867 -0.339398) (xy -1.557876 -0.077261) (xy -1.557908 0.163241) + (xy -1.557972 0.383048) (xy -1.558076 0.583101) (xy -1.558227 0.764344) (xy -1.558434 0.927716) + (xy -1.558706 1.07416) (xy -1.55905 1.204617) (xy -1.559474 1.320029) (xy -1.559987 1.421338) (xy -1.560597 1.509484) + (xy -1.561312 1.58541) (xy -1.56214 1.650057) (xy -1.563089 1.704367) (xy -1.564167 1.74928) (xy -1.565383 1.78574) + (xy -1.566745 1.814687) (xy -1.568261 1.837063) (xy -1.569938 1.853809) (xy -1.571786 1.865868) + (xy -1.573813 1.87418) (xy -1.576025 1.879687) (xy -1.577108 1.881537) (xy -1.581271 1.888549) (xy -1.584805 1.894996) + (xy -1.588635 1.9009) (xy -1.593682 1.906286) (xy -1.600871 1.911178) (xy -1.611123 1.915598) (xy -1.625364 1.919572) + (xy -1.644514 1.923121) (xy -1.669499 1.92627) (xy -1.70124 1.929042) (xy -1.740662 1.931461) (xy -1.788686 1.933551) + (xy -1.846237 1.935335) (xy -1.914237 1.936837) (xy -1.99361 1.93808) (xy -2.085279 1.939089) (xy -2.190166 1.939885) + (xy -2.309196 1.940494) (xy -2.44329 1.940939) (xy -2.593373 1.941243) (xy -2.760367 1.94143) (xy -2.945196 1.941524) + (xy -3.148783 1.941548) (xy -3.37205 1.941525) (xy -3.615922 1.94148) (xy -3.881321 1.941437) (xy -3.919704 1.941432) + (xy -4.186682 1.941389) (xy -4.432002 1.941318) (xy -4.656583 1.941213) (xy -4.861345 1.941066) + (xy -5.047206 1.940869) (xy -5.215088 1.940616) (xy -5.365908 1.9403) (xy -5.500587 1.939913) (xy -5.620044 1.939447) + (xy -5.725199 1.938897) (xy -5.816971 1.938253) (xy -5.896279 1.937511) (xy -5.964043 1.936661) + (xy -6.021182 1.935697) (xy -6.068617 1.934611) (xy -6.107266 1.933397) (xy -6.138049 1.932047) + (xy -6.161885 1.930555) (xy -6.179694 1.928911) (xy -6.192395 1.927111) (xy -6.200908 1.925145) + (xy -6.205266 1.923477) (xy -6.213728 1.919906) (xy -6.221497 1.91727) (xy -6.228602 1.914634) (xy -6.235073 1.911062) + (xy -6.240939 1.905621) (xy -6.246229 1.897375) (xy -6.250974 1.88539) (xy -6.255202 1.868731) (xy -6.258943 1.846463) + (xy -6.262227 1.817652) (xy -6.265083 1.781363) (xy -6.26754 1.736661) (xy -6.269629 1.682611) (xy -6.271378 1.618279) + (xy -6.272817 1.54273) (xy -6.273976 1.45503) (xy -6.274883 1.354243) (xy -6.275569 1.239434) (xy -6.276063 1.10967) + (xy -6.276395 0.964015) (xy -6.276593 0.801535) (xy -6.276687 0.621295) (xy -6.276708 0.42236) (xy -6.276685 0.203796) + (xy -6.276646 -0.035332) (xy -6.276622 -0.29596) (xy -6.276622 -0.338111) (xy -6.276636 -0.601008) + (xy -6.276661 -0.842268) (xy -6.276671 -1.062835) (xy -6.276642 -1.263648) (xy -6.276548 -1.445651) + (xy -6.276362 -1.609784) (xy -6.276059 -1.756989) (xy -6.275614 -1.888208) (xy -6.275034 -1.998133) + (xy -5.972197 -1.998133) (xy -5.932407 -1.940289) (xy -5.921236 -1.924521) (xy -5.911166 -1.910559) + (xy -5.902138 -1.897216) (xy -5.894097 -1.883307) (xy -5.886986 -1.867644) (xy -5.880747 -1.849042) + (xy -5.875325 -1.826314) (xy -5.870662 -1.798273) (xy -5.866701 -1.763733) (xy -5.863385 -1.721508) + (xy -5.860659 -1.670411) (xy -5.858464 -1.609256) (xy -5.856745 -1.536856) (xy -5.855444 -1.452025) + (xy -5.854505 -1.353578) (xy -5.85387 -1.240326) (xy -5.853484 -1.111084) (xy -5.853288 -0.964666) + (xy -5.853227 -0.799884) (xy -5.853243 -0.615553) (xy -5.85328 -0.410487) (xy -5.853289 -0.287867) + (xy -5.853265 -0.070918) (xy -5.853231 0.124642) (xy -5.853243 0.299999) (xy -5.853358 0.456341) + (xy -5.85363 0.594857) (xy -5.854118 0.716734) (xy -5.854876 0.82316) (xy -5.855962 0.915322) (xy -5.857431 0.994409) + (xy -5.85934 1.061608) (xy -5.861744 1.118107) (xy -5.864701 1.165093) (xy -5.868266 1.203755) (xy -5.872495 1.23528) + (xy -5.877446 1.260855) (xy -5.883173 1.28167) (xy -5.889733 1.298911) (xy -5.897183 1.313765) (xy -5.905579 1.327422) + (xy -5.914976 1.341069) (xy -5.925432 1.355893) (xy -5.931523 1.364783) (xy -5.970296 1.4224) (xy -5.438732 1.4224) + (xy -5.315483 1.422365) (xy -5.212987 1.422215) (xy -5.12942 1.421878) (xy -5.062956 1.421286) (xy -5.011771 1.420367) + (xy -4.974041 1.419051) (xy -4.94794 1.417269) (xy -4.931644 1.414951) (xy -4.923328 1.412026) (xy -4.921168 1.408424) + (xy -4.923339 1.404075) (xy -4.924535 1.402645) (xy -4.949685 1.365573) (xy -4.975583 1.312772) + (xy -4.999192 1.25077) (xy -5.007461 1.224357) (xy -5.012078 1.206416) (xy -5.015979 1.185355) (xy -5.019248 1.159089) + (xy -5.021966 1.125532) (xy -5.024215 1.082599) (xy -5.026077 1.028204) (xy -5.027636 0.960262) + (xy -5.028972 0.876688) (xy -5.030169 0.775395) (xy -5.031308 0.6543) (xy -5.031685 0.6096) (xy -5.032702 0.484449) + (xy -5.03346 0.380082) (xy -5.033903 0.294707) (xy -5.03397 0.226533) (xy -5.033605 0.173765) (xy -5.032748 0.134614) + (xy -5.031341 0.107285) (xy -5.029325 0.089986) (xy -5.026643 0.080926) (xy -5.023236 0.078312) + (xy -5.019044 0.080351) (xy -5.014571 0.084667) (xy -5.004216 0.097602) (xy -4.982158 0.126676) + (xy -4.949957 0.169759) (xy -4.909174 0.224718) (xy -4.86137 0.289423) (xy -4.808105 0.361742) (xy -4.75094 0.439544) + (xy -4.691437 0.520698) (xy -4.631155 0.603072) (xy -4.571655 0.684536) (xy -4.514498 0.762957) + (xy -4.461245 0.836204) (xy -4.413457 0.902147) (xy -4.372693 0.958654) (xy -4.340516 1.003593) + (xy -4.318485 1.034834) (xy -4.313917 1.041466) (xy -4.290996 1.078369) (xy -4.264188 1.126359) + (xy -4.238789 1.175897) (xy -4.235568 1.182577) (xy -4.21389 1.230772) (xy -4.201304 1.268334) (xy -4.195574 1.30416) + (xy -4.194456 1.3462) (xy -4.19509 1.4224) (xy -3.040651 1.4224) (xy -3.131815 1.328669) (xy -3.178612 1.278775) + (xy -3.228899 1.222295) (xy -3.274944 1.168026) (xy -3.295369 1.142673) (xy -3.325807 1.103128) + (xy -3.365862 1.049916) (xy -3.414361 0.984667) (xy -3.470135 0.909011) (xy -3.532011 0.824577) + (xy -3.598819 0.732994) (xy -3.669387 0.635892) (xy -3.742545 0.534901) (xy -3.817121 0.43165) (xy -3.891944 0.327768) + (xy -3.965843 0.224885) (xy -4.037646 0.124631) (xy -4.106184 0.028636) (xy -4.170284 -0.061473) + (xy -4.228775 -0.144064) (xy -4.280486 -0.217508) (xy -4.324247 -0.280176) (xy -4.358885 -0.330439) + (xy -4.38323 -0.366666) (xy -4.396111 -0.387229) (xy -4.397869 -0.391332) (xy -4.38991 -0.402658) + (xy -4.369115 -0.429838) (xy -4.336847 -0.471171) (xy -4.29447 -0.524956) (xy -4.243347 -0.589494) + (xy -4.184841 -0.663082) (xy -4.120314 -0.744022) (xy -4.051131 -0.830612) (xy -3.978653 -0.921152) + (xy -3.904246 -1.01394) (xy -3.844517 -1.088298) (xy -2.833511 -1.088298) (xy -2.827602 -1.075341) + (xy -2.813272 -1.053092) (xy -2.812225 -1.051609) (xy -2.793438 -1.021456) (xy -2.773791 -0.984625) + (xy -2.769892 -0.976489) (xy -2.766356 -0.96806) (xy -2.76323 -0.957941) (xy -2.760486 -0.94474) + (xy -2.758092 -0.927062) (xy -2.756019 -0.903516) (xy -2.754235 -0.872707) (xy -2.752712 -0.833243) + (xy -2.751419 -0.783731) (xy -2.750326 -0.722777) (xy -2.749403 -0.648989) (xy -2.748619 -0.560972) + (xy -2.747945 -0.457335) (xy -2.74735 -0.336684) (xy -2.746805 -0.197626) (xy -2.746279 -0.038768) + (xy -2.745745 0.140089) (xy -2.745206 0.325207) (xy -2.744772 0.489145) (xy -2.744509 0.633303) + (xy -2.744484 0.759079) (xy -2.744765 0.867871) (xy -2.745419 0.961077) (xy -2.746514 1.040097) + (xy -2.748118 1.106328) (xy -2.750297 1.16117) (xy -2.753119 1.206021) (xy -2.756651 1.242278) (xy -2.760961 1.271341) + (xy -2.766117 1.294609) (xy -2.772185 1.313479) (xy -2.779233 1.329351) (xy -2.787329 1.343622) + (xy -2.79654 1.357691) (xy -2.80504 1.370158) (xy -2.822176 1.396452) (xy -2.832322 1.414037) (xy -2.833511 1.417257) + (xy -2.822604 1.418334) (xy -2.791411 1.419335) (xy -2.742223 1.420235) (xy -2.677333 1.42101) (xy -2.59903 1.421637) + (xy -2.509607 1.422091) (xy -2.411356 1.422349) (xy -2.342445 1.4224) (xy -2.237452 1.42218) (xy -2.14061 1.421548) + (xy -2.054107 1.420549) (xy -1.980132 1.419227) (xy -1.920874 1.417626) (xy -1.87852 1.415791) (xy -1.85526 1.413765) + (xy -1.851378 1.412493) (xy -1.859076 1.397591) (xy -1.867074 1.38956) (xy -1.880246 1.372434) (xy -1.897485 1.342183) + (xy -1.909407 1.317622) (xy -1.936045 1.258711) (xy -1.93912 0.081845) (xy -1.942195 -1.095022) + (xy -2.387853 -1.095022) (xy -2.48567 -1.094858) (xy -2.576064 -1.094389) (xy -2.65663 -1.093653) + (xy -2.724962 -1.092684) (xy -2.778656 -1.09152) (xy -2.815305 -1.090197) (xy -2.832504 -1.088751) + (xy -2.833511 -1.088298) (xy -3.844517 -1.088298) (xy -3.82927 -1.107278) (xy -3.75509 -1.199463) + (xy -3.683069 -1.288796) (xy -3.614569 -1.373576) (xy -3.550955 -1.452102) (xy -3.493588 -1.522674) + (xy -3.443833 -1.583591) (xy -3.403052 -1.633153) (xy -3.385888 -1.653822) (xy -3.299596 -1.754484) + (xy -3.222997 -1.837741) (xy -3.154183 -1.905562) (xy -3.091248 -1.959911) (xy -3.081867 -1.967278) + (xy -3.042356 -1.997883) (xy -4.174116 -1.998133) (xy -4.168827 -1.950156) (xy -4.17213 -1.892812) + (xy -4.193661 -1.824537) (xy -4.233635 -1.744788) (xy -4.278943 -1.672505) (xy -4.295161 -1.64986) + (xy -4.323214 -1.612304) (xy -4.36143 -1.561979) (xy -4.408137 -1.501027) (xy -4.461661 -1.431589) + (xy -4.520331 -1.355806) (xy -4.582475 -1.27582) (xy -4.646421 -1.193772) (xy -4.710495 -1.111804) + (xy -4.773027 -1.032057) (xy -4.832343 -0.956673) (xy -4.886771 -0.887793) (xy -4.934639 -0.827558) + (xy -4.974275 -0.778111) (xy -5.004006 -0.741592) (xy -5.022161 -0.720142) (xy -5.02522 -0.716844) + (xy -5.028079 -0.724851) (xy -5.030293 -0.755145) (xy -5.031857 -0.807444) (xy -5.032767 -0.881469) + (xy -5.03302 -0.976937) (xy -5.032613 -1.093566) (xy -5.031704 -1.213555) (xy -5.030382 -1.345667) + (xy -5.028857 -1.457406) (xy -5.026881 -1.550975) (xy -5.024206 -1.628581) (xy -5.020582 -1.692426) + (xy -5.015761 -1.744717) (xy -5.009494 -1.787656) (xy -5.001532 -1.823449) (xy -4.991627 -1.8543) + (xy -4.979531 -1.882414) (xy -4.964993 -1.909995) (xy -4.950311 -1.935034) (xy -4.912314 -1.998133) + (xy -5.972197 -1.998133) (xy -6.275034 -1.998133) (xy -6.275001 -2.004383) (xy -6.274195 -2.106456) + (xy -6.27317 -2.195367) (xy -6.2719 -2.272059) (xy -6.27036 -2.337473) (xy -6.268524 -2.392551) + (xy -6.266367 -2.438235) (xy -6.263863 -2.475466) (xy -6.260987 -2.505187) (xy -6.257713 -2.528338) + (xy -6.254015 -2.545861) (xy -6.249869 -2.558699) (xy -6.245247 -2.567792) (xy -6.240126 -2.574082) + (xy -6.234478 -2.578512) (xy -6.228279 -2.582022) (xy -6.221504 -2.585555) (xy -6.215508 -2.589124) + (xy -6.210275 -2.5917) (xy -6.202099 -2.594028) (xy -6.189886 -2.596122) (xy -6.172541 -2.597993) + (xy -6.148969 -2.599653) (xy -6.118077 -2.601116) (xy -6.078768 -2.602392) (xy -6.02995 -2.603496) + (xy -5.970527 -2.604439) (xy -5.899404 -2.605233) (xy -5.815488 -2.605891) (xy -5.717683 -2.606425) + (xy -5.604894 -2.606847) (xy -5.476029 -2.607171) (xy -5.329991 -2.607408) (xy -5.165686 -2.60757) + (xy -4.98202 -2.60767) (xy -4.777897 -2.60772) (xy -4.566753 -2.607733) (xy -2.9464 -2.607733) (xy -2.9464 -2.510946) + ) + (stroke + (width 0.01) + (type solid) + ) + (fill yes) + (layer "F.SilkS") + (uuid "97a69a4f-4575-476d-9ef2-4fc00f7e3177") + ) + (embedded_fonts no) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "97c08510-2b31-4a76-a716-e360e2d0ff50") + (at 160.147 88.2948 180) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C12" + (at 0 -1.16 0) + (layer "F.SilkS") + (hide yes) + (uuid "085110d0-5e5e-4d91-8933-b47cbbd00022") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1uF" + (at 0 1.16 0) + (layer "F.Fab") + (uuid "5d47c93a-131a-467a-a478-655d7a3c55dd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05A105KA5NQNC_C52923.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3c73c25d-2838-48e3-80d4-1a30ce435c9d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "25V 1uF X5R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8c30606f-74f5-4045-bc77-d5f404ff0d84") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C52923" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fc80a23e-02ca-4872-b967-ff29a396ab3b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "7021828" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "58854691-5dbe-4d09-9a04-5ca222e3be8c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.006USD" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "18ee67fc-07b0-4cb5-87dc-4e035c1200f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dc47b15e-4a0e-4331-8cc8-cf2980ff94f4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b9366096-8517-4407-95e0-4449e25cf533") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b2facebb-bf58-4cac-81ec-c1365bc993c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8024a71d-4b2b-40f0-953c-d0dfdf545202") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "374f7a21-87ad-46dc-ab62-2af01f0ba06c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1749839d-38e6-45a5-8419-91121eaf6b76") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05A105KA5NQNC" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "60a8d32e-92bd-492e-83a3-935ad37e201b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "25V" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6613ee03-7968-49c6-90cb-cfb464f6d2cd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "99d02199-82ac-4196-9666-da98eaab5c87") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "1uF" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "44a15180-53da-45a1-a5d4-f7a79e38c18b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "X5R" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f2eaed12-1d4a-411b-a68f-a6623cf54379") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/bcbe8f1a-5af6-4292-a2d4-2486a90849d1") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "72fef34e-7ae2-485f-b90e-dd0d80bb7411") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "71269e42-03e4-4826-aafa-be967ed2bb45") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "f908d11b-c332-43ed-b2c1-c967a194488a") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "527aa863-b969-4dd9-a951-2a9f8de00be2") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "35be5f09-6a8f-42b1-985c-d1c4bb3bb882") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "dc42157b-d584-4457-b097-24b9be6934d2") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ddfa911c-38cc-4bc1-b875-1d18de9b3cfe") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f52c55bc-bef4-447d-bd7a-05987fcc737f") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "4af8b5f7-ba67-4dcf-b97d-54c5d1bf297e") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 180) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "cc791b05-135c-420c-9654-5c3b96fe0d70") + ) + (pad "2" smd roundrect + (at 0.499999 0 180) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "a3ac9c7b-5c86-4eb6-b067-034796429e69") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "ab9fb1ff-a0f3-402d-9c9e-da3d132335ef") + (at 163.322 62.103 90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C1" + (at 0 -1.16 90) + (layer "F.SilkS") + (hide yes) + (uuid "d5a81980-19de-4bb1-8cf1-d8c8742e86c3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1uF" + (at 0 1.16 90) + (layer "F.Fab") + (uuid "60ce2fa0-56a3-4d10-a9f0-cbc1141de963") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05A105KA5NQNC_C52923.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9061d08e-aaa4-4fc5-b32d-049e47d3bdd4") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "25V 1uF X5R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6d0e5051-3b05-4ebd-a74b-3954a9ed9b1d") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C52923" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "afff0984-d17d-4f09-b8b5-0c7e9d607008") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "7021828" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a1f690d9-1bd7-42ab-84a6-c62c5e494774") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.006USD" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d72dc355-7173-400e-8295-650b0775dfb1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "237d0d3c-adf6-4abd-93a3-632804e3ea43") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "32844d47-4ead-4cc0-9a06-fd33eda53fc0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e775b2eb-157f-40db-a22b-9e0d31cecd2a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "36ba5082-bff9-470b-a908-78e7e4dcf5ca") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c0a0a12f-c1ec-49d8-a53e-45557908c7ab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "87e5318d-d7b6-4cfc-a124-71e835d22466") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05A105KA5NQNC" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8d2f1145-ffc5-4e8e-8dcb-c3e6ebe37ca3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "25V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ff547358-8121-43fb-8d9e-0e6e79a90ee4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d2fac083-096a-4e57-bbf7-07539b376829") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "1uF" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "eb38f9e9-ec6b-41d0-abb8-7fd53821ee68") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "X5R" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "af94ab9a-ca51-42bb-9748-b638c8c7d873") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/7ae92b4c-5f3f-420c-a83e-c32bd8dfc9e5") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "c40cd7df-74e7-43c9-b3a6-4148182eb415") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "a0e5027a-223b-443d-bc0c-4fe019a3e52e") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "fd8fc67b-13bc-4818-ab81-4acd93201065") + ) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "3dc443e9-7b79-42db-ba06-f73a072259b5") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "04c1a2b0-3398-4de9-a70a-c421847e05f5") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d1aef30e-04fa-49cc-9f3d-f132826b2c91") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "7e246d32-49d2-4379-a9af-594139d3ff5f") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "3dc5fcdb-16b3-4279-960a-5b18b488da31") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "74471251-29a1-4f69-a7b2-16a550a69899") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 23 "+5V") + (pintype "passive") + (uuid "a3cfc2be-cefd-4dfa-9252-370737964868") + ) + (pad "2" smd roundrect + (at 0.499999 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "0129cf09-9d7a-4aa7-b973-fbfb92b0cd4c") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:R_0402" + (layer "F.Cu") + (uuid "aed71039-67bd-4490-8d10-ea4986c2b5c1") + (at 152.019 59.182 90) + (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R2" + (at -1.05 -0.85 90) + (layer "F.SilkS") + (hide yes) + (uuid "bf0f6484-00d9-472c-be1f-5fbcd5f20b8f") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left) + ) + ) + (property "Value" "5.1kΩ" + (at 0 0.2 90) + (layer "F.Fab") + (hide yes) + (uuid "a0bb9933-d6ca-49ed-b533-4a11e06f92e3") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2206010045_UNI-ROYAL-Uniroyal-Elec-0402WGF5101TCE_C25905.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "efba207b-df82-4d6e-b6b5-d558dec7aadb") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 5.1kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7ae65e84-da4d-4432-83c4-8b796f9aee58") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25905" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "25f9f638-a741-4fdc-9aeb-0fed0effd4c1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "3534773" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "05ad7a06-62b1-4ba4-b923-f227940b2c1e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "fe577843-415e-41b9-ac2c-ebdabed1bfb1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a8a9edc7-491a-43b8-9ffd-ce1b38ad13ba") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0bc74199-1326-412d-995d-fc3bf056bf8c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a02505bc-0493-441b-b0fe-b2199392a8ef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "182a129e-08f1-47e9-8498-8c592d22457d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c9a344ee-8c8a-4d05-9120-a11ab5d518c8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a0325515-18e2-48c7-8bc7-bc93695a9ca8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "0402WGF5101TCE" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6ae126b6-f169-4789-8877-929687335270") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Resistance" "5.1kΩ" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bae1579f-d28b-4a8c-8482-563cb7f59baf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d1aef790-c4b7-44df-aec8-b7be0c585cce") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "42bccd0b-6d38-4096-adee-c85356398102") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "53c742de-b696-4498-8644-f5ce29df5cef") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "66fc7920-dcfa-401f-a028-9dda81b3bd4d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dd78f338-72f9-46c0-a50e-1ef0bf0e06f7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7c8bbeb1-0e2f-4c92-b79d-1315eff8dcbb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/5e61580c-d450-419f-94cf-0c924368e6da") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "09d4e529-2d2b-4e89-8852-cf44f93c010d") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "30e9135a-44c4-46fd-8965-e732f4df22ce") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "54f49149-d425-4125-8e9a-836ab0061f3e") + ) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "8faef479-6918-4905-b669-44f693c057d1") + ) + (fp_rect + (start -0.53 -0.27) + (end 0.53 0.27) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "ec8a5179-8d03-4702-a30c-074fe8a8bc2e") + ) + (pad "1" smd roundrect + (at -0.5 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 9 "Net-(J1-CC2)") + (pintype "passive") + (uuid "2c76a9ec-dd7b-4e9a-abec-c287d381bac1") + ) + (pad "2" smd roundrect + (at 0.5 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "93f6cfc1-2f26-4c9a-9644-4b8ce45a6991") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/R_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:SW_TS-1088-AR02016" + (layer "F.Cu") + (uuid "b203722a-d47a-4986-88e5-ed89018c3ece") + (at 154.305 103.505 -90) + (property "Reference" "S2" + (at 0.425 -2.635 90) + (layer "F.SilkS") + (hide yes) + (uuid "a6c6ec8d-3470-46c1-a199-155c1120ff2d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "Tactile Button, 160gf" + (at -3.683 0 180) + (layer "F.Fab") + (uuid "4afbbb40-9390-4d4f-89d7-df7527019153") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_XUNPU-TS-1088-AR02016_C720477.pdf" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "4d63b749-af87-4fd6-871d-05213cbb4dba") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Without 50mA 4mm 100MΩ 100000 Times 12V 160gf 3mm 2mm Round Button Standing paste SPST SMD Tactile Switches ROHS" + (at 0 0 90) + (layer "F.Fab") + (hide yes) + (uuid "3c96b026-dbb0-4117-84c3-1fb3d18d9fce") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C720477" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "61e2ffcc-f345-4f1e-a2f1-7842b7b6d08b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "346801" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1e4b1f92-046f-46c5-ad7e-71d618932063") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.044USD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "18f52757-94fe-442a-b983-0d5dea6bb8fc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "86e90f88-d3cd-45c9-bd2a-d8398d5591e8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "5" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0173138b-c890-48e5-ae72-57dac59b5fbf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "4" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f41f81ba-069d-42c1-a51d-cb571202bc46") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f30f2363-15e6-408a-95ce-eeea317ba96b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Switches,Tactile Switches" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8df0f07b-104e-4f99-a41f-eb6e2c83d2f2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "XUNPU" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c82ebc71-2fc6-4e12-b03f-20d6d517aeeb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "TS-1088-AR02016" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4e59ea47-517c-4061-94a2-742fe66f3e0f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Switch Length" "4mm" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1c86493f-ec05-4457-9100-15311efb3c05") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rating (Dc)" "12V" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3535397f-fa9f-468a-81ff-f2ded4a7f282") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "With Lamp" "No" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bed18312-ecb8-493b-9395-73968cd60f38") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Force" "160gf@±50gf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5874eb09-9e5b-44ff-a019-ff3a7bcdbad3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Actuator/Cap Color" "Black" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "abb70264-92f6-460c-a6c4-0c8d99b8c0a5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Mechanical Life" "100000 Times" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "01696738-0717-4b04-8af2-b991a15fc46e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Strike Gundam" "NO" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a7cb8b4c-4c5d-402b-a59d-31b80867a4f4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Circuit" "SPST" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "838df510-a8ee-44e6-819f-7df954286d94") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Switch Height" "2mm" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c9fc84e4-56b8-4baf-914a-e4585a0bba4b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Actuator Style" "Round Button" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1268fef9-e89e-4925-b313-41a36a0b570a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Switch Width" "3mm" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9432ce21-1a5f-41e8-8e12-6df2d23264df") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Contact Current" "50mA" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "861baefc-68b9-4ce7-8584-77c5ccab02bc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature" "-30°C~+80°C" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6cf5e306-916e-4f80-955d-4057cf18658f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Mounting Style" "Brick nogging" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a571624d-5dd3-4888-b529-67ac13b6fee7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Insulation Resistance" "100MΩ" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9fa51cff-9168-418a-809e-9c1ca3ee4fe7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Pin Style" "SMDSplicing" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "558139e6-6d30-42fb-92e5-c64ab7f8aea8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (path "/c72c8a08-fec4-4da3-a8c5-b4ac3bb8e51b") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (attr smd) + (fp_line + (start -2 1.45) + (end -2 1.22) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "f5cf779e-190b-44f1-ac95-8012b860d0df") + ) + (fp_line + (start 2 1.45) + (end -2 1.45) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "6db9935d-7e3c-4f63-a525-83c908ab7ccd") + ) + (fp_line + (start 2 1.45) + (end 2 1.22) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "155e524f-6c5b-40e5-8d7b-4136bcac15d2") + ) + (fp_line + (start -2 -1.22) + (end -2 -1.45) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "f1975276-fbc4-4b3b-a508-370d02a5553e") + ) + (fp_line + (start -2 -1.45) + (end 2 -1.45) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "7bf6cd2d-027c-4948-831f-f9145ce9c68e") + ) + (fp_line + (start 2 -1.45) + (end 2 -1.22) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.SilkS") + (uuid "cb3fa726-afc6-4852-8df2-3d84d6240751") + ) + (fp_line + (start -3 1.7) + (end 3 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "0a51a2df-4f60-4aa2-b104-c484ecc1cacb") + ) + (fp_line + (start 3 1.7) + (end 3 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ef3f1881-07ee-414d-8d8f-b672f08786f8") + ) + (fp_line + (start -3 -1.7) + (end -3 1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "5b59b647-1644-4e42-97d4-12c2be7786d6") + ) + (fp_line + (start 3 -1.7) + (end -3 -1.7) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "ba329c13-ae05-4d22-8e40-d7e3a974bb0d") + ) + (fp_line + (start 2 1.45) + (end -2 1.45) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "b38a2408-cdbd-4c5d-80f9-c801f5424e6e") + ) + (fp_line + (start -2 -1.45) + (end 2 -1.45) + (stroke + (width 0.127) + (type solid) + ) + (layer "F.Fab") + (uuid "7295455a-dac3-40c3-9641-7e9916225fa3") + ) + (pad "1" smd roundrect + (at -2.075 0 270) + (size 1.35 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1851851852) + (net 12 "/BOOT0") + (pinfunction "A") + (pintype "unspecified") + (solder_mask_margin 0.102) + (uuid "4952bf14-77e7-4348-b86e-fc06a73ef763") + ) + (pad "2" smd roundrect + (at 2.075 0 270) + (size 1.35 1.8) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.1851851852) + (net 3 "+3.3V") + (pinfunction "B") + (pintype "unspecified") + (solder_mask_margin 0.102) + (uuid "cee7f102-1cc9-461c-ae7e-b7ffaaf1ee1a") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/TS-1088-AR02016.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz -90 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:R_0402" + (layer "F.Cu") + (uuid "bd4fec19-b8e6-4313-8387-546eb94d1c50") + (at 159.258 70.231) + (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R3" + (at -1.05 -0.85 0) + (layer "F.SilkS") + (hide yes) + (uuid "3d5312ff-ced1-4aa0-8450-1819bb1e42a5") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify left) + ) + ) + (property "Value" "150Ω" + (at 0 0.2 0) + (layer "F.Fab") + (hide yes) + (uuid "b2af5e46-9fb4-4c98-bd53-323052516b47") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2205311900_UNI-ROYAL-Uniroyal-Elec-0402WGF1500TCE_C25082.pdf" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e9fec805-4d85-47e8-a347-4b71713c391c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 150Ω 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "400c008e-fcce-42d1-9318-410b19d53bcf") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25082" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "7bf78c2c-eaf2-4486-93a4-9db5a5d3a65b") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "487873" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3178bb23-a459-430a-9090-7c28e1521627") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "58b23de3-2a7a-45a5-b2d2-860a40667b17") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "68a2c70b-7d50-43e1-8012-7d9d8d137a6d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5a4a622e-72a8-48a5-9432-2272b99e4f99") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a3e99621-d478-47ff-8f54-bd29b5e9c650") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Preferred Component" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "92e3eb93-c0c9-410a-8394-390605d0e69c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8fbc9fce-ed0e-4fda-879d-1945af0d21b7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8516bd43-b6a4-4f9f-8151-345986f137db") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "0402WGF1500TCE" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c7f8a99f-7fbc-4da7-8513-4b05c176ce49") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Resistance" "150Ω" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b8092e0f-f0e8-4c14-acdd-d52e385be448") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "310d6e95-2339-4359-afb5-9f4231fc2eb0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f27c8287-8e45-48c5-a2d9-e4b14948c752") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "32e1b138-6cd0-44fd-9d45-7cd9a7df7361") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "da05364c-11b1-456f-b80d-c5e95c211498") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e9ea5966-a9f3-450f-a376-48ae0aa014f2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 0) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ff7fb0d3-2b36-48f8-9d60-6ca8a2d6621d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/d43f48d3-dab1-4541-9308-2edba287c78f") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "be27a567-e72a-4f49-81fc-6ec87de9a2eb") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "a594bd84-e5e4-46d7-bf39-efca426d52f3") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "1696fd1a-3f46-4b1a-8cb6-63c0300504f7") + ) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "e09e6bc7-1ffc-407f-905c-792c219146a9") + ) + (fp_rect + (start -0.53 -0.27) + (end 0.53 0.27) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "4c789977-fe0c-4803-ac75-d919fcef0be8") + ) + (pad "1" smd roundrect + (at -0.5 0) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 48 "Net-(D1-Pad1)") + (pintype "passive") + (uuid "eb4173b7-231b-47d4-8a08-6648ea262c70") + ) + (pad "2" smd roundrect + (at 0.5 0) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "bfd39036-724b-413b-9607-5c54ad8c1614") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/R_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (layer "F.Cu") + (uuid "c800cf99-b37b-4608-99b7-3c8ca0798ae0") + (at 152.4 73.533 180) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Reference" "J5" + (at 0 0 90) + (layer "Dwgs.User") + (uuid "34398f64-ab1a-445e-aee3-9689e06468fd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "SWD" + (at 0 7.460001 0) + (layer "F.Fab") + (uuid "cf0adede-36dc-4f97-9c8f-d1be965044b5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "775e33af-50f0-43ff-8e0a-257d6cd825c5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (layer "F.Fab") + (hide yes) + (uuid "d35d8975-b789-4940-8705-a5a4a62b542e") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/9a40e419-520e-41ff-a3cb-b6a82cbf5ce9") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (attr through_hole exclude_from_pos_files exclude_from_bom) + (fp_line + (start 1.38 1.27) + (end 1.38 6.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "a7de20ed-61ed-448d-9ef4-4a2499b20a5b") + ) + (fp_line + (start -1.38 6.46) + (end 1.38 6.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "7bc5740e-1780-4d5e-b2f1-1cbac8d01932") + ) + (fp_line + (start -1.38 1.27) + (end 1.38 1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b65adcb6-4ea9-4f91-b490-b27ea508dfba") + ) + (fp_line + (start -1.38 1.27) + (end -1.38 6.46) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "121920c3-2551-405e-9183-f8e878c9d3d5") + ) + (fp_line + (start -1.38 0) + (end -1.38 -1.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "884e280a-b169-4ea5-aefb-b4863a1a59e3") + ) + (fp_line + (start -1.38 -1.38) + (end 0 -1.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "F.SilkS") + (uuid "b897ea91-36a7-4cde-a738-610b167bdc4c") + ) + (fp_line + (start 1.77 6.85) + (end 1.77 -1.77) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "88bbabe2-96ed-447f-b0bf-b11f3914f1cc") + ) + (fp_line + (start 1.77 -1.77) + (end -1.77 -1.77) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "36870f65-ab92-451c-9036-ecc8be709815") + ) + (fp_line + (start -1.77 6.85) + (end 1.77 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "629fc286-f82a-4583-b203-b02791568d78") + ) + (fp_line + (start -1.77 -1.77) + (end -1.77 6.85) + (stroke + (width 0.05) + (type solid) + ) + (layer "F.CrtYd") + (uuid "fe8305cb-c28a-4f5f-8d4d-600327981e2f") + ) + (fp_line + (start 1.27 6.35) + (end -1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f4a1a856-be42-4ea7-b502-5258da31162a") + ) + (fp_line + (start 1.27 -1.27) + (end 1.27 6.35) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d855c30b-fc7f-479d-bb68-5984a9d8eeb9") + ) + (fp_line + (start -0.635 -1.27) + (end 1.27 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f1fcc527-263f-4b68-83ff-e093b357cdc8") + ) + (fp_line + (start -1.27 6.35) + (end -1.27 -0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "0ede49cd-1451-4996-a987-d64acaff0c2b") + ) + (fp_line + (start -1.27 -0.635) + (end -0.635 -1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "f9944617-9c6a-41db-a304-cc78dde6bda5") + ) + (fp_text user "${REFERENCE}" + (at 0 2.54 90) + (layer "F.Fab") + (uuid "a752eef3-0ed5-4a6e-a74b-371ca56fd3e7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (pad "1" thru_hole rect + (at 0 0 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 24 "/PA14_SWCLK") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "20b5c111-b606-4020-ad96-8dbb23f3b995") + ) + (pad "2" thru_hole circle + (at 0 2.54 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "3d133589-a4b6-4879-8c03-34406c681dd8") + ) + (pad "3" thru_hole circle + (at 0 5.08 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 25 "/PA13_SWDIO") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "f7a9d93b-2968-434a-8b80-24f9ce63da75") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:R_0402" + (layer "F.Cu") + (uuid "d1d574cc-6605-4221-aa07-4eba9b092dec") + (at 157.861 87.884 -90) + (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R4" + (at -1.05 -0.85 90) + (layer "F.SilkS") + (hide yes) + (uuid "53feeecf-3f29-4623-9ae3-da08e25c662f") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify right) + ) + ) + (property "Value" "330Ω" + (at 0 0.199999 90) + (layer "F.Fab") + (hide yes) + (uuid "8aae44fc-07f5-48d3-9062-5a4ff6b72d2a") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2205311900_UNI-ROYAL-Uniroyal-Elec-0402WGF3300TCE_C25104.pdf" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4501ab2b-f6d5-4712-8860-83b979f8d824") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 330Ω 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "482dff95-e954-4612-8569-8f1111d958c5") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25104" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bcc98da1-3b93-417c-81db-9779ad33faf0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "1159127" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6fc12dbb-0727-4e76-9f36-f1dae2ef4efb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b71842eb-6ca1-4e35-a2ea-c2e9aa29e187") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3de1e659-80b2-42e1-acfc-b51b0c55a383") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "22ff071d-6a38-45ad-a014-2cc166a716a6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e4893282-e4a2-448a-9f51-8714bb84e860") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "32721c8a-b2aa-45f7-b0a9-b6fff5b6d089") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "258e5e51-1650-4bec-bebe-763af1fa572e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "70cea4d5-d3b9-40f2-9322-1f570235cc93") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "0402WGF3300TCE" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a1a07d24-d4be-459f-907f-8ea3b123dc5c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Resistance" "330Ω" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a2e94ba7-829a-4ab6-9989-94cb87a533f0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "896418bf-5d23-4047-ac2f-d55f8cc16923") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9b159ec3-93f0-4e04-b19f-966dddc89229") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3cbf9746-1e68-4bbc-8de2-14fc1e3eb516") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d697d84d-e598-438e-9a35-c5a56bbd30c0") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "29784590-a0eb-431f-a909-856975e511d2") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 270) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "bfd85c01-fc5f-40a9-ae3b-72670bc31b39") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/d049b135-eff4-453b-a00b-9412484f45c7") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "e70a0ed3-7f3b-4665-893d-399738b133b6") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "dc6de687-cd8f-4702-b25c-86216375df32") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "cbc26b8d-074b-4a9a-babe-b6dce4075484") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "9cc71d6f-fa42-46b3-a8a1-883d011d98df") + ) + (fp_poly + (pts + (xy -0.53 -0.27) (xy 0.53 -0.27) (xy 0.53 0.27) (xy -0.53 0.27) + ) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "e1f9036f-6df5-4dd3-85eb-6ac1316126a0") + ) + (pad "1" smd roundrect + (at -0.499999 0 270) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 7 "Net-(U1-PD1)") + (pintype "passive") + (uuid "a549e026-8c8f-4a21-bd9f-e5b9f96f2ea8") + ) + (pad "2" smd roundrect + (at 0.499999 0 270) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 49 "Net-(C10-Pad2)") + (pintype "passive") + (uuid "c8928f18-fd67-4954-b353-72e96b0756bd") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/R_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "ddc4d02d-5a3f-4393-b9a3-45609e0db883") + (at 150.749 84.1756 90) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C7" + (at 0 -1.16 90) + (layer "F.SilkS") + (hide yes) + (uuid "c63c654b-fb98-41e7-b14f-35bda56e3213") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "4.7uF" + (at 0 1.16 90) + (layer "F.Fab") + (uuid "6593232b-e939-4a59-9fca-921016bf2710") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05A475MP5NRNC_C23733.pdf" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "767a303f-f144-4653-95a4-94725d0315fd") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "10V 4.7uF X5R ±20% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4311c751-f1bc-4c56-84cf-826214fa4c6c") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C23733" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "869761d2-3725-485d-b3c8-c4a1046ec294") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "4366811" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "87097750-bfbf-4ec0-9e0d-ee69a498fc40") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.008USD" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "eb564680-44e4-4474-a0b5-77e291f48f00") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0d28ffde-9013-4201-b9b5-d68ce2b3833d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "730ed975-fee7-4fcc-9aab-83e9803cba75") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a52f9cbe-e179-4db9-af29-1da7631babeb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a5caebb6-105f-4b4e-a291-1b75d9453f86") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "95e4487e-7bd6-485d-bb47-0e573d182e63") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5de1bce1-42c1-4871-9223-891028ba96ba") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05A475MP5NRNC" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c29d2415-5f28-43f0-9642-306390a2e890") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "10V" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "d3d29e56-5620-4b8d-94ad-2cc619f99735") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±20%" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f9c42a01-5fa4-473f-932f-da9550924797") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "4.7uF" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "701e53ff-3407-4412-b3e0-64f4fc2a277e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "X5R" + (at 0 0 90) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8ab0c345-6800-4ba1-ba36-5223642c2052") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/6741f408-43c0-4bab-bcf5-b222df19f09e") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "1c0dd99b-89fc-4488-a06c-1e08415b7cf9") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "9197c397-3e1c-464a-b505-894ae8b2bce3") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "68101f0c-fb7c-47df-984e-b6df71751e2f") + ) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "e1569775-afd3-4fa3-8dea-1404fe1da791") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "eeb73bce-bd3b-4c4e-8f03-424e278fcd3b") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d5045bde-4540-4cf0-a23b-184d31e999c7") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9d221026-465f-4983-9a85-4014d2cce026") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b1397169-7585-466f-a893-a47dbcc48fe2") + ) + (fp_text user "${REFERENCE}" + (at 0 0 90) + (layer "F.Fab") + (uuid "9936e89d-c1fe-461a-9ffb-69849980fd08") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "4e17296d-c689-4fb0-9650-f1a8cfc61010") + ) + (pad "2" smd roundrect + (at 0.499999 0 90) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "120d80a0-417b-4175-92f6-9f1674be6a34") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "ece3ffab-0287-4f97-98db-5a078ab92454") + (at 162.687 67.437 180) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C2" + (at 0 -1.16 0) + (layer "F.SilkS") + (hide yes) + (uuid "03cafdff-6dc1-485b-bd11-fa01e06a52dc") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "1uF" + (at 0 1.16 0) + (layer "F.Fab") + (uuid "dff78efe-cce4-42e9-bd89-00c01fb6e540") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05A105KA5NQNC_C52923.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3dc14008-c7a0-427b-83c3-3ad08872a2f1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "25V 1uF X5R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ee034504-54a1-4e97-8051-5109848258b1") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C52923" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "05d2d9c6-e1a4-45b2-8eba-b2ea4cf5b064") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "7021828" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "ae6fcb3e-2887-4eff-85aa-bade46eec51d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.006USD" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0279b828-55bf-4b83-90d3-0fe9e616d8c8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1572db3f-eb46-4eac-ad0f-b3832d491738") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a4087fd0-e8a4-4908-afc6-6c14b41dd715") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "011e23ff-854e-46cc-a82b-f3cba42808ed") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3eff151f-5ea2-42f3-82b3-72bb9f3d45d7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3986b945-1884-4f11-ae42-909f342d8588") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "28f80b68-31ca-461d-896f-2a655b28c5ed") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05A105KA5NQNC" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "21717708-6f3f-457d-b902-02f529e44ce6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "25V" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "efad839c-6c64-4237-8863-85d06902903e") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2509ee55-6f82-4136-bede-69a51b4267bf") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "1uF" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "82e45f6e-05f4-415d-980f-8f781c48406a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "X5R" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c3d27027-fb5f-4976-829b-06bc6c412e1d") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/48691ab3-0bb5-42e6-b001-3ff9117c3078") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "fc75a172-d96e-436b-8e77-bde5be96692f") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "ddff9579-dfbf-4405-a2ce-6e9723023dc9") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "d2944bb8-ec46-44d3-90d2-fedb5944919e") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "3889b2de-427e-4bc4-9516-5d34bb777dd5") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "ad9f71d6-d4df-46c1-b19b-9a8d2ad4889c") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "fb0af506-98b6-4932-aa60-3a832c6d76de") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "9febe737-7d6a-431b-9a45-a2bbb47c2b6a") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "6964d8d6-cc57-4d92-82d9-dab800478789") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "e9cca5ae-38d0-49b9-8e3e-e40e5cb46000") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.5 0 180) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "8276c0e8-ec8a-45d8-9e97-365444e49359") + ) + (pad "2" smd roundrect + (at 0.5 0 180) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (zone_connect 2) + (uuid "8a05834c-e348-40ff-b668-031652defab6") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:C_0402" + (layer "F.Cu") + (uuid "f6c778c0-bf55-4874-8858-c335870b610f") + (at 159.385 87.249 180) + (descr "Capacitor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 76, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "capacitor") + (property "Reference" "C3" + (at 0 -1.16 0) + (layer "F.SilkS") + (hide yes) + (uuid "bebd2237-e2d4-4d88-8bf2-f92b374d1dab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Value" "100nF" + (at 0 1.16 0) + (layer "F.Fab") + (uuid "a0609c2e-ca2e-4a37-9b7d-eae1a7e9dc95") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "39868ece-2188-4906-b649-b68be3515e57") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c45da5c7-5ddb-4c7e-ad26-4a38cfc08e20") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C1525" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "59eb5699-5b55-418e-a5b5-1eec7faf1846") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "20208285" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3b8bd68a-2aa6-4074-aef6-1a770c2dd1c8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "9f016f63-1764-4113-a9c9-bbf11a02459c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "f61996e3-c365-4864-9f7b-43dbf44a3cf3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "3b513be8-a3ac-46e4-8542-9febfe99aa5c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "47ba6864-4899-40e2-b752-592f7d0b9ef1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "735cebe3-083a-4113-8f81-9417f3ace69a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "82edb375-5b77-4b3e-95c0-ffda3a684eab") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "c6480ec0-4c85-4ac6-996c-cb105e6052db") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "5f3557c2-7b64-4f0f-82a7-ed5c2b0c5cdb") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Voltage Rated" "16V" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "0068c096-a49e-4a4f-ab48-7b27788fa029") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "28b08381-3e79-4f2b-82aa-55ec5b480538") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Capacitance" "100nF" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "8dbcd199-b0f1-4efc-8be1-7f9860ee77f4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 0 0 180) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2a39507b-1f42-4894-ae4e-c2b2d89b84ca") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "C_*") + (path "/59122927-71c3-4f2a-8f13-1a16ec89fe54") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (attr smd) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "6e94b813-9dd3-42cd-88b9-2e09511e2af5") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "74c1640f-d904-4ef1-8595-f47e6f18bd49") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "8809cf51-fae3-4c77-bb3d-789072ca75b3") + ) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "915c32c9-bfd8-48de-827f-25e18e13168b") + ) + (fp_line + (start 0.5 0.25) + (end -0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "71ddbf2c-cad5-440d-b27b-8785e9539c38") + ) + (fp_line + (start 0.5 -0.25) + (end 0.5 0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "b395a3d6-303c-4e6e-bac4-a751ceffadca") + ) + (fp_line + (start -0.5 0.25) + (end -0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "d29d0cb9-cb3e-4a4b-bece-0a5410368409") + ) + (fp_line + (start -0.5 -0.25) + (end 0.5 -0.25) + (stroke + (width 0.1) + (type solid) + ) + (layer "F.Fab") + (uuid "2cf9c8e0-eb43-4b1b-9306-82479b4cc2bb") + ) + (fp_text user "${REFERENCE}" + (at 0 0 0) + (layer "F.Fab") + (uuid "f56450f8-bafe-4886-972d-037a40b95146") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (pad "1" smd roundrect + (at -0.499999 0 180) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 3 "+3.3V") + (pintype "passive") + (uuid "1ec098e2-4a10-4c6b-9d90-2d0d52a9b5c4") + ) + (pad "2" smd roundrect + (at 0.499999 0 180) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "466387a2-56a9-4bc1-8085-71680690f572") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/C_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "PCM_JLCPCB:R_0402" + (layer "F.Cu") + (uuid "f89d1753-3590-4d0d-bfad-548d9dbddc9e") + (at 163.322 81.026 -45) + (descr "Resistor SMD 0402 (1005 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: IPC-SM-782 page 72, https://www.pcb-3d.com/wordpress/wp-content/uploads/ipc-sm-782a_amendment_1_and_2.pdf), generated with kicad-footprint-generator") + (tags "resistor") + (property "Reference" "R8" + (at -1.05 -0.85 135) + (layer "F.SilkS") + (hide yes) + (uuid "d38f6276-39b6-4f64-9019-38bc2eeb49c1") + (effects + (font + (size 0.8 0.8) + (thickness 0.15) + ) + (justify right) + ) + ) + (property "Value" "10kΩ" + (at 0 0.199999 135) + (layer "F.Fab") + (hide yes) + (uuid "336034d7-ca3f-44c3-836b-cbabb25b90ff") + (effects + (font + (size 0.25 0.25) + (thickness 0.04) + ) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2411221126_UNI-ROYAL-Uniroyal-Elec-0402WGF1002TCE_C25744.pdf" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "69abea74-8bde-412c-80d5-48d6cb56080f") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 10kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "6967230d-33f1-461a-aa37-b84ead256447") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + ) + ) + (property "LCSC" "C25744" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "27a9a4b1-c395-4fa6-996f-8cc7f24d621a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Stock" "24372091" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "2bd78578-fa15-4ff1-816a-8d0859ccfac5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Price" "0.004USD" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1faef9e4-607d-450e-8c7d-e8d00b6473e7") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Process" "SMT" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "26353e86-7e2b-498b-9818-0d938fedab8a") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "13ceec61-8ea1-481c-b2a5-86e3a71049b1") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "df8ddadf-977b-4d7d-8327-42065a92ce4f") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Class" "Basic Component" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "799854ec-2fe8-428f-b7c9-5768c8fd1a4c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e8142f25-08f3-4713-96d2-639ca19567dd") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "83e80af0-fdbc-4e53-9a79-1d150695a9b6") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Part" "0402WGF1002TCE" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dc033616-90f2-4701-8bde-f10541f27da8") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Resistance" "10kΩ" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "b6c258f8-73a0-409c-a1d3-f6d804ecbc90") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a461972d-6fac-4142-beeb-055a0a071404") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "4d5b3d3f-1d3d-4d2c-8078-e45d07820984") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "dcb28cea-a03a-4a57-802c-9e256e5d3962") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "a9cbd009-e53d-4b6c-ab1c-62bfe3124fc9") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "1bfe0bae-c224-45c3-8cab-4827765add5c") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 315) + (unlocked yes) + (layer "F.Fab") + (hide yes) + (uuid "e07beb62-a409-4130-90e8-a9e46f71af64") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property ki_fp_filters "R_*") + (path "/c0595355-ac0c-41de-927b-d94f40e55e7b") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (solder_mask_margin 0.038) + (fp_line + (start -0.9 -0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "777c7df6-1aa3-46ba-81c3-c2efc808db61") + ) + (fp_line + (start -0.9 -0.4) + (end 0.9 -0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "09ac13f6-0b0d-4966-8f79-b8e47e30387d") + ) + (fp_line + (start 0.9 0.4) + (end -0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "8cf6c2d6-fba6-4cf9-ac1e-b270dbc3bcdc") + ) + (fp_line + (start 0.9 -0.4) + (end 0.9 0.4) + (stroke + (width 0.05) + (type default) + ) + (layer "F.CrtYd") + (uuid "27274406-47a2-4a63-a55a-e5dc507eb90d") + ) + (fp_poly + (pts + (xy -0.53 -0.27) (xy 0.53 -0.27) (xy 0.53 0.27) (xy -0.53 0.27) + ) + (stroke + (width 0.05) + (type solid) + ) + (fill no) + (layer "F.Fab") + (uuid "0fff4fbc-c706-4e98-95c4-fa9a7526ce0a") + ) + (pad "1" smd roundrect + (at -0.499999 0 315) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 15 "/PB2_BOOT1") + (pintype "passive") + (uuid "4baf574b-849d-47e6-81ba-99cf01f5d6b6") + ) + (pad "2" smd roundrect + (at 0.499999 0 315) + (size 0.56 0.62) + (layers "F.Cu" "F.Mask" "F.Paste") + (roundrect_rratio 0.25) + (net 1 "GND") + (pintype "passive") + (uuid "3a139d46-28e3-4446-a4a9-5044f617c48b") + ) + (embedded_fonts no) + (model "${KICAD8_3RD_PARTY}/3dmodels/com_github_CDFER_JLCPCB-Kicad-Library/JLCPCB.3dshapes/R_0402.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x20_P2.54mm_Vertical" + (layer "B.Cu") + (uuid "4723c8ea-a607-4963-99d7-c8367d0cb278") + (at 166.37 57.155 180) + (descr "Through hole straight pin header, 1x20, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x20 2.54mm single row") + (property "Reference" "J4" + (at 0 2.38 0) + (layer "B.SilkS") + (uuid "030fa4b9-8323-4fc5-be73-4fa1cbe5f315") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Conn_Right" + (at 0 -50.64 180) + (layer "F.Fab") + (uuid "39fc2d37-bf1e-4f15-8b9c-e53a97770591") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "ad99e498-f4d1-416b-845a-3bf3b1feddc7") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Description" "Generic connector, single row, 01x20, script generated" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "bfba8c5f-865a-4718-ad53-5ca94c17fb90") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/4265689d-8b0e-492b-b28a-4ee4f8c54ca4") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (attr through_hole exclude_from_pos_files exclude_from_bom) + (fp_line + (start 1.38 -1.27) + (end 1.38 -49.64) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "da576e4c-116c-4f5a-bcce-b51792c910e1") + ) + (fp_line + (start -1.38 1.38) + (end 0 1.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "13255cb2-c245-42b5-abf4-face72bc12b3") + ) + (fp_line + (start -1.38 0) + (end -1.38 1.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "5e277887-6ba3-4f66-b54c-a27bc4cac0b5") + ) + (fp_line + (start -1.38 -1.27) + (end 1.38 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "fc5215e0-c2f1-4863-98ce-af4772684982") + ) + (fp_line + (start -1.38 -1.27) + (end -1.38 -49.64) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "90ac9ed9-9dfc-4261-a00c-35409ea328e4") + ) + (fp_line + (start -1.38 -49.64) + (end 1.38 -49.64) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "4acbd8b7-e497-48b6-80b1-643cdeaac55c") + ) + (fp_line + (start 1.77 1.78) + (end -1.77 1.78) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "5d6096e1-4dce-4097-a11e-75c2341cf130") + ) + (fp_line + (start 1.77 -50.03) + (end 1.77 1.78) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "17a7acb8-b275-4544-88da-d3922da01e28") + ) + (fp_line + (start -1.77 1.78) + (end -1.77 -50.03) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "14a96570-a2e0-4d59-9719-05324c035727") + ) + (fp_line + (start -1.77 -50.03) + (end 1.77 -50.03) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "d2150076-3fe6-446f-9f76-f78b828a90b9") + ) + (fp_line + (start 1.27 1.27) + (end 1.27 -49.53) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "c881fc13-e9e7-4ed8-9621-deae3f82509a") + ) + (fp_line + (start 1.27 -49.53) + (end -1.27 -49.53) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "01563440-c159-453b-85af-4f76d80b5914") + ) + (fp_line + (start -0.635 1.27) + (end 1.27 1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "06ee5a12-97fd-4fac-92da-91fba74e7aac") + ) + (fp_line + (start -1.27 0.635) + (end -0.635 1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "3f720260-594e-4ba8-9d2c-e2dab0d171f0") + ) + (fp_line + (start -1.27 -49.53) + (end -1.27 0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f6ab3b0d-7447-4104-b0d0-ca3b70345372") + ) + (fp_text user "${REFERENCE}" + (at 0 -24.13 90) + (layer "B.Fab") + (uuid "c721e074-66d2-48da-82a3-38cbf7a834c4") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" thru_hole rect + (at 0 0 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 2 "VBUS") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "a2aebcea-dc05-43bf-a62c-6dca48549739") + ) + (pad "2" thru_hole circle + (at 0 -2.54 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 23 "+5V") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "92b9c952-cbee-43c3-bec6-131a089ab58e") + ) + (pad "3" thru_hole circle + (at 0 -5.08 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "d8dd62dc-b674-4c7c-8c10-f4cb1e6d2d73") + ) + (pad "4" thru_hole circle + (at 0 -7.62 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 3 "+3.3V") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "0ca38b21-bafd-4bf2-8abe-3994d5a040f0") + ) + (pad "5" thru_hole circle + (at 0 -10.16 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 47 "/nRST") + (pinfunction "Pin_5") + (pintype "passive") + (uuid "b1a3ac04-e80c-4aef-a350-9dcd39a72bde") + ) + (pad "6" thru_hole circle + (at 0 -12.7 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 40 "/PB15") + (pinfunction "Pin_6") + (pintype "passive") + (uuid "989a77cf-89f0-487e-b48b-ff99a26e0924") + ) + (pad "7" thru_hole circle + (at 0 -15.24 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 43 "/PB14") + (pinfunction "Pin_7") + (pintype "passive") + (uuid "411aa561-0e15-4a82-b253-09528e302340") + ) + (pad "8" thru_hole circle + (at 0 -17.78 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_8") + (pintype "passive") + (uuid "4bb9c0a2-034c-4e04-a26f-22c2546bcfab") + ) + (pad "9" thru_hole circle + (at 0 -20.32 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 42 "/PB13") + (pinfunction "Pin_9") + (pintype "passive") + (uuid "3f659f97-c157-4873-ba6c-effd7e018380") + ) + (pad "10" thru_hole circle + (at 0 -22.86 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 44 "/PB12") + (pinfunction "Pin_10") + (pintype "passive") + (uuid "4ea5856e-0cee-4e70-b207-2d366cc0027e") + ) + (pad "11" thru_hole circle + (at 0 -25.4 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 41 "/PB11") + (pinfunction "Pin_11") + (pintype "passive") + (uuid "90b3065d-d564-4543-8e76-25f624590a6f") + ) + (pad "12" thru_hole circle + (at 0 -27.94 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 39 "/PB10") + (pinfunction "Pin_12") + (pintype "passive") + (uuid "9dff9f04-6c9b-44e9-b970-008eefdf6d48") + ) + (pad "13" thru_hole circle + (at 0 -30.48 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_13") + (pintype "passive") + (uuid "ff1cb34f-a35d-4cdf-a4f1-b1ef61e5659e") + ) + (pad "14" thru_hole circle + (at 0 -33.02 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 45 "/PB1") + (pinfunction "Pin_14") + (pintype "passive") + (uuid "fd809d94-4a89-40c0-a84e-467caac75645") + ) + (pad "15" thru_hole circle + (at 0 -35.56 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 46 "/PB0") + (pinfunction "Pin_15") + (pintype "passive") + (uuid "d79157e8-95f9-45aa-b890-448bce201dbd") + ) + (pad "16" thru_hole circle + (at 0 -38.1 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 35 "/PA7") + (pinfunction "Pin_16") + (pintype "passive") + (uuid "f40a46b2-32d8-4b8a-b9cb-adf10aac0853") + ) + (pad "17" thru_hole circle + (at 0 -40.64 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 32 "/PA6") + (pinfunction "Pin_17") + (pintype "passive") + (uuid "bfdbccb5-f245-49e4-a7db-17ab8d37304e") + ) + (pad "18" thru_hole circle + (at 0 -43.18 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_18") + (pintype "passive") + (uuid "2db891e2-29e8-4dcd-a64b-7ab34fd1a632") + ) + (pad "19" thru_hole circle + (at 0 -45.72 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 36 "/PA5") + (pinfunction "Pin_19") + (pintype "passive") + (uuid "c13e03d4-5426-4b74-b545-8fb32e4c0385") + ) + (pad "20" thru_hole circle + (at 0 -48.26 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 29 "/PA4") + (pinfunction "Pin_20") + (pintype "passive") + (uuid "8ad5329d-05c1-4958-8c55-584281ba8bb5") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x20_P2.54mm_Vertical.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x20_P2.54mm_Vertical" + (layer "B.Cu") + (uuid "d48342fc-672c-4d86-87e7-048be0553792") + (at 148.59 57.15 180) + (descr "Through hole straight pin header, 1x20, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x20 2.54mm single row") + (property "Reference" "J3" + (at 0 2.38 0) + (layer "B.SilkS") + (uuid "23be274e-0bb5-4aef-adfe-e8dc3e8ef372") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Value" "Conn_Left" + (at 0 -50.64 180) + (layer "F.Fab") + (uuid "abfc1416-6dba-4abb-ab69-4737c2f0c4f3") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + ) + ) + (property "Datasheet" "~" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "52ec7614-25f4-4c22-8bd3-f2f11ee19862") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property "Description" "Generic connector, single row, 01x20, script generated" + (at 0 0 0) + (layer "B.Fab") + (hide yes) + (uuid "b6cf441f-2ad9-47bb-ac07-7d951e9cc5be") + (effects + (font + (size 1.27 1.27) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (property ki_fp_filters "Connector*:*_1x??_*") + (path "/81a393dc-75dd-4fcc-84ef-b0e2f3bad71a") + (sheetname "/") + (sheetfile "mini-stm-board.kicad_sch") + (attr through_hole exclude_from_pos_files exclude_from_bom) + (fp_line + (start 1.38 -1.27) + (end 1.38 -49.64) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "62cfb8a3-c5df-4b48-8d54-0d53caa109dd") + ) + (fp_line + (start -1.38 1.38) + (end 0 1.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "33609ca8-a8a2-41cc-ba5a-f5914f3a5bc4") + ) + (fp_line + (start -1.38 0) + (end -1.38 1.38) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "adfa8a12-3f10-409d-a458-06c84995928d") + ) + (fp_line + (start -1.38 -1.27) + (end 1.38 -1.27) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "10d0910c-4de6-455b-ba21-f7df5022c240") + ) + (fp_line + (start -1.38 -1.27) + (end -1.38 -49.64) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "ece72829-3a1d-47c1-b37d-cbfdeb3937a7") + ) + (fp_line + (start -1.38 -49.64) + (end 1.38 -49.64) + (stroke + (width 0.12) + (type solid) + ) + (layer "B.SilkS") + (uuid "2bc2ad43-f295-4d63-8026-fe5bc2a27922") + ) + (fp_line + (start 1.77 1.78) + (end -1.77 1.78) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "ef94506a-8cbf-4d59-ab04-3daa0355b947") + ) + (fp_line + (start 1.77 -50.03) + (end 1.77 1.78) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "b1f301d8-00af-4977-9490-5015e6c12095") + ) + (fp_line + (start -1.77 1.78) + (end -1.77 -50.03) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "688dc236-4e8a-49d1-b79f-aa479a6e9a4f") + ) + (fp_line + (start -1.77 -50.03) + (end 1.77 -50.03) + (stroke + (width 0.05) + (type solid) + ) + (layer "B.CrtYd") + (uuid "8a1603be-581e-4877-8f7d-1330b7ecaa98") + ) + (fp_line + (start 1.27 1.27) + (end 1.27 -49.53) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "5589ad19-552b-4b7f-86e6-6ca9b6a891cd") + ) + (fp_line + (start 1.27 -49.53) + (end -1.27 -49.53) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "8250869f-a5d9-4d66-a59d-4c58c5523078") + ) + (fp_line + (start -0.635 1.27) + (end 1.27 1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "57a82905-fc57-47ab-8150-6dd6c9bb7810") + ) + (fp_line + (start -1.27 0.635) + (end -0.635 1.27) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "f3eb0f38-4b02-41db-9093-bef0a27fd53a") + ) + (fp_line + (start -1.27 -49.53) + (end -1.27 0.635) + (stroke + (width 0.1) + (type solid) + ) + (layer "B.Fab") + (uuid "1d400bde-646b-445b-a98d-b39b10a67c0f") + ) + (fp_text user "${REFERENCE}" + (at 0 -24.13 90) + (layer "B.Fab") + (uuid "b7d8509f-dcf0-4e97-93be-b679c5977df5") + (effects + (font + (size 1 1) + (thickness 0.15) + ) + (justify mirror) + ) + ) + (pad "1" thru_hole rect + (at 0 0 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 10 "/PA9_USART1TX") + (pinfunction "Pin_1") + (pintype "passive") + (uuid "55f73f06-1722-4e53-bf45-bffcbeb4e074") + ) + (pad "2" thru_hole circle + (at 0 -2.54 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 11 "/PA10_USART1RX") + (pinfunction "Pin_2") + (pintype "passive") + (uuid "8083aa31-6108-4769-b4bc-36f79faa7fd6") + ) + (pad "3" thru_hole circle + (at 0 -5.08 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_3") + (pintype "passive") + (uuid "009de7f7-41fd-4916-81fe-ecec5c417c22") + ) + (pad "4" thru_hole circle + (at 0 -7.62 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 13 "/PA15") + (pinfunction "Pin_4") + (pintype "passive") + (uuid "ad1e9844-16c0-448a-a21e-55becd54de56") + ) + (pad "5" thru_hole circle + (at 0 -10.16 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 16 "/PB3") + (pinfunction "Pin_5") + (pintype "passive") + (uuid "8bd69709-3793-4910-b1d5-1fd5f1484ddc") + ) + (pad "6" thru_hole circle + (at 0 -12.7 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 17 "/PB5") + (pinfunction "Pin_6") + (pintype "passive") + (uuid "25f161ec-53eb-42da-94d9-308f180d1dd4") + ) + (pad "7" thru_hole circle + (at 0 -15.24 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 21 "/PB6") + (pinfunction "Pin_7") + (pintype "passive") + (uuid "a85e9e64-e7ae-4b81-9291-422758cf1023") + ) + (pad "8" thru_hole circle + (at 0 -17.78 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_8") + (pintype "passive") + (uuid "dc8ce04a-2310-4d56-aa55-e1ae71bf5a34") + ) + (pad "9" thru_hole circle + (at 0 -20.32 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 20 "/PB7") + (pinfunction "Pin_9") + (pintype "passive") + (uuid "ca6ba83a-194e-40ba-af94-e23efa1eca1e") + ) + (pad "10" thru_hole circle + (at 0 -22.86 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 18 "/PB8") + (pinfunction "Pin_10") + (pintype "passive") + (uuid "c90c4852-1f90-4db1-8ce3-ba929c15f71f") + ) + (pad "11" thru_hole circle + (at 0 -25.4 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 19 "/PB9") + (pinfunction "Pin_11") + (pintype "passive") + (uuid "09c0497a-d6c7-4160-8f1a-7699723c0f51") + ) + (pad "12" thru_hole circle + (at 0 -27.94 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 38 "/PC13") + (pinfunction "Pin_12") + (pintype "passive") + (uuid "ba731c4f-1863-4f01-b873-f6203064ebe7") + ) + (pad "13" thru_hole circle + (at 0 -30.48 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_13") + (pintype "passive") + (uuid "93da05e7-5937-49d3-9799-e1030f40416f") + ) + (pad "14" thru_hole circle + (at 0 -33.02 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 22 "/PC14") + (pinfunction "Pin_14") + (pintype "passive") + (uuid "9b1b231b-0163-4ea3-a471-e9a46726ea3e") + ) + (pad "15" thru_hole circle + (at 0 -35.56 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 37 "/PC15") + (pinfunction "Pin_15") + (pintype "passive") + (uuid "1b46d715-8b10-40c1-9860-68dd75a4ea25") + ) + (pad "16" thru_hole circle + (at 0 -38.1 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 30 "/PA0") + (pinfunction "Pin_16") + (pintype "passive") + (uuid "9820b915-7e54-45ae-b3de-6262a684d9aa") + ) + (pad "17" thru_hole circle + (at 0 -40.64 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 31 "/PA1") + (pinfunction "Pin_17") + (pintype "passive") + (uuid "2c375cf5-60e9-46e5-a417-5e7593b4c264") + ) + (pad "18" thru_hole circle + (at 0 -43.18 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 1 "GND") + (pinfunction "Pin_18") + (pintype "passive") + (uuid "5b38ef9d-458b-4f40-85f3-e707f3c5454f") + ) + (pad "19" thru_hole circle + (at 0 -45.72 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 34 "/PA2") + (pinfunction "Pin_19") + (pintype "passive") + (uuid "7e38a177-b0e4-40db-a999-4d298fdc3ff0") + ) + (pad "20" thru_hole circle + (at 0 -48.26 180) + (size 1.7 1.7) + (drill 1) + (layers "*.Cu" "*.Mask") + (remove_unused_layers no) + (net 28 "/PA3") + (pinfunction "Pin_20") + (pintype "passive") + (uuid "caa0a6aa-94a6-4111-889b-cc800c635540") + ) + (embedded_fonts no) + (model "${KICAD9_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x20_P2.54mm_Vertical.step" + (offset + (xyz 0 0 0) + ) + (scale + (xyz 1 1 1) + ) + (rotate + (xyz 0 0 0) + ) + ) + ) + (gr_poly + (pts + (xy 160.1216 66.7512) (xy 160.1216 65.1256) (xy 163.068 62.1792) (xy 163.8046 62.1792) (xy 165.0492 60.9346) + (xy 165.0492 62.484) (xy 162.9664 64.5668) (xy 162.306 64.5668) (xy 160.1216 66.7512) + ) + (stroke + (width 0.2) + (type solid) + ) + (fill yes) + (layer "F.Cu") + (net 23) + (uuid "36124a6f-504e-4e4f-9fdd-a9f92d474626") + ) + (gr_poly + (pts + (xy 162.9156 65.151) (xy 164.5666 63.5) (xy 167.5384 63.5) (xy 167.5384 65.8368) (xy 167.2844 66.0908) + (xy 165.7604 66.0908) (xy 164.9476 66.9036) (xy 164.9476 68.072) (xy 162.9156 70.104) (xy 162.9156 68.9356) + ) + (stroke + (width 0.2) + (type solid) + ) + (fill yes) + (layer "F.Cu") + (net 3) + (uuid "3fdcd597-025a-4fdb-8d71-927ed887d528") + ) + (gr_rect + (start 134 56) + (end 184 106) + (stroke + (width 0.1) + (type default) + ) + (fill no) + (layer "Dwgs.User") + (uuid "d4cf968d-485d-4c5c-a66d-56e6e338f819") + ) + (gr_rect + (start 125 45) + (end 195 115) + (stroke + (width 0.1) + (type default) + ) + (fill no) + (layer "Dwgs.User") + (uuid "ffb63d07-ffe3-4c31-8df5-1c0d4b9a3d09") + ) + (gr_rect + (start 147.32 55.88) + (end 167.64 106.68) + (stroke + (width 0.05) + (type default) + ) + (fill no) + (layer "Edge.Cuts") + (uuid "624dac3e-9860-45da-9413-6450fd2c1081") + ) + (gr_text "BOOT" + (at 154.305 100.33 0) + (layer "F.SilkS") + (uuid "4b75cec8-830a-4a67-a833-73d32a9f0fe1") + (effects + (font + (size 1 1) + (thickness 0.1524) + ) + (justify bottom) + ) + ) + (gr_text "PA8" + (at 161.163 75.438 90) + (layer "F.SilkS") + (uuid "6360c124-4293-4765-9f9c-725ac5cbde05") + (effects + (font + (size 1 1) + (thickness 0.1524) + ) + (justify left bottom) + ) + ) + (gr_text "RESET" + (at 160.655 100.33 0) + (layer "F.SilkS") + (uuid "aae043d3-71ee-4567-b1f2-7e4d4bb816d3") + (effects + (font + (size 1 1) + (thickness 0.1524) + ) + (justify bottom) + ) + ) + (gr_text "SWD" + (at 155.194 72.644 90) + (layer "F.SilkS") + (uuid "c37ab2b2-9f02-4089-8fca-0bc7cfa56ecd") + (effects + (font + (size 1.016 1.016) + (thickness 0.1524) + ) + (justify left bottom) + ) + ) + (gr_text "Pico STM32 Rev. 1" + (at 157.48 98.552 0) + (layer "F.SilkS") + (uuid "cde1b285-66a1-4fff-b796-4ddf8cdf9804") + (effects + (font + (size 1 1) + (thickness 0.1524) + ) + (justify bottom) + ) + ) + (segment + (start 161.679 67.945) + (end 162.187 67.437) + (width 0.4064) + (layer "F.Cu") + (net 1) + (uuid "04009ed5-7288-4e58-80eb-ae49f7a6a2f8") + ) + (segment + (start 154.960592 76.850592) + (end 154.960592 76.038584) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "0ea5acc2-6703-4f5d-8b51-52e687143014") + ) + (segment + (start 152.535001 75.700001) + (end 152.527 75.692) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "12643895-c619-489c-b0bf-331498717316") + ) + (segment + (start 163.322 61.603001) + (end 163.322 60.833) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "141f38fb-c651-41ec-8646-8af7439bc57c") + ) + (segment + (start 159.758 70.231) + (end 160.655 70.231) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "16dbfc40-41ab-4222-966d-9da45f1d1991") + ) + (segment + (start 150.4442 85.5472) + (end 149.9616 85.0646) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "1cd1ae64-0ed1-4de3-8a71-d6e20977e826") + ) + (segment + (start 153.589801 87.766) + (end 154.2168 87.766) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "20fc3781-be31-4e72-8713-26fd58723109") + ) + (segment + (start 157.861 90.288999) + (end 158.741999 90.288999) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "2f0f11ae-31eb-4052-b64f-f0790694368f") + ) + (segment + (start 158.885001 87.249) + (end 157.960592 86.324591) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "33672238-6d84-484c-8d69-0f9f21a1c228") + ) + (segment + (start 158.885001 87.4058) + (end 159.647001 88.1678) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "397b6bfc-e39c-4244-a622-77462fc47270") + ) + (segment + (start 151.900001 85.5472) + (end 151.0792 85.5472) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "3ea6ba06-23a1-47c5-a631-d2a5a5c6ace5") + ) + (segment + (start 150.585659 83.82) + (end 150.59366 83.828001) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "436e68f6-068d-4b32-b096-3c9672af7b42") + ) + (segment + (start 152.019 58.547) + (end 151.384 57.912) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "43ed6e1c-d8f8-47c6-80fa-e602150af0e2") + ) + (segment + (start 164.076 56.777) + (end 164.084 56.769) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "465cb987-2946-4599-b7d7-84771d4f73c1") + ) + (segment + (start 163.948999 78.604999) + (end 163.957 78.613) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "4f58567a-dd5e-4ebe-89ff-7fd640349bb2") + ) + (segment + (start 154.960592 76.038584) + (end 154.622009 75.700001) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "5260c348-5753-4279-8af4-6f5f562e2e93") + ) + (segment + (start 160.68 62.19) + (end 160.680001 63.400853) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "5882127a-2099-4c41-8cf7-553699e23134") + ) + (segment + (start 151.0792 85.5472) + (end 150.4442 85.5472) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "5ddb947c-7c37-4e38-badc-d154f3441cc6") + ) + (segment + (start 149.9616 85.0646) + (end 149.9616 83.82) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "628f3a22-f421-4739-addc-95e4e0a4ba79") + ) + (segment + (start 163.068 78.604999) + (end 163.948999 78.604999) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "6cb5b100-9108-4e21-9603-939033c39ec7") + ) + (segment + (start 150.59366 83.828001) + (end 151.638 83.828001) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "6db56acc-41c3-45cf-8fdc-0113a5900a67") + ) + (segment + (start 162.187 66.841) + (end 161.737 66.391) + (width 0.4064) + (layer "F.Cu") + (net 1) + (uuid "78991b81-0187-4b4c-b47d-6b998900e649") + ) + (segment + (start 158.614999 90.288999) + (end 158.623 90.297) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "7a7a21f1-06cf-452e-b081-c806b3ba4550") + ) + (segment + (start 163.195 56.777) + (end 164.076 56.777) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "803dd892-c97b-4200-b5a0-8cfef15ba170") + ) + (segment + (start 152.019 58.682) + (end 152.019 58.547) + (width 0.4064) + (layer "F.Cu") + (net 1) + (uuid "8051a766-cd8c-4ec8-a632-75ec780fec9a") + ) + (segment + (start 159.647001 88.1678) + (end 159.647001 89.048799) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "92b0a0e1-c9ba-4ab4-a761-0b1095843fed") + ) + (segment + (start 154.622009 75.700001) + (end 153.416 75.700001) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "989c4df4-cbf8-4ed1-ab0e-9e9a480ba787") + ) + (segment + (start 159.647001 88.0408) + (end 159.647001 88.1678) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "99dd6e46-b00d-46ac-8d99-938c8bc35204") + ) + (segment + (start 152.781 87.757) + (end 152.781 88.497201) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "a787ff57-7c48-4ac6-b71c-3922fc7c2fe5") + ) + (segment + (start 156.416798 89.526) + (end 157.179797 90.288999) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "adb30547-4d01-4811-9a38-58eab4d113c1") + ) + (segment + (start 156.718 102.480999) + (end 157.555999 102.480999) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "ae1b5773-eb54-497d-ab37-0f674cf2920d") + ) + (segment + (start 152.205409 83.260592) + (end 151.638 83.828001) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "b0b6af13-1870-4668-813b-50a14e93a044") + ) + (segment + (start 152.781 88.497201) + (end 152.8198 88.536001) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "b16155de-860e-41a0-a1a8-3a7106ec62dd") + ) + (segment + (start 154.28 62.19) + (end 154.28 63.485002) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "b510c14a-8e77-4bd3-9bb1-d5e09e393f55") + ) + (segment + (start 161.370592 78.760592) + (end 162.912407 78.760592) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "c0ac796c-9532-4a9b-97f2-04eb28e64867") + ) + (segment + (start 154.627 63.5) + (end 154.305 63.5) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "c0dd84cb-47f4-4cc1-9579-d7b2eb164c66") + ) + (segment + (start 149.9616 83.82) + (end 150.585659 83.82) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "c314dbeb-615b-47b8-bdd4-6695d78d3c48") + ) + (segment + (start 160.655 71.001001) + (end 160.655 70.231) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "c627106f-765d-4834-9264-fa0c28dc7344") + ) + (segment + (start 155.782 64.655) + (end 154.627 63.5) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "cebd77bd-a334-4944-8642-cea1dafebe5b") + ) + (segment + (start 157.960592 86.324591) + (end 157.960592 85.170592) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "cff8999d-4ef6-4faa-b9e1-d1d3bea0d408") + ) + (segment + (start 162.187 67.31) + (end 162.187 66.841) + (width 0.4064) + (layer "F.Cu") + (net 1) + (uuid "d90743c6-5a8c-4aa9-aa70-1b6f7ae610fb") + ) + (segment + (start 153.416 75.700001) + (end 152.535001 75.700001) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "dfa4f084-acb4-453c-9fa6-af2cebefb53b") + ) + (segment + (start 157.555999 102.480999) + (end 158.538 103.463) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "e00ce919-bfbd-4e2c-8b2b-f066ddad2796") + ) + (segment + (start 163.675553 81.379553) + (end 164.338 82.042) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "e16b942f-91eb-42dc-95da-9d5d22c1d88a") + ) + (segment + (start 153.050592 83.260592) + (end 152.205409 83.260592) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "e513db4e-8d11-451b-b423-6c4a95972183") + ) + (segment + (start 157.179797 90.288999) + (end 157.861 90.288999) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "e78d12bd-f808-4c69-a4ba-3f4cf6fd9159") + ) + (segment + (start 152.8198 88.536001) + (end 153.589801 87.766) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "eac9278d-4d0a-4718-9ec9-de437c5f2b02") + ) + (segment + (start 162.912407 78.760592) + (end 163.068 78.604999) + (width 0.254) + (layer "F.Cu") + (net 1) + (uuid "eb382601-ab5f-4105-97a5-b2a36d68a4f8") + ) + (segment + (start 158.538 103.463) + (end 160.655 105.58) + (width 0.508) + (layer "F.Cu") + (net 1) + (uuid "f00d9547-ac9f-4e6c-ad64-8cbb6bd42c27") + ) + (via + (at 153.924 100.076) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "06f56636-2477-467a-a24c-b7f220f365bb") + ) + (via + (at 156.972 97.5868) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "0cc258e3-9d28-43af-9565-89ec2aede416") + ) + (via + (at 164.592 100.076) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "0d7c98f4-c7bc-4686-94f3-f76ad5d67761") + ) + (via + (at 157.988 79.248) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "11e2d414-0f22-4786-b26b-7c0600901369") + ) + (via + (at 160.02 95.25) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "15c36b09-e8c0-4d66-b7cd-24b8b1951276") + ) + (via + (at 158.75 90.297) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "15cf84dc-8440-4d28-9475-efda7d570611") + ) + (via + (at 163.322 60.833) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "17493a2f-0f7d-4571-a90f-ab50a287535c") + ) + (via + (at 161.544 100.076) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "1835522a-ae1e-4537-8a2a-51223507020a") + ) + (via + (at 164.592 60.325) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "1fab5cc2-6dbb-4616-85f2-de4b974c48c7") + ) + (via + (at 152.908 90.424) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "1fcc4036-a14a-43b9-8b8b-989e0501be4a") + ) + (via + (at 150.368 59.944) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "22d28675-62cc-44bd-946d-7f76b463b397") + ) + (via + (at 155.829 63.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "2513dec9-52e8-4844-9ce3-750afc133f75") + ) + (via + (at 150.368 94.488) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "27f33920-5182-4de4-85d0-0782b21823a7") + ) + (via + (at 150.368 105.664) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "29951f2c-3e9a-406a-ab79-b6bdc3fa9a71") + ) + (via + (at 152.4 92.456) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "2ed4e8d6-aec0-4406-a55d-ae335fe05e3f") + ) + (via + (at 158.9024 97.6884) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "323478c3-e941-4c36-8cf6-3fff0b5a0956") + ) + (via + (at 164.592 97.028) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "398c749e-4cc7-44ae-94e7-0ffa9ecb8d29") + ) + (via + (at 158.538 103.463) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "3c49fdb4-2eee-4e03-9b58-ef54a750f765") + ) + (via + (at 151.0792 85.5472) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "3d39fc48-7b2f-4a6c-a112-b3438d2064fd") + ) + (via + (at 160.02 80.264) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "42af219a-d717-4335-b11f-f794e7cb7efe") + ) + (via + (at 164.592 105.664) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "46a09a28-ed8b-4f47-bf12-4a453cfc4a93") + ) + (via + (at 162.433 95.504) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "47930e73-4419-422a-a13f-4d9578f02ca1") + ) + (via + (at 154.051 63.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "48435548-fad9-41b9-829d-613e9e5dbe22") + ) + (via + (at 162.2552 68.6816) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "5025db2e-c5c6-4b2f-94b1-67f845e42db4") + ) + (via + (at 150.368 65.405) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "50391500-53c3-4bff-8731-ab1fc5eebf09") + ) + (via + (at 160.02 100.076) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "540c014a-2b9a-41ab-afe8-5b1f0e1bda82") + ) + (via + (at 161.1884 68.6816) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "55d43582-0c89-4a7c-9afc-2b9014215e34") + ) + (via + (at 151.384 66.548) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "58a9b4e2-5e5f-4abd-bb63-a87dfc8ba510") + ) + (via + (at 149.9616 83.82) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "5a3e6b79-80b4-4fbd-86a8-79798a6abe01") + ) + (via + (at 163.068 58.928) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "5d9714ad-e583-4081-afe2-b17284912c56") + ) + (via + (at 160.655 70.231) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "620f27ca-2726-47c9-9bf8-79ccb810867a") + ) + (via + (at 164.084 56.769) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "6a6d9870-7690-4569-ba69-b7e14b6c1eb8") + ) + (via + (at 158.75 88.392) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "6bf8303d-e886-4077-94d6-a5a94690f030") + ) + (via + (at 154.559 64.135) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "708a6679-cb0c-4178-a681-afa8f4d83f5e") + ) + (via + (at 155.448 83.312) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "776077d6-bb7b-45be-83ef-6811c0e99c3c") + ) + (via + (at 155.448 79.248) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "78476513-9c94-4366-b9bd-c6e4d31895cc") + ) + (via + (at 164.338 82.042) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "881c62a2-1acd-48de-b013-30d5166c64af") + ) + (via + (at 151.384 60.452) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "8a37e675-00d2-4e20-b142-6f4a22a5648d") + ) + (via + (at 152.146 100.076) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "902db19f-a21e-42ee-9ea1-ca7f2922321e") + ) + (via + (at 150.368 56.896) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "943d1c8b-9969-43f4-97b1-86e650a72690") + ) + (via + (at 162.433 92.964) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "9bff3651-9e41-4d51-8d5f-fb35cae19b57") + ) + (via + (at 162.433 98.044) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "a4fa7e9a-917d-441e-a9b7-3955d455e4db") + ) + (via + (at 157.48 105.664) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "a561283e-2484-4d3a-97b8-8fad6a4b7669") + ) + (via + (at 150.876 89.916) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "a8759620-f5c8-49a1-a8f6-fd7eefb2fc22") + ) + (via + (at 155.067 63.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "ac03d32f-0e1a-4ea1-a1cb-cc958c9e7494") + ) + (via + (at 158.242 69.342) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "ad63b01d-bc99-4b97-9ad6-088ff656121a") + ) + (via + (at 163.83 76.454) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "aeeab82a-c1f4-4ba8-a3af-96b88e64d6bc") + ) + (via + (at 159.639 89.0568) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "b2477026-689e-420c-ab72-af408d872b5c") + ) + (via + (at 163.957 78.613) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "b8f2e3f3-712d-47f2-8212-34e3879a874b") + ) + (via + (at 155.956 93.472) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "bbdbefca-4a5c-47a0-b1e0-69bc4bd70401") + ) + (via + (at 164.084 60.833) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "c165a3c6-0350-4beb-9d0d-b39773d36eb8") + ) + (via + (at 151.384 57.912) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "c43ba7c7-0045-4260-b35b-d17a54cc08cd") + ) + (via + (at 161.544 71.12) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "c64225a1-38f9-4412-8083-28429d1a2636") + ) + (via + (at 161.1884 67.2592) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "d5fef7d6-5f5f-4007-9fb6-b0d9b1bc6c74") + ) + (via + (at 150.368 62.611) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "de0e86c2-fa13-4307-9eef-d845e42bacab") + ) + (via + (at 162.306 65.4304) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "e0b6de97-71ab-49a1-b1c4-69a408a271df") + ) + (via + (at 160.680001 63.400853) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "eb32f065-8bcf-4278-bee0-e86dbfa5acbc") + ) + (via + (at 155.448 90.678) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "ef036ba2-4c73-4cf7-b8c0-c85d745ca52c") + ) + (via + (at 151.384 63.5) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "f04f1f11-b992-4735-a5d5-6d48a30bd669") + ) + (via + (at 153.924 94.488) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "f3b62893-fcee-44bc-82f2-454c6682ecb9") + ) + (via + (at 161.679 67.945) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "f3eb063b-c7f4-4897-8f86-16746901ec3f") + ) + (via + (at 159.512 82.804) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "f6348d39-471c-4cdf-a3ce-0f660333d769") + ) + (via + (at 152.527 75.692) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "f704a6f0-0ffa-48ee-abce-4d90830ec77c") + ) + (via + (at 152.781 87.757) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 1) + (uuid "fb158aab-8c62-4a18-80f6-67f9ab833c8d") + ) + (via + (at 156.972 100.584) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (free yes) + (net 1) + (uuid "fb6ba32d-ad9d-47c6-8523-09f71d46677a") + ) + (segment + (start 163.708 59.817) + (end 166.37 57.155) + (width 0.508) + (layer "F.Cu") + (net 2) + (uuid "197a92f9-b853-4c33-a74b-6041afcefdec") + ) + (segment + (start 158.162 66.355) + (end 158.162 68.026) + (width 0.508) + (layer "F.Cu") + (net 2) + (uuid "4451981f-1852-4e11-becc-68874104fa6f") + ) + (segment + (start 156.464 60.325) + (end 155.770247 60.325) + (width 0.254) + (layer "F.Cu") + (net 2) + (uuid "44a5f0b2-2485-40ef-9adf-b278ba01c3a1") + ) + (segment + (start 159.385 60.830901) + (end 160.398901 59.817) + (width 0.508) + (layer "F.Cu") + (net 2) + (uuid "48f6fd12-2308-49ab-90f3-c1900438e563") + ) + (segment + (start 159.88 62.19) + (end 159.88 64.637) + (width 0.508) + (layer "F.Cu") + (net 2) + (uuid "520c0fda-00d5-4e5a-84fd-239f77faa241") + ) + (segment + (start 155.272 61.272494) + (end 155.08 61.464494) + (width 0.254) + (layer "F.Cu") + (net 2) + (uuid "5ce212db-89ee-466f-aef9-5014a6fd73fa") + ) + (segment + (start 155.08 62.19) + (end 155.09 62.2) + (width 0.508) + (layer "F.Cu") + (net 2) + (uuid "604b77c0-dd2e-45b4-b9f7-4c584977f216") + ) + (segment + (start 158.162 68.026) + (end 158.208 68.072) + (width 0.508) + (layer "F.Cu") + (net 2) + (uuid "683b5d4b-0601-4ead-ac08-4dc2cbb98b09") + ) + (segment + (start 155.272 60.823247) + (end 155.272 61.272494) + (width 0.254) + (layer "F.Cu") + (net 2) + (uuid "73e4e240-8638-4491-88d0-e6d53b11807e") + ) + (segment + (start 160.398901 59.817) + (end 163.708 59.817) + (width 0.508) + (layer "F.Cu") + (net 2) + (uuid "7552b85c-3764-4265-b9cf-7a83d4b2f596") + ) + (segment + (start 159.639 61.214) + (end 159.639 61.223494) + (width 0.254) + (layer "F.Cu") + (net 2) + (uuid "7bda488b-c89c-4537-b6f9-2bb7235caaa4") + ) + (segment + (start 159.88 64.637) + (end 158.162 66.355) + (width 0.508) + (layer "F.Cu") + (net 2) + (uuid "aa3ae59f-f82f-4916-9644-225ab45ba049") + ) + (segment + (start 155.08 61.464494) + (end 155.08 62.19) + (width 0.254) + (layer "F.Cu") + (net 2) + (uuid "ac99744a-7eb7-4915-a7b6-fe554f0b83b9") + ) + (segment + (start 159.639 61.223494) + (end 159.88 61.464494) + (width 0.254) + (layer "F.Cu") + (net 2) + (uuid "acf27c96-9155-44e9-8752-886f5585628a") + ) + (segment + (start 155.770247 60.325) + (end 155.272 60.823247) + (width 0.254) + (layer "F.Cu") + (net 2) + (uuid "c0d66c7f-b4f6-431b-b767-283919ed2bd6") + ) + (segment + (start 159.385 60.96) + (end 159.385 60.830901) + (width 0.508) + (layer "F.Cu") + (net 2) + (uuid "c1966c95-75af-4743-9a25-420712650af9") + ) + (segment + (start 159.88 61.464494) + (end 159.88 62.19) + (width 0.254) + (layer "F.Cu") + (net 2) + (uuid "cb8c552a-82b3-4c48-b2e4-b43f6efa72a8") + ) + (segment + (start 159.385 60.96) + (end 159.639 61.214) + (width 0.254) + (layer "F.Cu") + (net 2) + (uuid "df839151-3a29-42d6-bbf2-328eb9a31c3b") + ) + (via + (at 159.385 60.96) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "7dc95c38-7036-4411-a6ee-e79c3f0a874c") + ) + (via + (at 156.464 60.325) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 2) + (uuid "9c3432fc-c2c8-40ae-ba3c-3792053ec585") + ) + (segment + (start 156.464 60.325) + (end 158.75 60.325) + (width 0.508) + (layer "B.Cu") + (net 2) + (uuid "5a886230-5eec-447a-b9d5-59997f99459b") + ) + (segment + (start 158.75 60.325) + (end 159.385 60.96) + (width 0.508) + (layer "B.Cu") + (net 2) + (uuid "bffa6767-0a8e-43f6-81b5-969842dc1268") + ) + (segment + (start 153.157001 76.441) + (end 152.236553 76.441) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "01e3a519-876e-43ba-a572-363886f63e45") + ) + (segment + (start 151.792 75.996447) + (end 151.792 75.387553) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "0445b16b-ae88-4d13-9436-bcfa643bb5cd") + ) + (segment + (start 162.433 75.311) + (end 163.068 75.946) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "072b633e-f644-44cc-83fc-850a72418cd5") + ) + (segment + (start 164.846 66.299) + (end 166.37 64.775) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "0781578e-9597-465e-90c8-9df1d7a72cd4") + ) + (segment + (start 154.204999 76.699999) + (end 154.305 76.8) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "07b84ee5-e48b-49d4-b6ff-a0f4ebd46f9a") + ) + (segment + (start 158.460592 85.170592) + (end 158.460592 83.835935) + (width 0.254) + (layer "F.Cu") + (net 3) + (uuid "08f56763-6135-4bf5-903f-5b53ee0fd0eb") + ) + (segment + (start 154.432 78.232) + (end 154.305 78.105) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "092f6c01-8369-4415-b99e-ce2d775feec1") + ) + (segment + (start 160.646999 90.051001) + (end 160.646999 88.2948) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "16b27de9-8980-483d-b759-15bbd9c1a5af") + ) + (segment + (start 159.884999 87.249) + (end 159.169006 86.533007) + (width 0.254) + (layer "F.Cu") + (net 3) + (uuid "18b9ed53-dc4a-4fab-880e-22c87be69c12") + ) + (segment + (start 159.976704 78.842472) + (end 160.558584 78.260592) + (width 0.254) + (layer "F.Cu") + (net 3) + (uuid "19532dba-e042-4d8b-b72e-f4a7c1930073") + ) + (segment + (start 154.024 74.838) + (end 154.694 74.168) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "1b74a18e-29e4-48a0-82b6-555b98c2915d") + ) + (segment + (start 153.978984 85.5472) + (end 154.355592 85.170592) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "1bc124b3-4250-435f-a8a9-f8e5dee8fffd") + ) + (segment + (start 159.010999 86.533007) + (end 158.460592 85.9826) + (width 0.254) + (layer "F.Cu") + (net 3) + (uuid "251542d5-5d5a-49ba-a787-be63bc57428a") + ) + (segment + (start 152.341553 74.838) + (end 154.024 74.838) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "3b85f41e-ac4c-4fd4-9884-ed6687c5b245") + ) + (segment + (start 163.068 77.605001) + (end 161.921183 77.605001) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "3f14ab28-cdb5-4a2b-a6fc-ece540d4cf72") + ) + (segment + (start 158.460592 85.9826) + (end 158.460592 85.170592) + (width 0.254) + (layer "F.Cu") + (net 3) + (uuid "4514bdcb-ebe9-4b29-9543-627394ee8666") + ) + (segment + (start 152.899999 85.5472) + (end 153.937204 84.509995) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "4b941d7f-b7c0-40ba-9733-07fc99cf6e6c") + ) + (segment + (start 152.8474 99.2222) + (end 155.2956 96.774) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "4c065c39-adab-4b59-9390-2484ea92d7f7") + ) + (segment + (start 159.4104 95.8088) + (end 159.3596 95.8088) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "5509baed-c215-455a-8770-258751eeea51") + ) + (segment + (start 159.884999 87.376) + (end 160.646999 88.138) + (width 0.254) + (layer "F.Cu") + (net 3) + (uuid "552382c1-dc4b-4490-a660-d6ac4c77c5a3") + ) + (segment + (start 154.305 83.497796) + (end 154.305 78.105) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "5683e2c3-3598-4736-b3a1-28fdc5abf4b9") + ) + (segment + (start 152.760808 83.865592) + (end 153.937204 83.865592) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "5fdff862-09ca-4eef-856b-1b9d1e2ca072") + ) + (segment + (start 157.1752 93.5228) + (end 160.646999 90.051001) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "645e54cc-f39d-422a-8b66-a2e0a22c8660") + ) + (segment + (start 159.258 78.232) + (end 154.432 78.232) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "6a7f1e03-151a-4499-ad23-5ba0d4238ae2") + ) + (segment + (start 157.6064 96.774) + (end 158.5716 95.8088) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "6c3c3ee6-61ef-425e-8afe-e3093ea604d2") + ) + (segment + (start 159.169006 86.533007) + (end 159.010999 86.533007) + (width 0.254) + (layer "F.Cu") + (net 3) + (uuid "6deed01a-8bef-4bdc-a31e-b28ad99b8635") + ) + (segment + (start 159.976704 78.950703) + (end 159.976704 78.842472) + (width 0.254) + (layer "F.Cu") + (net 3) + (uuid "7764a03a-4e94-4603-acc8-7009268bbf4e") + ) + (segment + (start 157.1244 93.5228) + (end 157.1752 93.5228) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "78c0ce6f-7175-4740-884f-909b4951fd61") + ) + (segment + (start 155.2956 96.774) + (end 157.6064 96.774) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "7cb81c58-ed7f-4294-ac35-dec34e68006c") + ) + (segment + (start 151.638 84.675599) + (end 151.950801 84.675599) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "8429e424-af76-46b4-919f-9d8a397e713e") + ) + (segment + (start 152.8474 104.1224) + (end 152.8474 99.2222) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "854190dc-4779-42e1-a911-7cdc273297c0") + ) + (segment + (start 163.068 69.723) + (end 162.433 70.358) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "8581f0ca-57af-4fbe-9f8c-617cdf07332e") + ) + (segment + (start 152.899999 85.5472) + (end 153.978984 85.5472) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "8a9b80c9-3050-4029-b69c-2f6ea8ccf52b") + ) + (segment + (start 153.416 76.699999) + (end 154.204999 76.699999) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "8d3161e5-4561-41de-944d-c12cb6705671") + ) + (segment + (start 153.937204 84.509995) + (end 153.937204 83.865592) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "9106a36f-db5b-4357-87f9-0ac3ff3c2a60") + ) + (segment + (start 161.921183 77.605001) + (end 161.370592 78.155592) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "93bd5d9b-0bff-473c-bdf2-dbab138ce3ea") + ) + (segment + (start 164.084 67.437) + (end 164.846 66.675) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "9a753336-1df9-4711-99c4-34af723c154f") + ) + (segment + (start 163.068 67.556) + (end 163.068 69.723) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "9c1f64b1-f16b-4623-b573-953540c42480") + ) + (segment + (start 153.416 76.699999) + (end 153.157001 76.441) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "9f32e52f-449c-45e6-86ef-6a6e95ad93ab") + ) + (segment + (start 151.950801 84.675599) + (end 152.760808 83.865592) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "a5628b24-5c8f-44ff-bf89-64fc18983024") + ) + (segment + (start 163.187 66.841) + (end 163.637 66.391) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "a5acf9d0-a608-4659-acfb-ef4e665b1402") + ) + (segment + (start 160.646999 88.011) + (end 160.655 88.011) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "a72b171b-2da1-4a0e-aabe-f26c857353d8") + ) + (segment + (start 152.236553 76.441) + (end 151.792 75.996447) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "a8896777-144b-410e-8282-fe0a8ff14476") + ) + (segment + (start 154.204999 76.699999) + (end 154.355592 76.850592) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "aae37e40-1405-49f7-abab-51eb2476243b") + ) + (segment + (start 163.187 67.437) + (end 163.068 67.556) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "acbf463d-1670-40f0-aaa7-ec90d408bcd3") + ) + (segment + (start 164.846 66.675) + (end 164.846 66.299) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "bd11286b-a867-4e72-88bc-52d0151b6c26") + ) + (segment + (start 158.5716 95.8088) + (end 159.3596 95.8088) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "c6c20420-995d-44d0-b6d9-f91280105df8") + ) + (segment + (start 160.558584 78.260592) + (end 161.370592 78.260592) + (width 0.254) + (layer "F.Cu") + (net 3) + (uuid "c8cfb35f-551a-4c9c-b2e3-a029d8a1c6a8") + ) + (segment + (start 154.305 105.58) + (end 152.8474 104.1224) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "d64d1111-ae1c-4481-ab01-6de3d49835c3") + ) + (segment + (start 163.187 67.437) + (end 164.084 67.437) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "d7b99304-de72-4f35-ab9c-b5995dfee0f7") + ) + (segment + (start 161.921183 77.605001) + (end 161.913182 77.597) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "d91deb87-280f-402d-8107-51b502d7bfa9") + ) + (segment + (start 151.792 75.387553) + (end 152.341553 74.838) + (width 0.1524) + (layer "F.Cu") + (net 3) + (uuid "dd1c6071-6273-4aeb-b24e-5c5b1ac0ac50") + ) + (segment + (start 158.459346 80.468061) + (end 159.976704 78.950703) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "e1dc128d-e386-4530-bf93-fbd223c15fd2") + ) + (segment + (start 154.305 76.8) + (end 154.305 78.105) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "e42c2769-9287-41da-8042-834dc9c94be5") + ) + (segment + (start 158.459346 83.834689) + (end 158.459346 80.468061) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "e7c8eaca-d625-4be6-a599-be1df00f330f") + ) + (segment + (start 163.187 67.31) + (end 163.187 66.841) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "ec177f1b-0e75-4536-a6a5-5dcf6e39c95a") + ) + (segment + (start 153.937204 83.865592) + (end 154.305 83.497796) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "f316592e-da17-4e50-bfd1-e5ca41d7d6b3") + ) + (segment + (start 158.460592 83.835935) + (end 158.459346 83.834689) + (width 0.254) + (layer "F.Cu") + (net 3) + (uuid "f4e89c03-58b2-48b5-aff9-4cb20aace264") + ) + (segment + (start 163.068 75.946) + (end 163.068 77.605001) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "f67b565b-da7d-4f9e-87bf-68d4b9a8a320") + ) + (segment + (start 150.749 84.675599) + (end 151.638 84.675599) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "f6a2f24f-b424-43b0-9998-4bc897c3eaa4") + ) + (segment + (start 161.913182 77.597) + (end 161.29 77.597) + (width 0.508) + (layer "F.Cu") + (net 3) + (uuid "fe9f6e20-f3cd-4941-8cbb-01d8b7ad65be") + ) + (via + (at 159.258 78.232) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "0ccb7c1a-28cd-4be6-bd11-420aa1042a16") + ) + (via + (at 161.29 77.597) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "3488272e-db09-414d-9bb7-574e9e4ab863") + ) + (via + (at 159.3596 95.8088) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "6294770b-6faf-44b6-a02a-7e16f5a9fdbe") + ) + (via + (at 162.433 75.311) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "8c4dca58-333b-40c8-837b-c31a6b906310") + ) + (via + (at 162.433 70.358) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "b061cbe7-8608-426e-a110-17bf17978c1a") + ) + (via + (at 157.1244 93.5228) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 3) + (uuid "b3f9691d-0b47-412a-a050-14794ac0c90d") + ) + (segment + (start 162.433 70.358) + (end 162.433 75.311) + (width 0.508) + (layer "B.Cu") + (net 3) + (uuid "0148631c-87ea-4b8f-8fcf-965427f425f6") + ) + (segment + (start 157.1244 93.5736) + (end 157.1244 93.5228) + (width 0.1524) + (layer "B.Cu") + (net 3) + (uuid "512ec8d2-0907-4b55-a04e-fbc9b7b763da") + ) + (segment + (start 159.3596 95.8088) + (end 157.1244 93.5736) + (width 0.1524) + (layer "B.Cu") + (net 3) + (uuid "9dd854d7-17d7-4172-9e51-d8a9e55f0b52") + ) + (segment + (start 161.29 77.597) + (end 160.655 78.232) + (width 0.508) + (layer "B.Cu") + (net 3) + (uuid "a3f6ec1f-9587-4f81-9b4c-da9b4a163902") + ) + (segment + (start 160.655 78.232) + (end 159.258 78.232) + (width 0.508) + (layer "B.Cu") + (net 3) + (uuid "b8ae8597-865b-454e-9571-ffa7223a9938") + ) + (segment + (start 156.460592 86.169706) + (end 155.194 87.436298) + (width 0.1524) + (layer "F.Cu") + (net 6) + (uuid "0848da8c-65dd-40cd-a7fd-a1fbb6e38169") + ) + (segment + (start 156.460592 85.170592) + (end 156.460592 86.169706) + (width 0.1524) + (layer "F.Cu") + (net 6) + (uuid "679c5da2-4782-4d47-8f09-9d60c32534fb") + ) + (segment + (start 155.194 88.5488) + (end 154.2168 89.526) + (width 0.1524) + (layer "F.Cu") + (net 6) + (uuid "77e0a988-e29d-4a46-9208-2a39a6ce6cf8") + ) + (segment + (start 155.194 87.436298) + (end 155.194 88.5488) + (width 0.1524) + (layer "F.Cu") + (net 6) + (uuid "8762da30-5954-4281-a26e-8796e92c916e") + ) + (segment + (start 154.2168 89.526) + (end 152.829799 89.526) + (width 0.1524) + (layer "F.Cu") + (net 6) + (uuid "b52d7580-9ffc-4e62-b529-245246fc06d9") + ) + (segment + (start 152.829799 89.526) + (end 152.8198 89.535999) + (width 0.1524) + (layer "F.Cu") + (net 6) + (uuid "e7cff6c3-8ab3-4d13-8e8e-04f89f69a355") + ) + (segment + (start 156.960592 86.483593) + (end 156.960592 85.170592) + (width 0.1524) + (layer "F.Cu") + (net 7) + (uuid "4d2d737d-025a-4881-a5e3-375176920a06") + ) + (segment + (start 157.861 87.384001) + (end 156.960592 86.483593) + (width 0.1524) + (layer "F.Cu") + (net 7) + (uuid "9fbd8eb4-c27c-42f4-bdd1-226f14a664b7") + ) + (segment + (start 158.73 62.19) + (end 158.73 60.791079) + (width 0.2032) + (layer "F.Cu") + (net 8) + (uuid "0291d760-e1a9-46b8-abd3-704fa1227875") + ) + (segment + (start 158.73 60.791079) + (end 160.858479 58.6626) + (width 0.2032) + (layer "F.Cu") + (net 8) + (uuid "4f0f0c8f-0f32-44e1-aa8e-ce54b7adc9e3") + ) + (segment + (start 162.3094 58.6626) + (end 163.195 57.777) + (width 0.2032) + (layer "F.Cu") + (net 8) + (uuid "75e3b96b-c71b-4c0e-b25e-5144d1c1d350") + ) + (segment + (start 160.858479 58.6626) + (end 162.3094 58.6626) + (width 0.2032) + (layer "F.Cu") + (net 8) + (uuid "af5896fc-c927-4905-ab1e-cab28df9cf5b") + ) + (segment + (start 155.956 61.0108) + (end 155.956 61.087) + (width 0.1524) + (layer "F.Cu") + (net 9) + (uuid "2785848e-5a68-4ece-8e22-96a554811974") + ) + (segment + (start 154.551 59.682) + (end 152.019 59.682) + (width 0.1524) + (layer "F.Cu") + (net 9) + (uuid "9183bc4a-2ab0-47ec-a211-303fde30c5a1") + ) + (segment + (start 155.73 61.313) + (end 155.73 62.19) + (width 0.1524) + (layer "F.Cu") + (net 9) + (uuid "ba5657be-0e12-4221-a6e3-9c6b2eddbbab") + ) + (segment + (start 155.956 61.087) + (end 155.73 61.313) + (width 0.1524) + (layer "F.Cu") + (net 9) + (uuid "de911212-36cd-4cc6-8358-bb3e7aa86fe9") + ) + (segment + (start 154.94 60.071) + (end 154.551 59.682) + (width 0.1524) + (layer "F.Cu") + (net 9) + (uuid "e89757fc-e94c-4f03-9e77-85e62c8cc6b4") + ) + (via + (at 155.956 61.0108) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 9) + (uuid "bcf909e9-c26b-40db-b1a6-b5e1a058a9e2") + ) + (via + (at 154.94 60.071) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 9) + (uuid "dbed57a7-a86a-401e-bda6-029454945696") + ) + (segment + (start 155.956 61.0108) + (end 155.8798 61.0108) + (width 0.1524) + (layer "B.Cu") + (net 9) + (uuid "181316ef-db84-46a6-96c0-fc78c41cc690") + ) + (segment + (start 155.8798 61.0108) + (end 154.94 60.071) + (width 0.1524) + (layer "B.Cu") + (net 9) + (uuid "5016802c-841f-41e4-be37-dc2043f720a7") + ) + (segment + (start 157.58 68.780998) + (end 157.58 69.2934) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "0e733d7c-2371-48b6-a91c-23977644f45a") + ) + (segment + (start 149.7172 58.2772) + (end 148.59 57.15) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "1edee95e-20a1-437c-b7d3-68c26b84537b") + ) + (segment + (start 155.0848 65.5244) + (end 149.7172 60.1568) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "252d6518-df24-4cd8-8ee9-77f93bea215c") + ) + (segment + (start 157.099 68.199) + (end 157.099 68.299998) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "396295a2-5f7c-47fa-aa9a-3bfdaa500b0e") + ) + (segment + (start 155.0848 67.785) + (end 155.0848 65.5244) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "44018fec-8eaf-4bad-899f-2675cc0d829e") + ) + (segment + (start 157.58 69.2934) + (end 157.460592 69.412808) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "4e6c9ab7-3044-432f-a07b-82549fd0a686") + ) + (segment + (start 157.460592 69.412808) + (end 157.460592 76.850592) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "73db86e2-5121-436b-81a6-dbed0462e52b") + ) + (segment + (start 155.4988 68.199) + (end 155.0848 67.785) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "7fec6340-522e-45d4-a231-e8c83dc0441e") + ) + (segment + (start 149.7172 60.1568) + (end 149.7172 58.2772) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "8a1a6446-e8fe-4d0a-b268-702ae228d9d5") + ) + (segment + (start 155.6258 68.199) + (end 155.4988 68.199) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "9496858e-9d48-44a6-9968-5e6ed02ee62f") + ) + (segment + (start 157.099 68.299998) + (end 157.58 68.780998) + (width 0.1524) + (layer "F.Cu") + (net 10) + (uuid "c8a06e62-727e-4fe6-b644-da4b91f23ee5") + ) + (via + (at 157.099 68.199) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 10) + (uuid "9b239709-d43d-4528-bdee-aa2d2c906892") + ) + (via + (at 155.6258 68.199) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 10) + (uuid "c2d7e675-0d32-42ec-9ec9-7f8b5151e35a") + ) + (segment + (start 155.6258 68.199) + (end 155.626725 68.199925) + (width 0.1524) + (layer "B.Cu") + (net 10) + (uuid "2a83d6c2-b0c5-4888-940d-d8e88d2f060f") + ) + (segment + (start 155.626725 68.199925) + (end 157.098075 68.199925) + (width 0.1524) + (layer "B.Cu") + (net 10) + (uuid "73f9c11a-9003-4389-8071-a1863b3bf440") + ) + (segment + (start 157.098075 68.199925) + (end 157.099 68.199) + (width 0.1524) + (layer "B.Cu") + (net 10) + (uuid "df772e22-6297-48bd-84c3-f789e8baddd5") + ) + (segment + (start 155.295 69.088) + (end 155.6258 69.088) + (width 0.1524) + (layer "F.Cu") + (net 11) + (uuid "5075d2eb-8444-4dd2-8554-12db6c126bf2") + ) + (segment + (start 148.59 59.69) + (end 152.273 63.373) + (width 0.1524) + (layer "F.Cu") + (net 11) + (uuid "699a71ad-f354-407b-a5a8-4de8f389f82a") + ) + (segment + (start 156.960592 76.850592) + (end 156.960592 69.124808) + (width 0.1524) + (layer "F.Cu") + (net 11) + (uuid "7b27afd1-9f70-4b3a-b465-9b8f5daa48fb") + ) + (segment + (start 156.960592 69.124808) + (end 157.0228 69.0626) + (width 0.1524) + (layer "F.Cu") + (net 11) + (uuid "98377598-61f9-488c-a45b-5947d3cd84d4") + ) + (segment + (start 152.273 63.373) + (end 152.273 66.066) + (width 0.1524) + (layer "F.Cu") + (net 11) + (uuid "ed275569-9193-461c-b225-1e539614865b") + ) + (segment + (start 152.273 66.066) + (end 155.295 69.088) + (width 0.1524) + (layer "F.Cu") + (net 11) + (uuid "fe04bf47-5daa-4c8e-ba86-37bc16e92020") + ) + (via + (at 155.6258 69.088) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 11) + (uuid "f7332df0-c5dc-4ff9-97e6-fb126c868709") + ) + (via + (at 157.0228 69.0626) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 11) + (uuid "f8fb5bbe-c523-4033-8804-3d6cb0683a2e") + ) + (segment + (start 155.6258 69.088) + (end 156.9974 69.088) + (width 0.1524) + (layer "B.Cu") + (net 11) + (uuid "15e04cb9-19aa-48f6-aaa5-15da9759fa0f") + ) + (segment + (start 156.9974 69.088) + (end 157.0228 69.0626) + (width 0.1524) + (layer "B.Cu") + (net 11) + (uuid "ab92936a-800d-4704-b9ab-8baf528ccba7") + ) + (segment + (start 151.737592 81.760592) + (end 151.638 81.661) + (width 0.1524) + (layer "F.Cu") + (net 12) + (uuid "111d0ab2-ca0c-441c-97ee-d4c80d4284f9") + ) + (segment + (start 158.1404 98.4946) + (end 155.205 101.43) + (width 0.1524) + (layer "F.Cu") + (net 12) + (uuid "1b6fa557-e4a7-432f-9925-72d04de804fc") + ) + (segment + (start 153.050592 81.760592) + (end 151.737592 81.760592) + (width 0.1524) + (layer "F.Cu") + (net 12) + (uuid "304accfb-81d8-41ad-a32a-c1a078737526") + ) + (segment + (start 158.1404 97.0788) + (end 158.1404 98.4946) + (width 0.1524) + (layer "F.Cu") + (net 12) + (uuid "6f8c516f-a0a4-46ee-99a8-8cbb482b54bf") + ) + (segment + (start 154.305 101.43) + (end 156.666999 101.43) + (width 0.1524) + (layer "F.Cu") + (net 12) + (uuid "83ba1d65-9db3-4a13-94d7-6b3591c72bb8") + ) + (segment + (start 155.205 101.43) + (end 154.305 101.43) + (width 0.1524) + (layer "F.Cu") + (net 12) + (uuid "ad9ca43f-922e-4d7c-8c56-decce6587e97") + ) + (segment + (start 155.2194 94.0054) + (end 151.765 90.551) + (width 0.1524) + (layer "F.Cu") + (net 12) + (uuid "b192ad4e-9ce8-478b-a87d-cb96023125dc") + ) + (segment + (start 151.765 90.551) + (end 151.765 89.535) + (width 0.1524) + (layer "F.Cu") + (net 12) + (uuid "cd66a7eb-c08a-467a-929d-2e08711a72e0") + ) + (segment + (start 156.666999 101.43) + (end 156.718 101.481001) + (width 0.1524) + (layer "F.Cu") + (net 12) + (uuid "f2434629-74ff-411b-bd3e-cdad2ede5628") + ) + (via + (at 155.2194 94.0054) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 12) + (uuid "09e30db6-b1f0-4ab2-b6b3-398cd212fb11") + ) + (via + (at 151.638 81.661) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 12) + (uuid "1d4496ab-de16-48e7-8d1a-aec647045812") + ) + (via + (at 151.765 89.535) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 12) + (uuid "8f521d2b-a8ca-4059-b5cf-a787434105e2") + ) + (via + (at 158.1404 97.0788) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 12) + (uuid "dd95569b-cd3d-4830-b483-97d5b61404c9") + ) + (segment + (start 158.1404 96.9264) + (end 155.2194 94.0054) + (width 0.1524) + (layer "B.Cu") + (net 12) + (uuid "17444b13-b5b0-4273-bf9a-c247a95535bd") + ) + (segment + (start 151.638 81.661) + (end 151.638 89.408) + (width 0.1524) + (layer "B.Cu") + (net 12) + (uuid "275d784f-e553-4d1b-b8a0-3e4cc8d0ecb3") + ) + (segment + (start 158.1404 97.0788) + (end 158.1404 96.9264) + (width 0.1524) + (layer "B.Cu") + (net 12) + (uuid "a24cb30a-5308-44e5-94a7-d88a333f78cf") + ) + (segment + (start 151.638 89.408) + (end 151.765 89.535) + (width 0.1524) + (layer "B.Cu") + (net 12) + (uuid "d09081e1-6cac-4ce6-ac66-c024cd25e186") + ) + (segment + (start 151.003 67.183) + (end 151.003 77.453164) + (width 0.1524) + (layer "F.Cu") + (net 13) + (uuid "61926969-20a2-4277-bd27-d8ac4ad23109") + ) + (segment + (start 152.310428 78.760592) + (end 153.050592 78.760592) + (width 0.1524) + (layer "F.Cu") + (net 13) + (uuid "9fa087bf-f231-45eb-98e4-3c166253d53f") + ) + (segment + (start 148.59 64.77) + (end 151.003 67.183) + (width 0.1524) + (layer "F.Cu") + (net 13) + (uuid "a9fa3868-f173-4148-9aa3-f48c978a7705") + ) + (segment + (start 151.003 77.453164) + (end 152.310428 78.760592) + (width 0.1524) + (layer "F.Cu") + (net 13) + (uuid "c01cc64f-273b-4efa-9890-e07c1bc00632") + ) + (segment + (start 162.556592 80.260592) + (end 162.968447 80.672447) + (width 0.1524) + (layer "F.Cu") + (net 15) + (uuid "01ba337c-0520-4f09-880b-61981f2c534d") + ) + (segment + (start 161.370592 80.260592) + (end 162.556592 80.260592) + (width 0.1524) + (layer "F.Cu") + (net 15) + (uuid "e93c72bc-bacf-4254-9ac0-826f64f95268") + ) + (segment + (start 150.622 77.572164) + (end 152.310428 79.260592) + (width 0.1524) + (layer "F.Cu") + (net 16) + (uuid "33d49a40-9146-4814-b521-1765f32f816b") + ) + (segment + (start 150.622 69.342) + (end 150.622 77.572164) + (width 0.1524) + (layer "F.Cu") + (net 16) + (uuid "b22106b1-6347-40f8-97a1-1ec1e3970fde") + ) + (segment + (start 148.59 67.31) + (end 150.622 69.342) + (width 0.1524) + (layer "F.Cu") + (net 16) + (uuid "c0f027e4-4a2b-49db-b4ea-16ad78f74a7d") + ) + (segment + (start 152.310428 79.260592) + (end 153.050592 79.260592) + (width 0.1524) + (layer "F.Cu") + (net 16) + (uuid "ddd6605c-045c-4968-8e3b-18c96af4eda1") + ) + (segment + (start 150.241 71.501) + (end 150.241 78.191164) + (width 0.1524) + (layer "F.Cu") + (net 17) + (uuid "00705002-7e9d-431e-9c72-61df7535ed20") + ) + (segment + (start 150.241 78.191164) + (end 152.310428 80.260592) + (width 0.1524) + (layer "F.Cu") + (net 17) + (uuid "099857cc-0ef8-439a-85a1-69dc73231b54") + ) + (segment + (start 148.59 69.85) + (end 150.241 71.501) + (width 0.1524) + (layer "F.Cu") + (net 17) + (uuid "63f384c1-2395-4d9e-852c-5f20bc1c3712") + ) + (segment + (start 152.310428 80.260592) + (end 153.050592 80.260592) + (width 0.1524) + (layer "F.Cu") + (net 17) + (uuid "eb973d5e-39b1-4416-92fd-a5ac7557f868") + ) + (segment + (start 148.59 80.01) + (end 150.840592 82.260592) + (width 0.1524) + (layer "F.Cu") + (net 18) + (uuid "7528df81-da13-496d-904f-53d286169266") + ) + (segment + (start 150.840592 82.260592) + (end 153.050592 82.260592) + (width 0.1524) + (layer "F.Cu") + (net 18) + (uuid "96e3ebd8-6564-42f9-b9db-23fda87465fb") + ) + (segment + (start 148.800592 82.760592) + (end 153.050592 82.760592) + (width 0.1524) + (layer "F.Cu") + (net 19) + (uuid "1f907db1-c0d5-4a29-91a5-4c3609493cab") + ) + (segment + (start 148.59 82.55) + (end 148.800592 82.760592) + (width 0.1524) + (layer "F.Cu") + (net 19) + (uuid "6d727554-50ed-4da9-bd07-0e2b79dcbbb7") + ) + (segment + (start 148.59 77.540164) + (end 152.310428 81.260592) + (width 0.1524) + (layer "F.Cu") + (net 20) + (uuid "2298bf0b-0f78-46e2-832c-1cec6ab8da0f") + ) + (segment + (start 148.59 77.47) + (end 148.59 77.540164) + (width 0.1524) + (layer "F.Cu") + (net 20) + (uuid "531122f4-dfb3-49cb-8199-63ea6e8790aa") + ) + (segment + (start 152.310428 81.260592) + (end 153.050592 81.260592) + (width 0.1524) + (layer "F.Cu") + (net 20) + (uuid "9949f3cd-bf84-465c-8e5f-6f9e4d1889e1") + ) + (segment + (start 152.310428 80.760592) + (end 153.050592 80.760592) + (width 0.1524) + (layer "F.Cu") + (net 21) + (uuid "13e8f288-574e-4ccf-b084-2861bc1c6622") + ) + (segment + (start 148.59 72.39) + (end 149.86 73.66) + (width 0.1524) + (layer "F.Cu") + (net 21) + (uuid "a57a005a-b107-4ed6-8637-dcb676d1c851") + ) + (segment + (start 149.86 78.310164) + (end 152.310428 80.760592) + (width 0.1524) + (layer "F.Cu") + (net 21) + (uuid "e01ea467-48b6-4e36-8276-1f054f087301") + ) + (segment + (start 149.86 73.66) + (end 149.86 78.310164) + (width 0.1524) + (layer "F.Cu") + (net 21) + (uuid "f20dd903-347d-4e63-bb1b-d3a7f9d5209f") + ) + (segment + (start 154.884348 86.487) + (end 155.460592 85.910756) + (width 0.1524) + (layer "F.Cu") + (net 22) + (uuid "2f5dd9b7-f8c2-4008-800f-59ecd5dc5952") + ) + (segment + (start 152.273 86.487) + (end 154.884348 86.487) + (width 0.1524) + (layer "F.Cu") + (net 22) + (uuid "684d581f-4abc-4157-88ab-607d0d03efc8") + ) + (segment + (start 148.59 90.17) + (end 152.273 86.487) + (width 0.1524) + (layer "F.Cu") + (net 22) + (uuid "b2a0893a-30ed-4362-9fd6-dbb5d2aeed9b") + ) + (segment + (start 155.460592 85.910756) + (end 155.460592 85.170592) + (width 0.1524) + (layer "F.Cu") + (net 22) + (uuid "b3ce8116-b690-4048-ab7c-05bac3f12836") + ) + (segment + (start 160.308 66.29) + (end 162.687 63.911) + (width 0.508) + (layer "F.Cu") + (net 23) + (uuid "04e927b8-f7df-4fce-8e07-8d2ebaef49af") + ) + (segment + (start 160.308 68.072) + (end 160.308 66.29) + (width 0.508) + (layer "F.Cu") + (net 23) + (uuid "2273c1de-061b-4627-a355-57ebdbacf2f2") + ) + (segment + (start 163.631999 62.602999) + (end 163.322 62.602999) + (width 0.508) + (layer "F.Cu") + (net 23) + (uuid "2a593745-489f-4686-ba9e-37206351c994") + ) + (segment + (start 162.687 63.364999) + (end 163.322 62.729999) + (width 0.508) + (layer "F.Cu") + (net 23) + (uuid "46d95698-78d0-45cf-917f-8fbe8028edde") + ) + (segment + (start 166.37 59.695) + (end 166.37 59.864998) + (width 0.508) + (layer "F.Cu") + (net 23) + (uuid "6c8aadd6-5631-4907-97af-18fe8c84d7c2") + ) + (segment + (start 162.687 63.911) + (end 162.687 63.364999) + (width 0.508) + (layer "F.Cu") + (net 23) + (uuid "8ae98d34-1c61-4fd8-b4bb-a17b2a4ae79d") + ) + (segment + (start 166.37 59.864998) + (end 163.631999 62.602999) + (width 0.508) + (layer "F.Cu") + (net 23) + (uuid "c9027aca-215d-494a-83a1-647d6b693176") + ) + (segment + (start 153.050592 78.260592) + (end 151.384 76.594) + (width 0.1524) + (layer "F.Cu") + (net 24) + (uuid "0c35ba56-7c7a-4c0b-a617-afbeca648850") + ) + (segment + (start 151.384 74.549) + (end 152.4 73.533) + (width 0.1524) + (layer "F.Cu") + (net 24) + (uuid "22982ca0-25e0-4c1b-8f2b-2fd789e930ff") + ) + (segment + (start 151.384 76.594) + (end 151.384 74.549) + (width 0.1524) + (layer "F.Cu") + (net 24) + (uuid "cac19806-94bd-4a48-94ea-1bdf7fad99b7") + ) + (segment + (start 152.4 68.453001) + (end 155.448 71.501001) + (width 0.1524) + (layer "F.Cu") + (net 25) + (uuid "44c9c07a-cf1a-4675-acd0-206f41ced5a5") + ) + (segment + (start 155.460592 76.850592) + (end 155.460592 74.93) + (width 0.1524) + (layer "F.Cu") + (net 25) + (uuid "45ba667f-4d84-45ea-8267-3315829ef697") + ) + (segment + (start 155.448 71.501001) + (end 155.448 73.406) + (width 0.1524) + (layer "F.Cu") + (net 25) + (uuid "7bbdcbb0-de32-4afd-9bf1-5c0cee247d03") + ) + (via + (at 155.460592 74.93) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 25) + (uuid "9a1b471f-5161-4eee-8079-47c2fdfaab5e") + ) + (via + (at 155.448 73.406) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 25) + (uuid "b873fbb5-00dc-41cd-973f-97e0dbcc19a4") + ) + (segment + (start 155.460592 74.93) + (end 155.448 74.917408) + (width 0.1524) + (layer "B.Cu") + (net 25) + (uuid "6b3520b4-9472-49f3-955b-5f9e9ac94d8d") + ) + (segment + (start 155.448 74.917408) + (end 155.448 73.406) + (width 0.1524) + (layer "B.Cu") + (net 25) + (uuid "a9bdc8ac-ebc7-4405-999c-fe5f71611469") + ) + (segment + (start 156.1836 75.845275) + (end 156.1836 74.168) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "1787c62a-0ff7-4dd0-9fd9-e6d764118331") + ) + (segment + (start 156.73 62.19) + (end 156.73 65.407) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "1d017873-f791-4043-b105-9f9bca9915ee") + ) + (segment + (start 157.73 62.19) + (end 157.73 61.238) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "368e1840-329f-4247-bf53-8477f1bf2542") + ) + (segment + (start 156.73 62.19) + (end 156.749569 62.209569) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "3fb8ea7d-5c0b-4db2-a05a-2432d2e2baa2") + ) + (segment + (start 156.779 61.189) + (end 156.73 61.238) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "41a8ae32-9cd9-4d31-ba7b-0878db632b6d") + ) + (segment + (start 156.73 65.407) + (end 155.782 66.355) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "48754ddc-39e6-443c-a7c0-14202e1de71a") + ) + (segment + (start 156.73 61.238) + (end 156.73 62.19) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "534aad16-e81b-4793-ba90-b9463887360c") + ) + (segment + (start 155.782 66.355) + (end 155.784536 66.355) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "611ea17d-a354-4681-9b11-5f2fa84af127") + ) + (segment + (start 156.033392 76.777792) + (end 156.033392 76.037628) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "6151fac7-67c5-4271-9063-a0c150ad201c") + ) + (segment + (start 155.694 74.168) + (end 156.1836 74.168) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "63228655-219b-4c4e-b03e-076950d81786") + ) + (segment + (start 156.1836 73.944992) + (end 156.1846 73.943992) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "6d3d685a-f131-4295-8a83-c9e365ab8528") + ) + (segment + (start 156.1836 74.168) + (end 156.1836 73.944992) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "6e1339be-6666-48b9-84fe-c0cf6b54aff3") + ) + (segment + (start 156.1846 66.7576) + (end 155.782 66.355) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "71cdd795-6000-4ff8-b921-3e10dbd69509") + ) + (segment + (start 156.033392 76.037628) + (end 156.107392 75.963628) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "94b1f051-b451-4441-8e9c-1a0b75773150") + ) + (segment + (start 156.107392 75.963628) + (end 156.107392 75.921482) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "97cc4ae0-319c-4b50-a936-6e2c209b3232") + ) + (segment + (start 156.107392 75.921482) + (end 156.1836 75.845275) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "a876b2d8-a124-4831-868e-2693cd0e45e0") + ) + (segment + (start 155.960592 76.850592) + (end 156.033392 76.777792) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "be3a4f73-367a-4b67-a990-c2e3d21d9f47") + ) + (segment + (start 157.73 61.238) + (end 157.681 61.189) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "c20e337a-b499-4087-8b1f-73ac7467d0f8") + ) + (segment + (start 157.681 61.189) + (end 156.779 61.189) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "d81ee735-fecd-40bd-9bc1-f5213852dfa5") + ) + (segment + (start 156.1846 73.943992) + (end 156.1846 66.7576) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "df4a004f-c2bb-412b-add8-8f7c362742a0") + ) + (segment + (start 155.782 66.355) + (end 156.042843 66.355) + (width 0.1524) + (layer "F.Cu") + (net 26) + (uuid "e8fc663f-fc0e-4503-a456-92b676430f35") + ) + (segment + (start 156.465 73.552137) + (end 156.465 66.786822) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "0d561425-a110-4f91-95b1-e132850a79eb") + ) + (segment + (start 158.23 63.131) + (end 158.23 62.19) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "30dea66f-33fe-4571-9fab-f9b74e3e4b3e") + ) + (segment + (start 156.464 73.553137) + (end 156.465 73.552137) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "4f07ead0-3c5a-4ee1-9fda-d6c55b53ac92") + ) + (segment + (start 158.1938 63.1672) + (end 158.23 63.131) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "58c9515b-839c-46d2-b140-379e74ca39b3") + ) + (segment + (start 156.460592 76.850592) + (end 156.460592 76.110593) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "6fa38329-0643-4d10-b159-b770bef55417") + ) + (segment + (start 157.23 63.0944) + (end 157.23 63.523) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "8569a92c-4c08-43a9-8e14-80eb31becebe") + ) + (segment + (start 156.465 66.786822) + (end 158.162 65.089822) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "9f137cb2-3ec6-45c0-8848-8be2098fe545") + ) + (segment + (start 157.23 62.19) + (end 157.23 63.0944) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "a1bc856c-5611-4111-885e-d107ad23f7ef") + ) + (segment + (start 156.464 76.107185) + (end 156.464 73.553137) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "a42b4871-4886-4b25-8762-aed456307584") + ) + (segment + (start 157.23 63.0944) + (end 157.3028 63.1672) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "c0d6aa58-910f-47f7-a3f4-fdd30c5da2a7") + ) + (segment + (start 158.162 65.089822) + (end 158.162 64.455) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "c1dbdda1-aadf-404b-b85b-7fbc5a456ab4") + ) + (segment + (start 156.460592 76.110593) + (end 156.464 76.107185) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "cd692b0d-5e8b-4c1f-968c-c9d9718ec435") + ) + (segment + (start 157.23 63.523) + (end 158.162 64.455) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "e1af9401-181b-4e0a-a322-d809a1516973") + ) + (segment + (start 157.3028 63.1672) + (end 158.1938 63.1672) + (width 0.1524) + (layer "F.Cu") + (net 27) + (uuid "e5064463-070c-450f-a5c5-faa1b3db561e") + ) + (segment + (start 151.4348 99.8468) + (end 151.4348 102.5652) + (width 0.1524) + (layer "F.Cu") + (net 28) + (uuid "02a0c9f0-db1d-44b0-8117-ae889f95aca4") + ) + (segment + (start 151.4348 102.5652) + (end 148.59 105.41) + (width 0.1524) + (layer "F.Cu") + (net 28) + (uuid "09870959-d418-461c-956e-30fc996ee192") + ) + (segment + (start 162.687 91.2374) + (end 157.5314 96.393) + (width 0.1524) + (layer "F.Cu") + (net 28) + (uuid "2827d6c6-084c-4c80-bb51-a83b8c683031") + ) + (segment + (start 154.8886 96.393) + (end 151.4348 99.8468) + (width 0.1524) + (layer "F.Cu") + (net 28) + (uuid "2dbb1c25-7e8a-445a-8976-0cf36e18379e") + ) + (segment + (start 157.5314 96.393) + (end 154.8886 96.393) + (width 0.1524) + (layer "F.Cu") + (net 28) + (uuid "6da08458-13e4-44db-bc17-60ffed257129") + ) + (segment + (start 161.370592 83.760592) + (end 162.687 85.077) + (width 0.1524) + (layer "F.Cu") + (net 28) + (uuid "7872c0c9-af3b-4e66-a37e-cabc7837ddf9") + ) + (segment + (start 162.687 85.077) + (end 162.687 91.2374) + (width 0.1524) + (layer "F.Cu") + (net 28) + (uuid "eadb9799-61bb-43bb-b0b7-6bce80c9e4c4") + ) + (segment + (start 163.068 84.217836) + (end 163.068 102.113) + (width 0.1524) + (layer "F.Cu") + (net 29) + (uuid "0406e23b-8d94-4b25-8cf9-b3b238fae92d") + ) + (segment + (start 163.068 102.113) + (end 166.37 105.415) + (width 0.1524) + (layer "F.Cu") + (net 29) + (uuid "18b5e2ae-c2a5-4e5e-aa07-389f8b0e0234") + ) + (segment + (start 161.370592 83.260592) + (end 162.110756 83.260592) + (width 0.1524) + (layer "F.Cu") + (net 29) + (uuid "d59e6a67-feb7-4177-b3e4-62805e0e90a3") + ) + (segment + (start 162.110756 83.260592) + (end 163.068 84.217836) + (width 0.1524) + (layer "F.Cu") + (net 29) + (uuid "ff642e61-85e5-452d-9b29-4637f397de94") + ) + (segment + (start 156.22051 95.25) + (end 148.59 95.25) + (width 0.1524) + (layer "F.Cu") + (net 30) + (uuid "0b1cacc2-0111-43d9-bdf9-74164af49075") + ) + (segment + (start 159.315195 86.202807) + (end 159.617388 86.505) + (width 0.1524) + (layer "F.Cu") + (net 30) + (uuid "4179f086-fc21-41ca-9e4e-1f00469c8367") + ) + (segment + (start 159.252643 86.202807) + (end 159.315195 86.202807) + (width 0.1524) + (layer "F.Cu") + (net 30) + (uuid "5e39f34a-f723-43e6-9119-e1b576452fd5") + ) + (segment + (start 158.960592 85.910756) + (end 159.252643 86.202807) + (width 0.1524) + (layer "F.Cu") + (net 30) + (uuid "7e55ef9d-19dd-4b68-9292-05c84ee5e483") + ) + (segment + (start 158.960592 85.170592) + (end 158.960592 85.910756) + (width 0.1524) + (layer "F.Cu") + (net 30) + (uuid "8a389191-8269-47a1-9142-371a670d6248") + ) + (segment + (start 161.204199 90.266311) + (end 156.22051 95.25) + (width 0.1524) + (layer "F.Cu") + (net 30) + (uuid "8f1c900d-66ff-458b-bcc8-f63041ae92b3") + ) + (segment + (start 161.204199 87.417199) + (end 161.204199 90.266311) + (width 0.1524) + (layer "F.Cu") + (net 30) + (uuid "b8863320-9fd0-4127-9f22-855da715a170") + ) + (segment + (start 160.292 86.505) + (end 161.204199 87.417199) + (width 0.1524) + (layer "F.Cu") + (net 30) + (uuid "de23ca55-2965-4b02-b6c5-96f5bd86d806") + ) + (segment + (start 159.617388 86.505) + (end 160.292 86.505) + (width 0.1524) + (layer "F.Cu") + (net 30) + (uuid "ee46ec09-d959-43c9-b2fe-ab318479ab7d") + ) + (segment + (start 159.460592 85.170592) + (end 159.460592 85.910756) + (width 0.1524) + (layer "F.Cu") + (net 31) + (uuid "095bb441-be7d-4fcc-a58f-c1fc197641c6") + ) + (segment + (start 159.460592 85.910756) + (end 159.773436 86.2236) + (width 0.1524) + (layer "F.Cu") + (net 31) + (uuid "1099f003-1f0d-4d6d-8f4e-eede6c680841") + ) + (segment + (start 156.246565 95.631) + (end 150.749 95.631) + (width 0.1524) + (layer "F.Cu") + (net 31) + (uuid "42acdd77-90d4-4736-973f-f2cec1500acb") + ) + (segment + (start 159.773436 86.2236) + (end 160.531305 86.2236) + (width 0.1524) + (layer "F.Cu") + (net 31) + (uuid "686af760-e284-4050-a219-c4f532d9083d") + ) + (segment + (start 160.531305 86.2236) + (end 161.544 87.236295) + (width 0.1524) + (layer "F.Cu") + (net 31) + (uuid "973f9fa8-6a3c-483d-9dc4-c6428430a768") + ) + (segment + (start 150.749 95.631) + (end 148.59 97.79) + (width 0.1524) + (layer "F.Cu") + (net 31) + (uuid "a39241f4-e9d6-450a-8a99-54b1d80497d8") + ) + (segment + (start 161.544 90.333565) + (end 156.246565 95.631) + (width 0.1524) + (layer "F.Cu") + (net 31) + (uuid "d9da9bc1-28e2-4df8-90c8-3b016c11c9f3") + ) + (segment + (start 161.544 87.236295) + (end 161.544 90.333565) + (width 0.1524) + (layer "F.Cu") + (net 31) + (uuid "e391d3b4-dabc-4bdc-a8cc-23cad68b0ac4") + ) + (segment + (start 163.83 83.979836) + (end 163.83 95.255) + (width 0.1524) + (layer "F.Cu") + (net 32) + (uuid "19ea00b5-77a6-4d78-92f0-ba1102ed4176") + ) + (segment + (start 163.83 95.255) + (end 166.37 97.795) + (width 0.1524) + (layer "F.Cu") + (net 32) + (uuid "87a951a6-5d0a-4d75-82b5-484dc8d0cb3a") + ) + (segment + (start 161.370592 82.260592) + (end 162.110756 82.260592) + (width 0.1524) + (layer "F.Cu") + (net 32) + (uuid "d9aa595f-7d59-43b2-9de5-bb38aad728eb") + ) + (segment + (start 162.110756 82.260592) + (end 163.83 83.979836) + (width 0.1524) + (layer "F.Cu") + (net 32) + (uuid "ddb36cd3-7d9e-49b0-b5d9-105af3bbf141") + ) + (segment + (start 157.960592 76.850592) + (end 157.960592 74.373407) + (width 0.1524) + (layer "F.Cu") + (net 33) + (uuid "70dca626-32a6-48be-96c9-1c2ad781f639") + ) + (segment + (start 157.960592 74.373407) + (end 158.75 73.583999) + (width 0.1524) + (layer "F.Cu") + (net 33) + (uuid "d4b656fe-ed5d-49d7-9e69-00f24a90f6c9") + ) + (segment + (start 150.6728 98.2472) + (end 150.6728 100.7872) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "071d614a-4243-463a-be9e-9e383d6c2a2f") + ) + (segment + (start 159.960592 85.170592) + (end 161.925 87.135) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "1eaa0997-2f34-4df2-ab06-42b91e2c5fda") + ) + (segment + (start 161.925 87.135) + (end 161.925 90.551) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "3f018dca-70c1-4f06-bcc5-ae29cab71cfd") + ) + (segment + (start 157.58 94.896) + (end 157.4524 94.896) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "4318302a-b8c4-4b96-ab01-6854a205ccc1") + ) + (segment + (start 161.925 90.551) + (end 157.58 94.896) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "722af48f-62e9-41fd-9c77-0026bab60d9b") + ) + (segment + (start 150.6728 100.7872) + (end 148.59 102.87) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "7514ee82-851e-4d3e-ab6d-d353fbd15514") + ) + (segment + (start 157.126 95.2224) + (end 157.126 95.35) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "8b64c965-0de5-44ad-a03d-66dd341ceb77") + ) + (segment + (start 152.908 96.012) + (end 150.6728 98.2472) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "c9fd893d-106a-4001-a522-164cf4c184fd") + ) + (segment + (start 157.4524 94.896) + (end 157.126 95.2224) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "cb65d512-14c6-4991-b7c2-b5f94885be9a") + ) + (segment + (start 156.464 96.012) + (end 152.908 96.012) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "e38749de-05ff-4845-b94c-e5607bde7a26") + ) + (segment + (start 157.126 95.35) + (end 156.464 96.012) + (width 0.1524) + (layer "F.Cu") + (net 34) + (uuid "edbe78b6-ab5a-4117-ba8a-02c58c4fd709") + ) + (segment + (start 162.110756 81.760592) + (end 164.211 83.860836) + (width 0.1524) + (layer "F.Cu") + (net 35) + (uuid "01056405-6857-46e5-922b-92e4c45b54b3") + ) + (segment + (start 164.211 83.860836) + (end 164.211 93.096) + (width 0.1524) + (layer "F.Cu") + (net 35) + (uuid "1cd74201-f1ca-4318-b24f-3ce19cef27ec") + ) + (segment + (start 161.370592 81.760592) + (end 162.110756 81.760592) + (width 0.1524) + (layer "F.Cu") + (net 35) + (uuid "c8d782a9-3be0-4ac2-9724-ccaec6a0e063") + ) + (segment + (start 164.211 93.096) + (end 166.37 95.255) + (width 0.1524) + (layer "F.Cu") + (net 35) + (uuid "cff89b21-dc29-49a8-b75c-8eb264b4dbbb") + ) + (segment + (start 163.449 84.098836) + (end 163.449 99.954) + (width 0.1524) + (layer "F.Cu") + (net 36) + (uuid "3faf1af9-7a5d-4172-b8cc-f70d76ef18d7") + ) + (segment + (start 163.449 99.954) + (end 166.37 102.875) + (width 0.1524) + (layer "F.Cu") + (net 36) + (uuid "6c4bc95a-47ae-4e0c-aca5-c7bd11c06d75") + ) + (segment + (start 161.370592 82.760592) + (end 162.110756 82.760592) + (width 0.1524) + (layer "F.Cu") + (net 36) + (uuid "e2a9e8d1-aa84-494c-b391-9191cfb09c4a") + ) + (segment + (start 162.110756 82.760592) + (end 163.449 84.098836) + (width 0.1524) + (layer "F.Cu") + (net 36) + (uuid "f7ec0a1c-feb8-4519-9213-cbe68fcf1a1d") + ) + (segment + (start 148.59 92.71) + (end 150.241 91.059) + (width 0.1524) + (layer "F.Cu") + (net 37) + (uuid "4d41e2c8-068d-4863-8bae-9adeff0d7cef") + ) + (segment + (start 155.960592 85.910756) + (end 155.960592 85.170592) + (width 0.1524) + (layer "F.Cu") + (net 37) + (uuid "4e16d507-e19c-425b-9129-34eb97cde475") + ) + (segment + (start 152.8058 86.8172) + (end 155.054148 86.8172) + (width 0.1524) + (layer "F.Cu") + (net 37) + (uuid "524264f0-8927-46d8-886f-ea8f7a838f03") + ) + (segment + (start 155.054148 86.8172) + (end 155.960592 85.910756) + (width 0.1524) + (layer "F.Cu") + (net 37) + (uuid "a56faf60-234d-4a55-bd2e-3e756eb0556e") + ) + (segment + (start 150.241 91.059) + (end 150.241 89.382) + (width 0.1524) + (layer "F.Cu") + (net 37) + (uuid "a97a5c90-76c4-46ad-8b50-fd322b01b527") + ) + (segment + (start 150.241 89.382) + (end 152.8058 86.8172) + (width 0.1524) + (layer "F.Cu") + (net 37) + (uuid "c26619c4-5eab-42b4-8a35-db2823d067fb") + ) + (segment + (start 148.59 92.71) + (end 148.59 91.821) + (width 0.1524) + (layer "F.Cu") + (net 37) + (uuid "d4e660c1-a716-46eb-a084-e2f2b793aa66") + ) + (segment + (start 154.683556 86.187792) + (end 154.960592 85.910756) + (width 0.1524) + (layer "F.Cu") + (net 38) + (uuid "0060de27-def9-46af-9f27-e85479818d33") + ) + (segment + (start 154.960592 85.910756) + (end 154.960592 85.170592) + (width 0.1524) + (layer "F.Cu") + (net 38) + (uuid "1d8aa272-a44f-4f6d-9346-171d6cde8818") + ) + (segment + (start 148.59 85.09) + (end 149.687792 86.187792) + (width 0.1524) + (layer "F.Cu") + (net 38) + (uuid "b1c5bdce-99ed-47da-82f5-fe03df1878cd") + ) + (segment + (start 149.687792 86.187792) + (end 154.683556 86.187792) + (width 0.1524) + (layer "F.Cu") + (net 38) + (uuid "bcb167d0-da4e-41d3-8d08-7c0e46b38f5f") + ) + (segment + (start 165.2428 83.9678) + (end 166.37 85.095) + (width 0.1524) + (layer "F.Cu") + (net 39) + (uuid "3250a0e2-7c99-4d7e-a07b-02b63dadd180") + ) + (segment + (start 163.072592 79.760592) + (end 165.2428 81.9308) + (width 0.1524) + (layer "F.Cu") + (net 39) + (uuid "619ec9d8-2a2d-45c0-a767-cc188fd683dd") + ) + (segment + (start 165.2428 81.9308) + (end 165.2428 83.9678) + (width 0.1524) + (layer "F.Cu") + (net 39) + (uuid "62f09899-95d8-4356-91d7-f34bd6153450") + ) + (segment + (start 161.370592 79.760592) + (end 163.072592 79.760592) + (width 0.1524) + (layer "F.Cu") + (net 39) + (uuid "bfb0760a-00fa-4fa0-896c-bbf4d07aa355") + ) + (segment + (start 164.71602 69.855) + (end 166.37 69.855) + (width 0.1524) + (layer "F.Cu") + (net 40) + (uuid "00030b33-1132-4984-8a58-92188b98d46d") + ) + (segment + (start 158.460592 76.850592) + (end 158.460592 76.110428) + (width 0.1524) + (layer "F.Cu") + (net 40) + (uuid "2b255ace-9417-4f09-a233-4b79a649af52") + ) + (segment + (start 158.460592 76.110428) + (end 164.71602 69.855) + (width 0.1524) + (layer "F.Cu") + (net 40) + (uuid "c4b583cb-0485-4c1e-993f-406242264ff4") + ) + (segment + (start 161.370592 79.260592) + (end 163.075592 79.260592) + (width 0.1524) + (layer "F.Cu") + (net 41) + (uuid "69096ce4-73c1-4e58-ba86-ff490a54e34f") + ) + (segment + (start 163.075592 79.260592) + (end 166.37 82.555) + (width 0.1524) + (layer "F.Cu") + (net 41) + (uuid "cec7462d-72ef-4657-85a9-cea74f95678d") + ) + (segment + (start 159.460592 76.850592) + (end 159.460592 76.110428) + (width 0.1524) + (layer "F.Cu") + (net 42) + (uuid "214c7710-50cf-4bc4-8961-7551bb6a2de3") + ) + (segment + (start 161.65702 73.914) + (end 162.809 73.914) + (width 0.1524) + (layer "F.Cu") + (net 42) + (uuid "60c0725c-1494-4c4d-889f-f2d4f33dccab") + ) + (segment + (start 162.809 73.914) + (end 166.37 77.475) + (width 0.1524) + (layer "F.Cu") + (net 42) + (uuid "d8493ff6-efc6-42a6-8b13-06236ba85dfb") + ) + (segment + (start 159.460592 76.110428) + (end 161.65702 73.914) + (width 0.1524) + (layer "F.Cu") + (net 42) + (uuid "ede79381-e34b-4664-a725-10203d4a6697") + ) + (segment + (start 158.960592 76.110428) + (end 162.67602 72.395) + (width 0.1524) + (layer "F.Cu") + (net 43) + (uuid "42b455b8-333c-4821-99aa-cd3602e63adf") + ) + (segment + (start 158.960592 76.850592) + (end 158.960592 76.110428) + (width 0.1524) + (layer "F.Cu") + (net 43) + (uuid "e9c8017b-60cf-4e65-b5f4-7eedd1e28dee") + ) + (segment + (start 162.67602 72.395) + (end 166.37 72.395) + (width 0.1524) + (layer "F.Cu") + (net 43) + (uuid "ff24681d-e935-4bfa-93a5-aecb0f665242") + ) + (segment + (start 162.56 74.295) + (end 164.592 76.327) + (width 0.1524) + (layer "F.Cu") + (net 44) + (uuid "042a8849-c900-47d7-b4ff-1ec460c2fba2") + ) + (segment + (start 159.960592 76.132408) + (end 161.798 74.295) + (width 0.1524) + (layer "F.Cu") + (net 44) + (uuid "08a27f23-5e50-4518-b791-cf0188b3fb9f") + ) + (segment + (start 164.592 78.237) + (end 166.37 80.015) + (width 0.1524) + (layer "F.Cu") + (net 44) + (uuid "2aedf849-2c2a-47db-8977-23f99e7a087e") + ) + (segment + (start 164.592 76.327) + (end 164.592 78.237) + (width 0.1524) + (layer "F.Cu") + (net 44) + (uuid "d6e19a2b-5a1f-4023-a087-060e27a99d9c") + ) + (segment + (start 159.960592 76.850592) + (end 159.960592 76.132408) + (width 0.1524) + (layer "F.Cu") + (net 44) + (uuid "fb6ef263-4d3b-44ea-b6f8-868249278fd1") + ) + (segment + (start 161.798 74.295) + (end 162.56 74.295) + (width 0.1524) + (layer "F.Cu") + (net 44) + (uuid "fbadda37-ae1c-4cf7-9ae4-aa7caef5ff5b") + ) + (segment + (start 164.9624 88.7674) + (end 166.37 90.175) + (width 0.1524) + (layer "F.Cu") + (net 45) + (uuid "499ca014-eb47-4dcd-9d52-6c69c78e022f") + ) + (segment + (start 161.370592 80.760592) + (end 162.110756 80.760592) + (width 0.1524) + (layer "F.Cu") + (net 45) + (uuid "4cf6aa13-07b9-4ffa-8a78-eaba6bbafeed") + ) + (segment + (start 164.9624 83.612236) + (end 164.9624 88.7674) + (width 0.1524) + (layer "F.Cu") + (net 45) + (uuid "5adca5ad-7e26-4d68-b7c7-3dde7bd0c8ff") + ) + (segment + (start 162.110756 80.760592) + (end 164.9624 83.612236) + (width 0.1524) + (layer "F.Cu") + (net 45) + (uuid "f1e2c99e-55e0-4907-bf41-717563ca33b0") + ) + (segment + (start 164.592 90.937) + (end 166.37 92.715) + (width 0.1524) + (layer "F.Cu") + (net 46) + (uuid "1d198074-fc8f-42ed-b0bb-9e442e71223c") + ) + (segment + (start 162.110756 81.260592) + (end 164.592 83.741836) + (width 0.1524) + (layer "F.Cu") + (net 46) + (uuid "6e454fd6-1492-4fd5-b44a-a8b3d9cd2396") + ) + (segment + (start 164.592 83.741836) + (end 164.592 90.937) + (width 0.1524) + (layer "F.Cu") + (net 46) + (uuid "94037312-f40c-4e45-8801-e557696b8834") + ) + (segment + (start 161.370592 81.260592) + (end 162.110756 81.260592) + (width 0.1524) + (layer "F.Cu") + (net 46) + (uuid "cf4e5153-d81d-4bf4-8a89-df0d10705a36") + ) + (segment + (start 157.460592 80.818823) + (end 157.460592 83.693) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "02dc54ce-5888-4020-97f4-f1c2af5bb9dd") + ) + (segment + (start 160.6338 77.325193) + (end 160.6338 77.645615) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "164993fe-2db0-474e-84a2-127f9218f18c") + ) + (segment + (start 161.668 76.290993) + (end 160.6338 77.325193) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "2f3cee48-a250-4c91-ac39-a40dff7e7ea6") + ) + (segment + (start 160.655 98.425) + (end 158.6992 96.4692) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "42873d42-5141-488a-ae7a-01e66d67936e") + ) + (segment + (start 159.258 83.693) + (end 159.723164 83.693) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "5a042a9e-0ab0-4770-8f8c-fe7699e46ae7") + ) + (segment + (start 166.111 67.315) + (end 166.37 67.315) + (width 0.508) + (layer "F.Cu") + (net 47) + (uuid "6b614f46-4710-4754-ba67-29ca02068f28") + ) + (segment + (start 160.655 72.000999) + (end 161.651999 72.000999) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "8902a93a-7bce-47e9-b49c-5772edbf5ccc") + ) + (segment + (start 162.306 90.8304) + (end 157.6832 95.4532) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "9d3c1d9a-feb3-4e66-9b51-5f433c3ed5e7") + ) + (segment + (start 162.306 86.275836) + (end 162.306 90.8304) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "a0ce9750-f6ab-4f97-8da8-adc78509cf2e") + ) + (segment + (start 161.651999 72.000999) + (end 161.668 72.017) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "aa417345-4646-4ea8-9f40-9ac749f46b9b") + ) + (segment + (start 159.723164 83.693) + (end 162.306 86.275836) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "c7167d9f-2f9b-49b5-a8a2-ef869a772a8c") + ) + (segment + (start 157.460592 85.170592) + (end 157.460592 83.693) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "d49e3145-1c5d-4806-b402-fa647e4112e6") + ) + (segment + (start 160.6338 77.645615) + (end 157.460592 80.818823) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "d59ac205-7d60-471a-b91a-b549bad72f34") + ) + (segment + (start 160.655 101.43) + (end 160.655 98.425) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "d7a632ad-4a51-4349-a7a0-90bb240158c3") + ) + (segment + (start 166.37 67.315) + (end 161.668 72.017) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "e3e05279-0c1e-42eb-b264-613e6b7df4d3") + ) + (segment + (start 161.668 75.5904) + (end 161.668 76.290993) + (width 0.1524) + (layer "F.Cu") + (net 47) + (uuid "fa7a183d-94ac-421a-8a68-02605b6b5d0a") + ) + (via + (at 159.258 83.693) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 47) + (uuid "2b89aa35-0924-4ad7-93d6-e5628c12f964") + ) + (via + (at 157.460592 83.693) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 47) + (uuid "2e4b4aba-da8e-4911-adc9-b50119ae5e2d") + ) + (via + (at 157.6832 95.4532) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 47) + (uuid "670c4a0f-594a-4b07-8530-e2694000d1f5") + ) + (via + (at 161.668 75.5904) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 47) + (uuid "881703f2-1a03-43be-b514-b478022c6aae") + ) + (via + (at 158.6992 96.4692) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 47) + (uuid "d70f6224-0dc7-426e-bafd-674fa45ec008") + ) + (via + (at 161.668 72.017) + (size 0.6) + (drill 0.3) + (layers "F.Cu" "B.Cu") + (net 47) + (uuid "d7c57c13-dd38-4d2a-a40e-e8f4ff2d8f81") + ) + (segment + (start 157.460592 83.693) + (end 159.258 83.693) + (width 0.1524) + (layer "B.Cu") + (net 47) + (uuid "4a219d5c-7051-462b-b0f7-e3ce01dd1a52") + ) + (segment + (start 161.671 72.02) + (end 161.668 72.017) + (width 0.1524) + (layer "B.Cu") + (net 47) + (uuid "a6dfa2c8-cba6-4c52-8de3-d2bf93d1a35d") + ) + (segment + (start 161.668 75.5904) + (end 161.671 75.5874) + (width 0.1524) + (layer "B.Cu") + (net 47) + (uuid "cc3f8119-1cd6-44e1-b218-b098715bf445") + ) + (segment + (start 161.671 75.5874) + (end 161.671 72.02) + (width 0.1524) + (layer "B.Cu") + (net 47) + (uuid "ccb2af3f-b8c6-4aaf-b0f2-88a7ceaecabe") + ) + (segment + (start 158.6992 96.4692) + (end 157.6832 95.4532) + (width 0.1524) + (layer "B.Cu") + (net 47) + (uuid "d6352579-95e4-4b9e-86f9-28ab62c19519") + ) + (segment + (start 158.75 71.704001) + (end 158.75 70.239) + (width 0.1524) + (layer "F.Cu") + (net 48) + (uuid "06c87f8f-513e-4543-8e84-72d98a5cef87") + ) + (segment + (start 158.75 70.239) + (end 158.758 70.231) + (width 0.1524) + (layer "F.Cu") + (net 48) + (uuid "5447d4fa-0356-4d71-88e5-3bb2000704d3") + ) + (segment + (start 157.243001 87.766) + (end 157.861 88.383999) + (width 0.1524) + (layer "F.Cu") + (net 49) + (uuid "4b2cfd5e-d6d3-403f-aeaa-ba00ab23798f") + ) + (segment + (start 157.861 88.383999) + (end 157.861 89.289001) + (width 0.1524) + (layer "F.Cu") + (net 49) + (uuid "afae11e0-0ef7-4376-ad24-7f4da7d155d7") + ) + (segment + (start 156.416798 87.766) + (end 157.243001 87.766) + (width 0.1524) + (layer "F.Cu") + (net 49) + (uuid "f317c107-e92c-457d-809d-7db7aff76e7c") + ) + (zone + (net 1) + (net_name "GND") + (layer "F.Cu") + (uuid "1851e496-a7d0-4c31-97ea-c1cab011b955") + (hatch edge 0.5) + (priority 1) + (connect_pads no + (clearance 0.254) + ) + (min_thickness 0.6) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.6) + (thermal_bridge_width 0.6) + ) + (polygon + (pts + (xy 176.911 50.766568) (xy 138.811 50.766568) (xy 138.938 114.266568) (xy 176.911 114.266568) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 152.31272 99.67093) (xy 152.408715 99.724399) (xy 152.478913 99.808935) (xy 152.513833 99.913121) + (xy 152.5167 99.95443) (xy 152.5167 104.16594) (xy 152.539235 104.250043) (xy 152.539236 104.250046) + (xy 152.571253 104.3055) (xy 152.582774 104.325455) (xy 152.661385 104.404066) (xy 152.661391 104.404071) + (xy 153.070078 104.812758) (xy 153.132176 104.903411) (xy 153.157334 105.010374) (xy 153.15594 105.056144) + (xy 153.1505 105.106738) (xy 153.1505 106.053257) (xy 153.156959 106.11334) (xy 153.15696 106.113343) + (xy 153.215131 106.269302) (xy 153.21192 106.270499) (xy 153.235114 106.341672) (xy 153.229121 106.45139) + (xy 153.183897 106.551535) (xy 153.105551 106.62858) (xy 153.004663 106.672121) (xy 152.938646 106.6795) + (xy 149.604348 106.6795) (xy 149.496337 106.659309) (xy 149.402913 106.601464) (xy 149.336694 106.513776) + (xy 149.306623 106.408088) (xy 149.316762 106.298675) (xy 149.365741 106.200312) (xy 149.392923 106.169075) + (xy 149.432465 106.129533) (xy 149.534653 105.988884) (xy 149.61358 105.833981) (xy 149.667303 105.668638) + (xy 149.6945 105.496926) (xy 149.6945 105.323074) (xy 149.667303 105.151362) (xy 149.637847 105.060707) + (xy 149.623673 104.951746) (xy 149.649818 104.84502) (xy 149.710786 104.756892) (xy 151.613237 102.854442) + (xy 151.613242 102.854438) (xy 151.637853 102.829826) (xy 151.637855 102.829826) (xy 151.699426 102.768255) + (xy 151.742964 102.692846) (xy 151.754466 102.64992) (xy 151.765501 102.608737) (xy 151.765501 102.521663) + (xy 151.765501 102.503337) (xy 151.7655 102.503319) (xy 151.7655 100.10763) (xy 151.771846 100.073678) + (xy 151.773442 100.039174) (xy 151.781861 100.020106) (xy 151.785691 99.999619) (xy 151.803874 99.970251) + (xy 151.817826 99.938654) (xy 151.83989 99.912082) (xy 151.843536 99.906195) (xy 151.853075 99.896205) + (xy 152.006275 99.743005) (xy 152.096928 99.680907) (xy 152.203891 99.655749) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 162.53332 92.09313) (xy 162.629315 92.146599) (xy 162.699513 92.231135) (xy 162.734433 92.335321) + (xy 162.7373 92.37663) (xy 162.7373 102.15654) (xy 162.753696 102.21773) (xy 162.759836 102.240646) + (xy 162.791862 102.296116) (xy 162.803374 102.316055) (xy 162.881985 102.394666) (xy 162.881991 102.394671) + (xy 165.24921 104.76189) (xy 165.311308 104.852543) (xy 165.336466 104.959506) (xy 165.322151 105.06571) + (xy 165.292697 105.15636) (xy 165.2655 105.328072) (xy 165.2655 105.501927) (xy 165.292697 105.673639) + (xy 165.346416 105.838973) (xy 165.346417 105.838975) (xy 165.425346 105.993882) (xy 165.527534 106.134532) + (xy 165.562077 106.169075) (xy 165.624175 106.259728) (xy 165.649333 106.366691) (xy 165.634152 106.47552) + (xy 165.580683 106.571515) (xy 165.496147 106.641713) (xy 165.391961 106.676633) (xy 165.350652 106.6795) + (xy 162.020779 106.6795) (xy 161.912768 106.659309) (xy 161.819344 106.601464) (xy 161.753125 106.513776) + (xy 161.723054 106.408088) (xy 161.733193 106.298675) (xy 161.745197 106.269347) (xy 161.744426 106.26906) + (xy 161.802547 106.113234) (xy 161.802547 106.113231) (xy 161.808999 106.053222) (xy 161.808999 105.106787) + (xy 161.802547 105.046765) (xy 161.802546 105.046763) (xy 161.751898 104.910973) (xy 161.665046 104.794953) + (xy 161.549025 104.708101) (xy 161.413233 104.657452) (xy 161.353213 104.651) (xy 159.956787 104.651) + (xy 159.896765 104.657452) (xy 159.896763 104.657453) (xy 159.760973 104.708101) (xy 159.644953 104.794953) + (xy 159.558101 104.910974) (xy 159.507452 105.046765) (xy 159.507452 105.046768) (xy 159.501 105.106777) + (xy 159.501 106.053212) (xy 159.507452 106.113234) (xy 159.507453 106.113236) (xy 159.565574 106.269059) + (xy 159.56241 106.270238) (xy 159.58569 106.341677) (xy 159.579695 106.451395) (xy 159.534469 106.551539) + (xy 159.456122 106.628583) (xy 159.355233 106.672122) (xy 159.289221 106.6795) (xy 155.671354 106.6795) + (xy 155.563343 106.659309) (xy 155.469919 106.601464) (xy 155.4037 106.513776) (xy 155.373629 106.408088) + (xy 155.383768 106.298675) (xy 155.395668 106.269601) (xy 155.394869 106.269303) (xy 155.447001 106.129532) + (xy 155.45304 106.113342) (xy 155.4595 106.053255) (xy 155.459499 105.106746) (xy 155.459498 105.106738) + (xy 155.453052 105.046768) (xy 155.45304 105.046658) (xy 155.402342 104.910733) (xy 155.315404 104.794596) + (xy 155.199267 104.707658) (xy 155.199266 104.707657) (xy 155.063346 104.656961) (xy 155.063344 104.65696) + (xy 155.063342 104.65696) (xy 155.003255 104.6505) (xy 153.96703 104.6505) (xy 153.859019 104.630309) + (xy 153.765595 104.572464) (xy 153.755605 104.562925) (xy 153.265675 104.072995) (xy 153.203577 103.982342) + (xy 153.178419 103.875379) (xy 153.1781 103.86157) (xy 153.1781 102.643837) (xy 153.198291 102.535826) + (xy 153.256136 102.442402) (xy 153.343824 102.376183) (xy 153.449512 102.346112) (xy 153.528002 102.351602) + (xy 153.528063 102.35104) (xy 153.543143 102.352661) (xy 153.545868 102.352852) (xy 153.546643 102.353034) + (xy 153.546658 102.35304) (xy 153.606745 102.3595) (xy 155.003254 102.359499) (xy 155.003257 102.359499) + (xy 155.039306 102.355623) (xy 155.063342 102.35304) (xy 155.199267 102.302342) (xy 155.315404 102.215404) + (xy 155.402342 102.099267) (xy 155.4319 102.020019) (xy 155.456074 101.955209) (xy 155.478352 101.918193) + (xy 155.497614 101.879512) (xy 155.506522 101.87139) (xy 155.512738 101.861064) (xy 155.546886 101.834594) + (xy 155.578818 101.805485) (xy 155.590058 101.80113) (xy 155.599585 101.793746) (xy 155.640988 101.7814) + (xy 155.68128 101.765791) (xy 155.69877 101.76417) (xy 155.704885 101.762347) (xy 155.736221 101.7607) + (xy 155.913557 101.7607) (xy 156.021568 101.780891) (xy 156.114992 101.838736) (xy 156.181211 101.926424) + (xy 156.211282 102.032112) (xy 156.201143 102.141525) (xy 156.179969 102.195441) (xy 156.168613 102.217728) + (xy 156.168612 102.217729) (xy 156.154 102.309988) (xy 156.154 102.651999) (xy 156.154002 102.652014) + (xy 156.168612 102.744267) (xy 156.168614 102.744271) (xy 156.225273 102.855472) (xy 156.313527 102.943726) + (xy 156.424728 103.000385) (xy 156.42473 103.000386) (xy 156.516991 103.014998) (xy 156.919 103.014998) + (xy 156.919015 103.014996) (xy 157.011268 103.000386) (xy 157.011272 103.000384) (xy 157.122473 102.943725) + (xy 157.210727 102.855471) (xy 157.267386 102.74427) (xy 157.267387 102.744268) (xy 157.281999 102.652009) + (xy 157.281999 102.309998) (xy 157.281997 102.309983) (xy 157.267387 102.21773) (xy 157.267385 102.217726) + (xy 157.216212 102.117292) (xy 157.185166 102.011887) (xy 157.194293 101.902385) (xy 157.216208 101.845815) + (xy 157.267868 101.744428) (xy 157.2825 101.652046) (xy 157.282499 101.309957) (xy 157.267868 101.217574) + (xy 157.211135 101.10623) (xy 157.122771 101.017866) (xy 157.12277 101.017865) (xy 157.011428 100.961133) + (xy 157.011427 100.961132) (xy 156.919048 100.946501) (xy 156.878029 100.946501) (xy 156.770018 100.92631) + (xy 156.676594 100.868465) (xy 156.610375 100.780777) (xy 156.580304 100.675089) (xy 156.590443 100.565676) + (xy 156.639422 100.467313) (xy 156.666604 100.436076) (xy 157.198085 99.904595) (xy 158.405026 98.697655) + (xy 158.448564 98.622246) (xy 158.4711 98.538138) (xy 158.4711 98.451063) (xy 158.4711 97.656132) + (xy 158.473611 97.642694) (xy 158.472326 97.629087) (xy 158.483643 97.589032) (xy 158.491291 97.548121) + (xy 158.499247 97.533805) (xy 158.502203 97.523345) (xy 158.514847 97.505737) (xy 158.531164 97.47638) + (xy 158.543804 97.459577) (xy 158.584111 97.419271) (xy 158.617057 97.362205) (xy 158.627977 97.347691) + (xy 158.655334 97.322659) (xy 158.679461 97.294499) (xy 158.695563 97.285852) (xy 158.709046 97.273516) + (xy 158.743596 97.260058) (xy 158.776268 97.242514) (xy 158.794405 97.240267) (xy 158.811435 97.233635) + (xy 158.848517 97.233567) (xy 158.885318 97.22901) (xy 158.903041 97.233467) (xy 158.921317 97.233434) + (xy 158.95592 97.246766) (xy 158.991881 97.255811) (xy 159.007348 97.266582) (xy 159.023852 97.272941) + (xy 159.048079 97.294946) (xy 159.078338 97.316018) (xy 160.236725 98.474405) (xy 160.298823 98.565058) + (xy 160.323981 98.672021) (xy 160.3243 98.68583) (xy 160.3243 100.2015) (xy 160.304109 100.309511) + (xy 160.246264 100.402935) (xy 160.158576 100.469154) (xy 160.052888 100.499225) (xy 160.025304 100.5005) + (xy 159.956743 100.5005) (xy 159.896659 100.506959) (xy 159.896656 100.50696) (xy 159.760732 100.557658) + (xy 159.644596 100.644596) (xy 159.557657 100.760733) (xy 159.506961 100.896653) (xy 159.50696 100.896656) + (xy 159.50696 100.896658) (xy 159.505005 100.914846) (xy 159.5005 100.956745) (xy 159.5005 101.903257) + (xy 159.506959 101.96334) (xy 159.50696 101.963343) (xy 159.530903 102.027535) (xy 159.557658 102.099267) + (xy 159.644596 102.215404) (xy 159.760733 102.302342) (xy 159.896658 102.35304) (xy 159.956745 102.3595) + (xy 161.353254 102.359499) (xy 161.353257 102.359499) (xy 161.389306 102.355623) (xy 161.413342 102.35304) + (xy 161.549267 102.302342) (xy 161.665404 102.215404) (xy 161.752342 102.099267) (xy 161.80304 101.963342) + (xy 161.8095 101.903255) (xy 161.809499 100.956746) (xy 161.806227 100.92631) (xy 161.80304 100.896659) + (xy 161.803039 100.896656) (xy 161.792524 100.868465) (xy 161.752342 100.760733) (xy 161.665404 100.644596) + (xy 161.549267 100.557658) (xy 161.549266 100.557657) (xy 161.413346 100.506961) (xy 161.413344 100.50696) + (xy 161.413342 100.50696) (xy 161.353255 100.5005) (xy 161.2847 100.5005) (xy 161.176689 100.480309) + (xy 161.083265 100.422464) (xy 161.017046 100.334776) (xy 160.986975 100.229088) (xy 160.9857 100.2015) + (xy 160.9857 98.381463) (xy 160.985699 98.381459) (xy 160.963164 98.297354) (xy 160.919626 98.221945) + (xy 160.858055 98.160374) (xy 160.847618 98.149937) (xy 160.847607 98.149927) (xy 159.5002 96.80252) + (xy 159.438102 96.711867) (xy 159.412944 96.604904) (xy 159.428125 96.496075) (xy 159.481594 96.40008) + (xy 159.562126 96.332153) (xy 159.573629 96.325512) (xy 159.700071 96.252511) (xy 159.803311 96.149271) + (xy 159.876312 96.022829) (xy 159.9141 95.881801) (xy 159.9141 95.735799) (xy 159.876312 95.594771) + (xy 159.803311 95.468329) (xy 159.700071 95.365089) (xy 159.70007 95.365088) (xy 159.700067 95.365086) + (xy 159.610815 95.313557) (xy 159.527369 95.242066) (xy 159.475385 95.145258) (xy 159.461881 95.036209) + (xy 159.488683 94.929646) (xy 159.548886 94.843193) (xy 162.226875 92.165205) (xy 162.317528 92.103107) + (xy 162.424491 92.077949) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 164.160525 96.106644) (xy 164.258888 96.155623) (xy 164.290122 96.182802) (xy 165.249211 97.141892) + (xy 165.311308 97.232543) (xy 165.336466 97.339506) (xy 165.322151 97.44571) (xy 165.292697 97.53636) + (xy 165.2655 97.708072) (xy 165.2655 97.881927) (xy 165.292697 98.053639) (xy 165.346416 98.218973) + (xy 165.346417 98.218975) (xy 165.346419 98.21898) (xy 165.34642 98.218981) (xy 165.425347 98.373884) + (xy 165.469899 98.435204) (xy 165.523901 98.509532) (xy 165.527535 98.514533) (xy 165.650467 98.637465) + (xy 165.791116 98.739653) (xy 165.907334 98.798869) (xy 165.994406 98.865894) (xy 166.051386 98.959848) + (xy 166.070578 99.068041) (xy 166.049391 99.175862) (xy 165.990685 99.268747) (xy 165.907335 99.331691) + (xy 165.791377 99.390774) (xy 165.650792 99.492915) (xy 165.527915 99.615792) (xy 165.425774 99.756377) + (xy 165.425769 99.756385) (xy 165.346885 99.911206) (xy 165.346879 99.911219) (xy 165.293184 100.076477) + (xy 165.266 100.248109) (xy 165.266 100.421891) (xy 165.287922 100.560299) (xy 165.284876 100.670139) + (xy 165.242358 100.771462) (xy 165.166108 100.850583) (xy 165.066426 100.896816) (xy 164.956773 100.903918) + (xy 164.85196 100.87093) (xy 164.781178 100.818498) (xy 163.867275 99.904595) (xy 163.805177 99.813942) + (xy 163.780019 99.706979) (xy 163.7797 99.69317) (xy 163.7797 96.39423) (xy 163.799891 96.286219) + (xy 163.857736 96.192795) (xy 163.945424 96.126576) (xy 164.051112 96.096505) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 157.383283 97.111673) (xy 157.421145 97.114303) (xy 157.43689 97.121694) (xy 157.453988 97.124891) + (xy 157.486257 97.144871) (xy 157.520611 97.160999) (xy 157.532621 97.173578) (xy 157.547412 97.182736) + (xy 157.570286 97.213026) (xy 157.596492 97.240473) (xy 157.609154 97.264496) (xy 157.613631 97.270424) + (xy 157.62222 97.289284) (xy 157.623689 97.292831) (xy 157.696688 97.41927) (xy 157.722125 97.444707) + (xy 157.784223 97.53536) (xy 157.809381 97.642323) (xy 157.8097 97.656132) (xy 157.8097 98.233769) + (xy 157.789509 98.34178) (xy 157.731664 98.435204) (xy 157.722125 98.445194) (xy 155.617167 100.550151) + (xy 155.526514 100.612249) (xy 155.419551 100.637407) (xy 155.310722 100.622226) (xy 155.226557 100.578087) + (xy 155.199267 100.557657) (xy 155.063346 100.506961) (xy 155.063344 100.50696) (xy 155.063342 100.50696) + (xy 155.003255 100.5005) (xy 155.003252 100.5005) (xy 153.606742 100.5005) (xy 153.54666 100.506959) + (xy 153.545854 100.50715) (xy 153.544129 100.507231) (xy 153.528059 100.508959) (xy 153.527955 100.507995) + (xy 153.436094 100.512337) (xy 153.331873 100.477524) (xy 153.247265 100.407413) (xy 153.193697 100.311472) + (xy 153.1781 100.216162) (xy 153.1781 99.48303) (xy 153.198291 99.375019) (xy 153.256136 99.281595) + (xy 153.265675 99.271605) (xy 155.345005 97.192275) (xy 155.435658 97.130177) (xy 155.542621 97.105019) + (xy 155.55643 97.1047) (xy 157.345977 97.1047) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 151.00652 89.31853) (xy 151.102515 89.371999) (xy 151.172713 89.456535) (xy 151.207633 89.560721) + (xy 151.2105 89.60203) (xy 151.2105 89.608001) (xy 151.225195 89.662847) (xy 151.225196 89.662849) + (xy 151.248288 89.749029) (xy 151.321289 89.875471) (xy 151.375677 89.929859) (xy 151.395781 89.965531) + (xy 151.431222 90.069541) (xy 151.4343 90.112332) (xy 151.4343 90.59454) (xy 151.43549 90.598981) + (xy 151.456836 90.678646) (xy 151.499029 90.751725) (xy 151.500374 90.754055) (xy 151.578985 90.832666) + (xy 151.578991 90.832671) (xy 154.577325 93.831005) (xy 154.639423 93.921658) (xy 154.664581 94.028621) + (xy 154.6649 94.04243) (xy 154.6649 94.078401) (xy 154.702687 94.219428) (xy 154.775688 94.34587) + (xy 154.838693 94.408875) (xy 154.900791 94.499528) (xy 154.925949 94.606491) (xy 154.910768 94.71532) + (xy 154.857299 94.811315) (xy 154.772763 94.881513) (xy 154.668577 94.916433) (xy 154.627268 94.9193) + (xy 149.844337 94.9193) (xy 149.736326 94.899109) (xy 149.642902 94.841264) (xy 149.577926 94.756043) + (xy 149.534655 94.671119) (xy 149.432465 94.530467) (xy 149.309532 94.407534) (xy 149.16888 94.305344) + (xy 149.078177 94.259129) (xy 149.053215 94.246411) (xy 148.966144 94.179386) (xy 148.909163 94.085432) + (xy 148.889971 93.977239) (xy 148.911158 93.869419) (xy 148.969864 93.776533) (xy 149.053215 93.713588) + (xy 149.168884 93.654653) (xy 149.309533 93.552465) (xy 149.432465 93.429533) (xy 149.534653 93.288884) + (xy 149.61358 93.133981) (xy 149.667303 92.968638) (xy 149.6945 92.796926) (xy 149.6945 92.623074) + (xy 149.667303 92.451362) (xy 149.637847 92.360706) (xy 149.623673 92.251748) (xy 149.649818 92.145021) + (xy 149.710786 92.056893) (xy 150.505627 91.262054) (xy 150.540515 91.201626) (xy 150.549164 91.186646) + (xy 150.562047 91.138564) (xy 150.571701 91.102537) (xy 150.571701 91.015462) (xy 150.571701 90.997136) + (xy 150.5717 90.997118) (xy 150.5717 89.64283) (xy 150.577911 89.609604) (xy 150.579303 89.575832) + (xy 150.587924 89.556039) (xy 150.591891 89.534819) (xy 150.609685 89.506079) (xy 150.623183 89.475092) + (xy 150.638369 89.459752) (xy 150.649736 89.441395) (xy 150.659275 89.431405) (xy 150.700075 89.390605) + (xy 150.790728 89.328507) (xy 150.897691 89.303349) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 158.922012 87.83319) (xy 159.015436 87.891035) (xy 159.081655 87.978723) (xy 159.111726 88.084411) + (xy 159.113001 88.111998) (xy 159.113001 88.4958) (xy 159.113003 88.495815) (xy 159.127613 88.588068) + (xy 159.127615 88.588072) (xy 159.184274 88.699273) (xy 159.272528 88.787527) (xy 159.383729 88.844186) + (xy 159.383731 88.844187) (xy 159.475992 88.858799) (xy 159.818001 88.858799) (xy 159.818016 88.858797) + (xy 159.910264 88.844187) (xy 159.924902 88.839432) (xy 160.033866 88.825257) (xy 160.140593 88.851402) + (xy 160.230668 88.914335) (xy 160.291926 89.005557) (xy 160.316095 89.112749) (xy 160.316299 89.123798) + (xy 160.316299 89.79017) (xy 160.296108 89.898181) (xy 160.238263 89.991605) (xy 160.228724 90.001595) + (xy 157.349594 92.880725) (xy 157.258941 92.942823) (xy 157.151978 92.967981) (xy 157.138169 92.9683) + (xy 157.051399 92.9683) (xy 156.910371 93.006087) (xy 156.783929 93.079088) (xy 156.680688 93.182329) + (xy 156.607687 93.308771) (xy 156.5699 93.449798) (xy 156.5699 93.595801) (xy 156.607687 93.736828) + (xy 156.680688 93.86327) (xy 156.698698 93.88128) (xy 156.760796 93.971933) (xy 156.785954 94.078896) + (xy 156.770773 94.187725) (xy 156.717304 94.28372) (xy 156.698698 94.30413) (xy 156.171105 94.831725) + (xy 156.142608 94.851245) (xy 156.117083 94.874515) (xy 156.097648 94.882044) (xy 156.080453 94.893823) + (xy 156.04683 94.901731) (xy 156.014621 94.914209) (xy 155.980228 94.917395) (xy 155.973489 94.918981) + (xy 155.95968 94.9193) (xy 155.811532 94.9193) (xy 155.703521 94.899109) (xy 155.610097 94.841264) + (xy 155.543878 94.753576) (xy 155.513807 94.647888) (xy 155.523946 94.538475) (xy 155.572925 94.440112) + (xy 155.600107 94.408875) (xy 155.601448 94.407534) (xy 155.663111 94.345871) (xy 155.736112 94.219429) + (xy 155.7739 94.078401) (xy 155.7739 93.932399) (xy 155.736112 93.791371) (xy 155.663111 93.664929) + (xy 155.559871 93.561689) (xy 155.55987 93.561688) (xy 155.433428 93.488687) (xy 155.292401 93.4509) + (xy 155.25643 93.4509) (xy 155.148419 93.430709) (xy 155.054995 93.372864) (xy 155.045005 93.363325) + (xy 152.23853 90.55685) (xy 152.176432 90.466197) (xy 152.151274 90.359234) (xy 152.166455 90.250405) + (xy 152.219924 90.15441) (xy 152.30446 90.084212) (xy 152.408646 90.049292) (xy 152.462619 90.046693) + (xy 152.512519 90.048808) (xy 152.526373 90.055867) (xy 152.618755 90.070499) (xy 153.020844 90.070498) + (xy 153.02154 90.070387) (xy 153.030463 90.070766) (xy 153.077931 90.081738) (xy 153.12581 90.090689) + (xy 153.131267 90.094068) (xy 153.137522 90.095514) (xy 153.177813 90.122887) (xy 153.219233 90.148534) + (xy 153.223101 90.153657) (xy 153.228412 90.157265) (xy 153.229217 90.158431) (xy 153.229224 90.158425) + (xy 153.316799 90.246) (xy 153.319699 90.246) (xy 153.42771 90.266191) (xy 153.498882 90.305637) + (xy 153.522533 90.323342) (xy 153.658458 90.37404) (xy 153.718545 90.3805) (xy 154.715054 90.380499) + (xy 154.715057 90.380499) (xy 154.751106 90.376623) (xy 154.775142 90.37404) (xy 154.911067 90.323342) + (xy 154.934717 90.305637) (xy 154.946659 90.299753) (xy 154.956498 90.290785) (xy 154.995636 90.275622) + (xy 155.033285 90.257073) (xy 155.04914 90.254895) (xy 155.05896 90.251091) (xy 155.113901 90.246) + (xy 155.52053 90.246) (xy 155.628541 90.266191) (xy 155.699712 90.305636) (xy 155.722772 90.322898) + (xy 155.858564 90.373547) (xy 155.918575 90.379999) (xy 156.91501 90.379999) (xy 156.993631 90.371548) + (xy 156.99394 90.374425) (xy 157.075404 90.370569) (xy 157.179628 90.405374) (xy 157.264242 90.475479) + (xy 157.296636 90.533488) (xy 157.300929 90.531301) (xy 157.368273 90.663472) (xy 157.456527 90.751726) + (xy 157.567728 90.808385) (xy 157.56773 90.808386) (xy 157.659991 90.822998) (xy 158.062 90.822998) + (xy 158.062015 90.822996) (xy 158.154268 90.808386) (xy 158.154272 90.808384) (xy 158.265473 90.751725) + (xy 158.353727 90.663471) (xy 158.410386 90.55227) (xy 158.410387 90.552268) (xy 158.424999 90.460009) + (xy 158.424999 90.117998) (xy 158.424997 90.117983) (xy 158.410387 90.02573) (xy 158.410385 90.025726) + (xy 158.359212 89.925292) (xy 158.328166 89.819887) (xy 158.337293 89.710385) (xy 158.359208 89.653815) + (xy 158.410868 89.552428) (xy 158.4255 89.460046) (xy 158.425499 89.117957) (xy 158.424674 89.112749) + (xy 158.410868 89.025576) (xy 158.410868 89.025574) (xy 158.383692 88.97224) (xy 158.352648 88.866839) + (xy 158.361775 88.757336) (xy 158.383695 88.700755) (xy 158.410868 88.647426) (xy 158.4255 88.555044) + (xy 158.425499 88.212955) (xy 158.416918 88.15877) (xy 158.417189 88.148995) (xy 158.414512 88.139587) + (xy 158.418704 88.094342) (xy 158.419964 88.04893) (xy 158.423748 88.039911) (xy 158.424651 88.030174) + (xy 158.444902 87.989504) (xy 158.462484 87.947608) (xy 158.46927 87.940566) (xy 158.47363 87.931811) + (xy 158.507207 87.901201) (xy 158.538734 87.868488) (xy 158.547606 87.864373) (xy 158.554834 87.857784) + (xy 158.597201 87.84137) (xy 158.638417 87.822255) (xy 158.650434 87.820748) (xy 158.657296 87.81809) + (xy 158.712237 87.812999) (xy 158.814001 87.812999) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 150.01696 84.899191) (xy 150.045355 84.898929) (xy 150.070634 84.908454) (xy 150.097258 84.913049) + (xy 150.121607 84.927661) (xy 150.14818 84.937674) (xy 150.168313 84.95569) (xy 150.191477 84.969591) + (xy 150.208901 84.99201) (xy 150.230065 85.010948) (xy 150.249074 85.041024) (xy 150.255862 85.050367) + (xy 150.344229 85.138734) (xy 150.455571 85.195466) (xy 150.455572 85.195467) (xy 150.472957 85.19822) + (xy 150.547955 85.210099) (xy 150.950044 85.210098) (xy 151.020231 85.198982) (xy 151.130067 85.202028) + (xy 151.23139 85.244546) (xy 151.310511 85.320796) (xy 151.356744 85.420478) (xy 151.366001 85.494296) + (xy 151.366002 85.558087) (xy 151.345813 85.666099) (xy 151.287969 85.759524) (xy 151.200282 85.825744) + (xy 151.094595 85.855816) (xy 151.067002 85.857092) (xy 149.948622 85.857092) (xy 149.91467 85.850745) + (xy 149.880166 85.84915) (xy 149.861098 85.84073) (xy 149.840611 85.836901) (xy 149.811243 85.818717) + (xy 149.779646 85.804766) (xy 149.753074 85.782701) (xy 149.747187 85.779056) (xy 149.737197 85.769517) + (xy 149.710789 85.743109) (xy 149.648691 85.652456) (xy 149.623533 85.545493) (xy 149.637848 85.43929) + (xy 149.667303 85.348638) (xy 149.6945 85.176926) (xy 149.6945 85.176923) (xy 149.695054 85.169886) + (xy 149.702444 85.14247) (xy 149.704803 85.114169) (xy 149.716622 85.089873) (xy 149.723653 85.06379) + (xy 149.740448 85.040894) (xy 149.752871 85.015358) (xy 149.772666 84.996973) (xy 149.788646 84.975191) + (xy 149.812579 84.959907) (xy 149.833387 84.940584) (xy 149.858487 84.930592) (xy 149.881257 84.916052) + (xy 149.909093 84.910446) (xy 149.935478 84.899944) (xy 149.962494 84.899694) (xy 149.988977 84.894362) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 150.008387 83.111483) (xy 150.101811 83.169328) (xy 150.16803 83.257016) (xy 150.198101 83.362704) + (xy 150.195695 83.437065) (xy 150.185 83.504588) (xy 150.185 83.846601) (xy 150.185002 83.846616) + (xy 150.199612 83.938869) (xy 150.199615 83.938876) (xy 150.250787 84.039308) (xy 150.281833 84.144713) + (xy 150.273035 84.253007) (xy 150.261694 84.294998) (xy 150.255865 84.300828) (xy 150.199132 84.412172) + (xy 150.1845 84.504554) (xy 150.1845 84.580833) (xy 150.174159 84.619125) (xy 150.167239 84.633501) + (xy 150.164309 84.649179) (xy 150.143582 84.682653) (xy 150.126505 84.718136) (xy 150.114861 84.72904) + (xy 150.106464 84.742603) (xy 150.075041 84.766332) (xy 150.046302 84.793247) (xy 150.031506 84.799208) + (xy 150.018776 84.808822) (xy 149.980902 84.819597) (xy 149.944382 84.834313) (xy 149.928432 84.834527) + (xy 149.913088 84.838893) (xy 149.873877 84.835259) (xy 149.83451 84.835788) (xy 149.81956 84.830226) + (xy 149.803675 84.828754) (xy 149.768425 84.811202) (xy 149.731524 84.797473) (xy 149.719592 84.786885) + (xy 149.705312 84.779775) (xy 149.678786 84.750677) (xy 149.649333 84.724543) (xy 149.64203 84.710358) + (xy 149.631285 84.698571) (xy 149.619749 84.676058) (xy 149.618912 84.676485) (xy 149.613581 84.666022) + (xy 149.61358 84.666019) (xy 149.534653 84.511116) (xy 149.432465 84.370467) (xy 149.309533 84.247535) + (xy 149.236103 84.194185) (xy 149.16888 84.145344) (xy 149.07607 84.098056) (xy 149.053215 84.086411) + (xy 148.966144 84.019386) (xy 148.909163 83.925432) (xy 148.889971 83.817239) (xy 148.911158 83.709419) + (xy 148.969864 83.616533) (xy 149.053215 83.553588) (xy 149.168884 83.494653) (xy 149.309533 83.392465) + (xy 149.432465 83.269533) (xy 149.472417 83.214543) (xy 149.474455 83.212615) (xy 149.475706 83.210104) + (xy 149.514296 83.174924) (xy 149.552239 83.139029) (xy 149.554836 83.137966) (xy 149.55691 83.136077) + (xy 149.605591 83.117217) (xy 149.65395 83.097448) (xy 149.657577 83.097078) (xy 149.659372 83.096383) + (xy 149.714313 83.091292) (xy 149.900376 83.091292) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 158.457395 78.760691) (xy 158.550819 78.818536) (xy 158.617038 78.906224) (xy 158.647109 79.011912) + (xy 158.63697 79.121325) (xy 158.587991 79.219688) (xy 158.560809 79.250925) (xy 157.195968 80.615765) + (xy 157.195966 80.615767) (xy 157.152427 80.691179) (xy 157.129892 80.775282) (xy 157.129892 83.115668) + (xy 157.109701 83.223679) (xy 157.051856 83.317103) (xy 157.042317 83.327093) (xy 157.016882 83.352527) + (xy 157.01688 83.352529) (xy 156.943879 83.478971) (xy 156.906092 83.619998) (xy 156.906092 83.766001) + (xy 156.916312 83.804145) (xy 156.924763 83.913702) (xy 156.893067 84.018913) (xy 156.825504 84.10557) + (xy 156.7312 84.161969) (xy 156.638398 84.180329) (xy 156.613327 84.181243) (xy 156.5742 84.176092) + (xy 156.346984 84.176092) (xy 156.298996 84.18241) (xy 156.275035 84.193582) (xy 156.221491 84.195536) + (xy 156.203258 84.192811) (xy 156.184913 84.19463) (xy 156.126925 84.18379) (xy 156.122193 84.18241) + (xy 156.074201 84.176092) (xy 156.0742 84.176092) (xy 155.846984 84.176092) (xy 155.846983 84.176092) + (xy 155.79899 84.18241) (xy 155.794259 84.18379) (xy 155.684913 84.19463) (xy 155.626925 84.18379) + (xy 155.622193 84.18241) (xy 155.574201 84.176092) (xy 155.5742 84.176092) (xy 155.346984 84.176092) + (xy 155.346983 84.176092) (xy 155.29899 84.18241) (xy 155.294259 84.18379) (xy 155.184913 84.19463) + (xy 155.180186 84.194185) (xy 155.138245 84.189897) (xy 155.122188 84.18241) (xy 155.0742 84.176092) + (xy 155.003191 84.176092) (xy 154.988028 84.174542) (xy 154.949698 84.163242) (xy 154.910423 84.155901) + (xy 154.897364 84.147815) (xy 154.88263 84.143472) (xy 154.850972 84.11909) (xy 154.816999 84.098056) + (xy 154.807742 84.085797) (xy 154.795573 84.076426) (xy 154.774862 84.042258) (xy 154.75078 84.010368) + (xy 154.746575 83.995591) (xy 154.738615 83.982458) (xy 154.731645 83.943117) (xy 154.720709 83.90468) + (xy 154.722126 83.889385) (xy 154.719447 83.874261) (xy 154.727161 83.835054) (xy 154.730848 83.795267) + (xy 154.738586 83.776984) (xy 154.74066 83.766445) (xy 154.74788 83.755027) (xy 154.759493 83.727591) + (xy 154.778847 83.69407) (xy 154.8135 83.564741) (xy 154.8135 83.430851) (xy 154.8135 79.0395) (xy 154.833691 78.931489) + (xy 154.891536 78.838065) (xy 154.979224 78.771846) (xy 155.084912 78.741775) (xy 155.1125 78.7405) + (xy 158.349384 78.7405) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 160.10327 79.686132) (xy 160.132054 79.685016) (xy 160.157217 79.693658) (xy 160.183569 79.697334) + (xy 160.208733 79.71135) (xy 160.235978 79.720707) (xy 160.256321 79.737856) (xy 160.279565 79.750803) + (xy 160.297967 79.772964) (xy 160.319991 79.79153) (xy 160.332764 79.814868) (xy 160.349763 79.835339) + (xy 160.358917 79.862652) (xy 160.372747 79.88792) (xy 160.375574 79.900355) (xy 160.376009 79.900229) + (xy 160.38379 79.926925) (xy 160.39463 80.036271) (xy 160.38379 80.094259) (xy 160.38241 80.09899) + (xy 160.376092 80.146983) (xy 160.376092 80.3742) (xy 160.38241 80.422193) (xy 160.38379 80.426925) + (xy 160.395735 80.510592) (xy 160.395735 80.57042) (xy 160.38241 80.598996) (xy 160.376092 80.646984) + (xy 160.376092 80.8742) (xy 160.38241 80.922188) (xy 160.395735 80.950763) (xy 160.395735 81.010592) + (xy 160.393349 81.023353) (xy 160.39463 81.036271) (xy 160.38379 81.094259) (xy 160.38241 81.09899) + (xy 160.376092 81.146983) (xy 160.376092 81.3742) (xy 160.38241 81.422193) (xy 160.38379 81.426925) + (xy 160.395735 81.510592) (xy 160.395735 81.57042) (xy 160.38241 81.598996) (xy 160.376092 81.646984) + (xy 160.376092 81.8742) (xy 160.38241 81.922188) (xy 160.395735 81.950763) (xy 160.395735 82.010592) + (xy 160.393349 82.023353) (xy 160.39463 82.036271) (xy 160.38379 82.094259) (xy 160.38241 82.09899) + (xy 160.376092 82.146983) (xy 160.376092 82.3742) (xy 160.38241 82.422193) (xy 160.38379 82.426925) + (xy 160.395735 82.510592) (xy 160.395735 82.57042) (xy 160.38241 82.598996) (xy 160.376092 82.646984) + (xy 160.376092 82.8742) (xy 160.38241 82.922188) (xy 160.395735 82.950763) (xy 160.395735 83.010592) + (xy 160.393349 83.023353) (xy 160.39463 83.036271) (xy 160.38379 83.094259) (xy 160.38241 83.09899) + (xy 160.376092 83.146983) (xy 160.376092 83.170225) (xy 160.355901 83.278236) (xy 160.298056 83.37166) + (xy 160.210368 83.437879) (xy 160.10468 83.46795) (xy 159.995267 83.457811) (xy 159.927591 83.429166) + (xy 159.850811 83.384836) (xy 159.850807 83.384835) (xy 159.768659 83.362824) (xy 159.669553 83.315367) + (xy 159.634619 83.285437) (xy 159.59847 83.249288) (xy 159.472028 83.176287) (xy 159.331001 83.1385) + (xy 159.266846 83.1385) (xy 159.158835 83.118309) (xy 159.065411 83.060464) (xy 158.999192 82.972776) + (xy 158.969121 82.867088) (xy 158.967846 82.8395) (xy 158.967846 80.802539) (xy 158.988037 80.694528) + (xy 159.045882 80.601104) (xy 159.055421 80.591114) (xy 159.406839 80.239696) (xy 159.877128 79.769406) + (xy 159.90089 79.753129) (xy 159.921409 79.732913) (xy 159.945826 79.722347) (xy 159.967777 79.707311) + (xy 159.995816 79.700715) (xy 160.022255 79.689276) (xy 160.048841 79.688244) (xy 160.074741 79.682153) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 163.957325 76.213444) (xy 164.055688 76.262423) (xy 164.086925 76.289605) (xy 164.173725 76.376405) + (xy 164.235823 76.467058) (xy 164.260981 76.574021) (xy 164.2613 76.58783) (xy 164.2613 78.28054) + (xy 164.277696 78.34173) (xy 164.283836 78.364646) (xy 164.323868 78.433983) (xy 164.327374 78.440055) + (xy 164.405982 78.518663) (xy 164.405991 78.518671) (xy 165.24921 79.36189) (xy 165.311308 79.452543) + (xy 165.336466 79.559506) (xy 165.322151 79.66571) (xy 165.292697 79.75636) (xy 165.2655 79.928072) + (xy 165.2655 80.101927) (xy 165.287321 80.239696) (xy 165.284275 80.349536) (xy 165.241757 80.450859) + (xy 165.165508 80.52998) (xy 165.065826 80.576214) (xy 164.956173 80.583317) (xy 164.85136 80.550329) + (xy 164.780577 80.497896) (xy 163.613554 79.330874) (xy 163.592354 79.299926) (xy 163.567642 79.271695) + (xy 163.561534 79.254933) (xy 163.551456 79.240221) (xy 163.542867 79.203706) (xy 163.530022 79.168454) + (xy 163.530381 79.150619) (xy 163.526298 79.133258) (xy 163.53148 79.096104) (xy 163.532237 79.058594) + (xy 163.539014 79.042094) (xy 163.541479 79.024429) (xy 163.558569 78.983705) (xy 163.617386 78.868269) + (xy 163.617387 78.868268) (xy 163.631999 78.776009) (xy 163.631999 78.433998) (xy 163.631997 78.433983) + (xy 163.617387 78.34173) (xy 163.617385 78.341726) (xy 163.566212 78.241292) (xy 163.535166 78.135887) + (xy 163.544293 78.026385) (xy 163.566208 77.969815) (xy 163.617868 77.868428) (xy 163.6325 77.776046) + (xy 163.632499 77.433957) (xy 163.62444 77.383074) (xy 163.617868 77.341575) (xy 163.617867 77.341572) + (xy 163.609088 77.324342) (xy 163.578043 77.218937) (xy 163.5765 77.188601) (xy 163.5765 76.50103) + (xy 163.596691 76.393019) (xy 163.654536 76.299595) (xy 163.742224 76.233376) (xy 163.847912 76.203305) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 162.35212 65.26346) (xy 162.448115 65.316929) (xy 162.518313 65.401465) (xy 162.553233 65.505651) + (xy 162.5561 65.54696) (xy 162.5561 69.391921) (xy 162.535909 69.499932) (xy 162.478064 69.593356) + (xy 162.468524 69.603346) (xy 162.274278 69.797591) (xy 162.212354 69.845107) (xy 162.092535 69.914284) + (xy 162.092527 69.91429) (xy 161.989288 70.017529) (xy 161.916287 70.143971) (xy 161.8785 70.284998) + (xy 161.8785 70.431001) (xy 161.916287 70.572028) (xy 161.989288 70.69847) (xy 162.042643 70.751825) + (xy 162.066011 70.785939) (xy 162.092431 70.817755) (xy 162.096862 70.830976) (xy 162.104741 70.842478) + (xy 162.114207 70.882727) (xy 162.127351 70.921941) (xy 162.126706 70.935869) (xy 162.129899 70.949441) + (xy 162.124185 70.990396) (xy 162.122276 71.031705) (xy 162.116644 71.044459) (xy 162.114718 71.05827) + (xy 162.094595 71.094396) (xy 162.077893 71.132225) (xy 162.064627 71.1482) (xy 162.061249 71.154265) + (xy 162.042643 71.174674) (xy 161.842394 71.374924) (xy 161.751742 71.437023) (xy 161.644779 71.462181) + (xy 161.630969 71.4625) (xy 161.594999 71.4625) (xy 161.575569 71.465058) (xy 161.575421 71.463936) + (xy 161.485821 71.470847) (xy 161.38061 71.43915) (xy 161.293954 71.371586) (xy 161.237557 71.277281) + (xy 161.218999 71.173584) (xy 161.218999 70.829999) (xy 161.218997 70.829985) (xy 161.204387 70.737732) + (xy 161.204385 70.737728) (xy 161.147726 70.626527) (xy 161.059472 70.538273) (xy 160.948271 70.481614) + (xy 160.948269 70.481613) (xy 160.85601 70.467001) (xy 160.590999 70.467001) (xy 160.482988 70.44681) + (xy 160.389564 70.388965) (xy 160.323345 70.301277) (xy 160.293274 70.195589) (xy 160.291999 70.168001) + (xy 160.291999 70.029998) (xy 160.291997 70.029984) (xy 160.277387 69.937731) (xy 160.277385 69.937727) + (xy 160.220726 69.826526) (xy 160.132472 69.738272) (xy 160.021271 69.681613) (xy 160.021269 69.681612) + (xy 159.929008 69.667) (xy 159.586999 69.667) (xy 159.586984 69.667002) (xy 159.494731 69.681612) + (xy 159.494725 69.681614) (xy 159.39429 69.732788) (xy 159.288884 69.763833) (xy 159.179382 69.754705) + (xy 159.122806 69.732787) (xy 159.021426 69.681131) (xy 159.021427 69.681131) (xy 158.929046 69.6665) + (xy 158.58696 69.6665) (xy 158.586947 69.666501) (xy 158.494575 69.681131) (xy 158.494573 69.681131) + (xy 158.494573 69.681132) (xy 158.383229 69.737865) (xy 158.383228 69.737865) (xy 158.383226 69.737867) + (xy 158.376975 69.744118) (xy 158.286321 69.806214) (xy 158.179357 69.831369) (xy 158.070529 69.816186) + (xy 157.974535 69.762715) (xy 157.904339 69.678177) (xy 157.869421 69.57399) (xy 157.874499 69.464225) + (xy 157.88691 69.425725) (xy 157.888164 69.421046) (xy 157.9107 69.336938) (xy 157.9107 68.8795) + (xy 157.914616 68.858547) (xy 157.9137 68.83725) (xy 157.92463 68.804978) (xy 157.930891 68.771489) + (xy 157.942112 68.753365) (xy 157.948951 68.733176) (xy 157.970798 68.707035) (xy 157.988736 68.678065) + (xy 158.005747 68.665218) (xy 158.019417 68.648863) (xy 158.049234 68.632378) (xy 158.076424 68.611846) + (xy 158.098885 68.604929) (xy 158.115582 68.595699) (xy 158.143507 68.591189) (xy 158.169333 68.583237) + (xy 158.18942 68.5805) (xy 158.274945 68.5805) (xy 158.363433 68.556789) (xy 158.382176 68.554236) + (xy 158.396409 68.554939) (xy 158.422543 68.551499) (xy 158.430327 68.551499) (xy 158.430332 68.551499) + (xy 158.501666 68.541107) (xy 158.611704 68.487313) (xy 158.698313 68.400704) (xy 158.698313 68.400703) + (xy 158.698314 68.400703) (xy 158.698314 68.400702) (xy 158.752106 68.290668) (xy 158.752105 68.290668) + (xy 158.752107 68.290666) (xy 158.7625 68.219333) (xy 158.762499 67.924668) (xy 158.752107 67.853334) + (xy 158.714947 67.777322) (xy 158.70088 67.748546) (xy 158.694154 67.724234) (xy 158.682697 67.701758) + (xy 158.676985 67.662173) (xy 158.671582 67.642642) (xy 158.67264 67.632061) (xy 158.6705 67.617228) + (xy 158.6705 67.041159) (xy 158.690691 66.933148) (xy 158.728927 66.863605) (xy 158.78731 66.7845) + (xy 158.793764 66.766056) (xy 158.833558 66.652331) (xy 158.8365 66.620956) (xy 158.8365 66.523477) + (xy 158.842846 66.489525) (xy 158.844442 66.455021) (xy 158.852861 66.435953) (xy 158.856691 66.415466) + (xy 158.874874 66.386098) (xy 158.888826 66.354501) (xy 158.91089 66.327929) (xy 158.914536 66.322042) + (xy 158.924075 66.312052) (xy 159.251675 65.984452) (xy 159.342328 65.922354) (xy 159.449291 65.897196) + (xy 159.55812 65.912377) (xy 159.654115 65.965846) (xy 159.724313 66.050382) (xy 159.759233 66.154568) + (xy 159.7621 66.195877) (xy 159.7621 66.751213) (xy 159.762406 66.766051) (xy 159.762407 66.766059) + (xy 159.791777 66.90613) (xy 159.78752 66.907022) (xy 159.799499 66.97022) (xy 159.7995 66.970971) + (xy 159.7995 67.711323) (xy 159.797197 67.72364) (xy 159.798471 67.736106) (xy 159.787162 67.777322) + (xy 159.779309 67.819334) (xy 159.769444 67.841898) (xy 159.769397 67.842072) (xy 159.769328 67.842165) + (xy 159.76912 67.842641) (xy 159.763893 67.853332) (xy 159.7535 67.924666) (xy 159.7535 68.219327) + (xy 159.7535 68.21933) (xy 159.753501 68.219332) (xy 159.763893 68.290666) (xy 159.787317 68.33858) + (xy 159.817687 68.400704) (xy 159.904297 68.487314) (xy 160.014331 68.541106) (xy 160.014332 68.541106) + (xy 160.014334 68.541107) (xy 160.085667 68.5515) (xy 160.132823 68.551499) (xy 160.241055 68.5805) + (xy 160.374945 68.5805) (xy 160.483179 68.551499) (xy 160.530332 68.551499) (xy 160.601666 68.541107) + (xy 160.711704 68.487313) (xy 160.798313 68.400704) (xy 160.798313 68.400703) (xy 160.798314 68.400703) + (xy 160.798314 68.400702) (xy 160.852106 68.290668) (xy 160.852105 68.290668) (xy 160.852107 68.290666) + (xy 160.8625 68.219333) (xy 160.862499 67.924668) (xy 160.852107 67.853334) (xy 160.846879 67.84264) + (xy 160.817582 67.736738) (xy 160.8165 67.711325) (xy 160.8165 66.68856) (xy 160.836691 66.580549) + (xy 160.894536 66.487125) (xy 160.904075 66.477135) (xy 162.045675 65.335535) (xy 162.136328 65.273437) + (xy 162.243291 65.248279) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 150.108037 61.694069) (xy 150.178821 61.746502) (xy 151.854725 63.422405) (xy 151.916823 63.513058) + (xy 151.941981 63.620021) (xy 151.9423 63.63383) (xy 151.9423 66.10954) (xy 151.954365 66.154568) + (xy 151.964836 66.193646) (xy 151.993972 66.24411) (xy 152.008374 66.269055) (xy 152.086987 66.347668) + (xy 152.086991 66.347671) (xy 152.577395 66.838075) (xy 152.639493 66.928728) (xy 152.664651 67.035691) + (xy 152.64947 67.14452) (xy 152.596001 67.240515) (xy 152.511465 67.310713) (xy 152.407279 67.345633) + (xy 152.36597 67.3485) (xy 152.313072 67.3485) (xy 152.14136 67.375697) (xy 151.976026 67.429416) + (xy 151.976024 67.429417) (xy 151.821114 67.508347) (xy 151.808441 67.517555) (xy 151.709189 67.564705) + (xy 151.599607 67.572817) (xy 151.494494 67.540796) (xy 151.408047 67.472965) (xy 151.35194 67.378487) + (xy 151.3337 67.275654) (xy 151.3337 67.139463) (xy 151.333699 67.139459) (xy 151.311164 67.055354) + (xy 151.267626 66.979945) (xy 151.206055 66.918374) (xy 151.195618 66.907937) (xy 151.195607 66.907927) + (xy 149.710789 65.423109) (xy 149.648691 65.332456) (xy 149.623533 65.225493) (xy 149.637848 65.11929) + (xy 149.667303 65.028638) (xy 149.6945 64.856926) (xy 149.6945 64.683074) (xy 149.667303 64.511362) + (xy 149.614968 64.35029) (xy 149.613583 64.346026) (xy 149.613582 64.346024) (xy 149.61358 64.346021) + (xy 149.61358 64.346019) (xy 149.534653 64.191116) (xy 149.432465 64.050467) (xy 149.309533 63.927535) + (xy 149.168884 63.825347) (xy 149.16888 63.825344) (xy 149.052665 63.76613) (xy 148.965593 63.699104) + (xy 148.908613 63.60515) (xy 148.889421 63.496957) (xy 148.910609 63.389137) (xy 148.969315 63.296251) + (xy 149.052667 63.233307) (xy 149.168619 63.174227) (xy 149.168622 63.174225) (xy 149.309207 63.072084) + (xy 149.432084 62.949207) (xy 149.534225 62.808622) (xy 149.53423 62.808614) (xy 149.613114 62.653793) + (xy 149.61312 62.65378) (xy 149.666815 62.488522) (xy 149.693999 62.31689) (xy 149.694 62.316886) + (xy 149.694 62.143113) (xy 149.672077 62.004703) (xy 149.675122 61.894863) (xy 149.71764 61.79354) + (xy 149.793889 61.714418) (xy 149.893571 61.668184) (xy 150.003224 61.661081) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 153.932 63.129483) (xy 154.004981 63.143999) (xy 154.555013 63.143999) (xy 154.620389 63.130996) + (xy 154.730264 63.129729) (xy 154.737026 63.130992) (xy 154.804933 63.1445) (xy 155.355066 63.144499) + (xy 155.396673 63.136223) (xy 155.457831 63.130492) (xy 155.485843 63.130757) (xy 155.554933 63.1445) + (xy 155.905066 63.144499) (xy 155.951957 63.135172) (xy 155.982828 63.135465) (xy 156.006954 63.140211) + (xy 156.031538 63.139928) (xy 156.038331 63.141198) (xy 156.048576 63.143235) (xy 156.054933 63.1445) + (xy 156.100299 63.144499) (xy 156.208307 63.164688) (xy 156.301731 63.222532) (xy 156.367952 63.310219) + (xy 156.398024 63.415906) (xy 156.3993 63.443499) (xy 156.3993 65.146169) (xy 156.392953 65.18012) + (xy 156.391358 65.214625) (xy 156.382938 65.233693) (xy 156.379109 65.25418) (xy 156.360927 65.283545) + (xy 156.346975 65.315144) (xy 156.32491 65.341714) (xy 156.321264 65.347604) (xy 156.311725 65.357593) + (xy 156.076395 65.592924) (xy 155.985743 65.655023) (xy 155.878779 65.680181) (xy 155.86497 65.6805) + (xy 155.698425 65.6805) (xy 155.590414 65.660309) (xy 155.49699 65.602464) (xy 155.430771 65.514776) + (xy 155.409614 65.458889) (xy 155.392965 65.396757) (xy 155.392964 65.396755) (xy 155.392964 65.396754) + (xy 155.349426 65.321345) (xy 155.287855 65.259774) (xy 155.277418 65.249337) (xy 155.277407 65.249327) + (xy 153.662243 63.634163) (xy 153.600145 63.54351) (xy 153.574987 63.436547) (xy 153.590168 63.327718) + (xy 153.643637 63.231723) (xy 153.728173 63.161525) (xy 153.832359 63.126605) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 152.299279 55.900691) (xy 152.392703 55.958536) (xy 152.458922 56.046224) (xy 152.488993 56.151912) + (xy 152.478854 56.261325) (xy 152.439878 56.345614) (xy 152.348888 56.481791) (xy 152.348882 56.481802) + (xy 152.28074 56.646311) (xy 152.246 56.820961) (xy 152.246 57.799035) (xy 152.24744 57.813659) + (xy 152.244604 57.813938) (xy 152.245602 57.900554) (xy 152.20709 58.003466) (xy 152.134003 58.085517) + (xy 152.036211 58.135625) (xy 151.951082 58.148) (xy 151.817999 58.148) (xy 151.817984 58.148002) + (xy 151.725731 58.162612) (xy 151.725727 58.162614) (xy 151.614526 58.219273) (xy 151.526272 58.307527) + (xy 151.469613 58.418728) (xy 151.469612 58.41873) (xy 151.455 58.510989) (xy 151.455 58.853) (xy 151.455002 58.853015) + (xy 151.469612 58.945268) (xy 151.469613 58.94527) (xy 151.520788 59.045708) (xy 151.551833 59.151114) + (xy 151.542705 59.260616) (xy 151.520787 59.317192) (xy 151.469132 59.41857) (xy 151.469131 59.418572) + (xy 151.4545 59.510951) (xy 151.4545 59.853039) (xy 151.454501 59.853052) (xy 151.469131 59.945424) + (xy 151.469131 59.945425) (xy 151.469132 59.945427) (xy 151.525865 60.056771) (xy 151.525866 60.056772) + (xy 151.614229 60.145135) (xy 151.725571 60.201867) (xy 151.725572 60.201868) (xy 151.742957 60.204621) + (xy 151.817955 60.2165) (xy 152.052711 60.216499) (xy 152.16072 60.236689) (xy 152.254144 60.294535) + (xy 152.320363 60.382222) (xy 152.350434 60.48791) (xy 152.340296 60.597323) (xy 152.328951 60.629919) + (xy 152.28074 60.746311) (xy 152.246 60.920961) (xy 152.246 61.49607) (xy 152.225809 61.604081) + (xy 152.167964 61.697505) (xy 152.080276 61.763724) (xy 151.974588 61.793795) (xy 151.865175 61.783656) + (xy 151.766812 61.734677) (xy 151.735575 61.707495) (xy 150.135475 60.107395) (xy 150.073377 60.016742) + (xy 150.048219 59.909779) (xy 150.0479 59.89597) (xy 150.0479 58.344847) (xy 150.047901 58.344834) + (xy 150.047901 58.233664) (xy 150.0479 58.23366) (xy 150.037523 58.194932) (xy 150.025365 58.149555) + (xy 149.981827 58.074146) (xy 149.855726 57.948045) (xy 149.782074 57.874393) (xy 149.719976 57.78374) + (xy 149.694818 57.676777) (xy 149.694499 57.662968) (xy 149.694499 56.274938) (xy 149.694499 56.274934) + (xy 149.694497 56.274923) (xy 149.687119 56.237824) (xy 149.685852 56.12795) (xy 149.724363 56.025037) + (xy 149.797449 55.942985) (xy 149.895241 55.892876) (xy 149.980375 55.8805) (xy 152.191268 55.8805) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 165.000373 59.408447) (xy 165.048325 59.412891) (xy 165.054589 59.41601) (xy 165.061519 59.416977) + (xy 165.103581 59.440405) (xy 165.146688 59.46187) (xy 165.151402 59.467041) (xy 165.157515 59.470446) + (xy 165.188276 59.50749) (xy 165.220715 59.543074) (xy 165.223242 59.549598) (xy 165.227713 59.554982) + (xy 165.243016 59.600639) (xy 165.260409 59.645536) (xy 165.261305 59.655205) (xy 165.262633 59.659168) + (xy 165.2655 59.700477) (xy 165.2655 59.781927) (xy 165.292697 59.953638) (xy 165.302177 59.982815) + (xy 165.31635 60.09178) (xy 165.290204 60.198506) (xy 165.229235 60.286633) (xy 164.951889 60.563979) + (xy 164.909395 60.594327) (xy 164.91147 60.597233) (xy 164.794999 60.680391) (xy 164.794997 60.680392) + (xy 164.242219 61.23317) (xy 164.151566 61.295268) (xy 164.044603 61.320426) (xy 163.935774 61.305245) + (xy 163.839779 61.251776) (xy 163.819369 61.23317) (xy 163.726472 61.140273) (xy 163.615271 61.083614) + (xy 163.615269 61.083613) (xy 163.523008 61.069001) (xy 163.120999 61.069001) (xy 163.120981 61.069003) + (xy 163.038917 61.082) (xy 163.009836 61.081193) (xy 162.981061 61.085475) (xy 162.955385 61.079682) + (xy 162.929077 61.078953) (xy 162.902253 61.067696) (xy 162.873873 61.061294) (xy 162.852022 61.046617) + (xy 162.827755 61.036433) (xy 162.806807 61.016245) (xy 162.782658 61.000024) (xy 162.767587 60.978447) + (xy 162.748635 60.960183) (xy 162.736394 60.933789) (xy 162.719736 60.909941) (xy 162.707149 60.870734) + (xy 162.702403 60.8605) (xy 162.701725 60.857787) (xy 162.662017 60.695606) (xy 162.660221 60.663178) + (xy 162.653519 60.631402) (xy 162.657209 60.60878) (xy 162.655942 60.585892) (xy 162.665982 60.555004) + (xy 162.671211 60.522954) (xy 162.682824 60.503192) (xy 162.689911 60.481392) (xy 162.710429 60.456218) + (xy 162.726884 60.42822) (xy 162.744852 60.413987) (xy 162.759335 60.39622) (xy 162.787561 60.380159) + (xy 162.81302 60.359994) (xy 162.834916 60.353213) (xy 162.854839 60.341878) (xy 162.886961 60.337098) + (xy 162.917985 60.327492) (xy 162.952439 60.3255) (xy 163.774944 60.3255) (xy 163.774945 60.3255) + (xy 163.904274 60.290847) (xy 164.020227 60.223901) (xy 164.755075 59.489051) (xy 164.794796 59.461842) + (xy 164.833224 59.432823) (xy 164.839955 59.430907) (xy 164.845727 59.426954) (xy 164.89259 59.415931) + (xy 164.938912 59.402752) (xy 164.94588 59.403397) (xy 164.952691 59.401796) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 154.962898 55.900691) (xy 155.056322 55.958536) (xy 155.122541 56.046224) (xy 155.152612 56.151912) + (xy 155.142473 56.261325) (xy 155.093494 56.359688) (xy 155.086764 56.36742) (xy 155.076702 56.380535) + (xy 155.010348 56.495461) (xy 154.976 56.623649) (xy 154.976 56.75635) (xy 155.010348 56.884538) + (xy 155.076702 56.999464) (xy 155.076704 56.999467) (xy 155.170533 57.093296) (xy 155.170535 57.093297) + (xy 155.285461 57.159651) (xy 155.413649 57.194) (xy 155.546351 57.194) (xy 155.674538 57.159651) + (xy 155.789464 57.093297) (xy 155.789467 57.093296) (xy 155.883296 56.999467) (xy 155.883297 56.999464) + (xy 155.949651 56.884538) (xy 155.984 56.75635) (xy 155.984 56.623649) (xy 155.949651 56.495461) + (xy 155.883297 56.380535) (xy 155.871366 56.364985) (xy 155.87435 56.362695) (xy 155.83159 56.300272) + (xy 155.806432 56.193309) (xy 155.821613 56.08448) (xy 155.875082 55.988485) (xy 155.959618 55.918287) + (xy 156.063804 55.883367) (xy 156.105113 55.8805) (xy 158.854887 55.8805) (xy 158.962898 55.900691) + (xy 159.056322 55.958536) (xy 159.122541 56.046224) (xy 159.152612 56.151912) (xy 159.142473 56.261325) + (xy 159.093494 56.359688) (xy 159.086764 56.36742) (xy 159.076702 56.380535) (xy 159.010348 56.495461) + (xy 158.976 56.623649) (xy 158.976 56.75635) (xy 159.010348 56.884538) (xy 159.076702 56.999464) + (xy 159.076704 56.999467) (xy 159.170533 57.093296) (xy 159.170535 57.093297) (xy 159.285461 57.159651) + (xy 159.413649 57.194) (xy 159.546351 57.194) (xy 159.674538 57.159651) (xy 159.789464 57.093297) + (xy 159.789467 57.093296) (xy 159.883296 56.999467) (xy 159.883297 56.999464) (xy 159.949651 56.884538) + (xy 159.984 56.75635) (xy 159.984 56.623649) (xy 159.949651 56.495461) (xy 159.883297 56.380535) + (xy 159.871366 56.364985) (xy 159.87435 56.362695) (xy 159.83159 56.300272) (xy 159.806432 56.193309) + (xy 159.821613 56.08448) (xy 159.875082 55.988485) (xy 159.959618 55.918287) (xy 160.063804 55.883367) + (xy 160.105113 55.8805) (xy 160.851268 55.8805) (xy 160.959279 55.900691) (xy 161.052703 55.958536) + (xy 161.118922 56.046224) (xy 161.148993 56.151912) (xy 161.138854 56.261325) (xy 161.099878 56.345614) + (xy 161.008888 56.481791) (xy 161.008882 56.481802) (xy 160.94074 56.646311) (xy 160.906 56.820961) + (xy 160.906 57.799038) (xy 160.942422 57.982143) (xy 160.943691 58.092018) (xy 160.905183 58.194932) + (xy 160.832682 58.276533) (xy 160.784951 58.313639) (xy 160.721029 58.330767) (xy 160.639828 58.377649) + (xy 160.42053 58.596946) (xy 160.405803 58.608396) (xy 160.373263 58.625171) (xy 160.34306 58.645862) + (xy 160.324802 58.650155) (xy 160.308137 58.658748) (xy 160.271737 58.662636) (xy 160.236096 58.671019) + (xy 160.217522 58.668428) (xy 160.198876 58.67042) (xy 160.163527 58.660896) (xy 160.127268 58.655838) + (xy 160.110884 58.646712) (xy 160.092778 58.641834) (xy 160.063255 58.620182) (xy 160.031272 58.602368) + (xy 160.019292 58.587941) (xy 160.00417 58.576851) (xy 159.984461 58.545995) (xy 159.961075 58.517832) + (xy 159.953375 58.50191) (xy 159.883297 58.380535) (xy 159.883296 58.380533) (xy 159.789467 58.286704) + (xy 159.789464 58.286702) (xy 159.674538 58.220348) (xy 159.546351 58.186) (xy 159.413649 58.186) + (xy 159.285461 58.220348) (xy 159.170535 58.286702) (xy 159.076702 58.380535) (xy 159.010348 58.495461) + (xy 158.976 58.623649) (xy 158.976 58.75635) (xy 159.010348 58.884538) (xy 159.076702 58.999464) + (xy 159.076704 58.999467) (xy 159.170533 59.093296) (xy 159.170535 59.093297) (xy 159.302436 59.169452) + (xy 159.30104 59.171869) (xy 159.368818 59.216031) (xy 159.432996 59.305224) (xy 159.46062 59.411577) + (xy 159.447959 59.520727) (xy 159.396724 59.617933) (xy 159.373763 59.643713) (xy 158.541369 60.476107) + (xy 158.541367 60.476109) (xy 158.511349 60.506128) (xy 158.445049 60.572428) (xy 158.398167 60.653629) + (xy 158.3739 60.744198) (xy 158.3739 60.780277) (xy 158.340491 60.840957) (xy 158.305887 60.883048) + (xy 158.271342 60.925305) (xy 158.270977 60.925511) (xy 158.27071 60.925837) (xy 158.22316 60.952628) + (xy 158.175759 60.97951) (xy 158.175343 60.979571) (xy 158.174978 60.979777) (xy 158.121062 60.987567) + (xy 158.06705 60.995525) (xy 158.06664 60.995431) (xy 158.066225 60.995492) (xy 158.013108 60.983274) + (xy 157.959897 60.971189) (xy 157.959464 60.970934) (xy 157.959139 60.97086) (xy 157.957847 60.969984) + (xy 157.896548 60.93396) (xy 157.884059 60.924377) (xy 157.884056 60.924375) (xy 157.884055 60.924374) + (xy 157.808646 60.880836) (xy 157.808643 60.880835) (xy 157.72454 60.8583) (xy 157.724538 60.8583) + (xy 157.284828 60.8583) (xy 157.176817 60.838109) (xy 157.083393 60.780264) (xy 157.017174 60.692576) + (xy 156.987103 60.586888) (xy 156.996016 60.481914) (xy 157.002901 60.456218) (xy 157.0185 60.398001) + (xy 157.0185 60.251999) (xy 156.980712 60.110971) (xy 156.907711 59.984529) (xy 156.804471 59.881289) + (xy 156.80447 59.881288) (xy 156.678028 59.808287) (xy 156.537001 59.7705) (xy 156.390999 59.7705) + (xy 156.249971 59.808287) (xy 156.123524 59.881291) (xy 156.122977 59.881712) (xy 156.121484 59.882469) + (xy 156.107019 59.890821) (xy 156.09836 59.898715) (xy 156.060856 59.913243) (xy 156.024995 59.931447) + (xy 156.007328 59.93398) (xy 155.995898 59.938409) (xy 155.940957 59.9435) (xy 155.838815 59.9435) + (xy 155.838799 59.943499) (xy 155.820472 59.943499) (xy 155.720022 59.943499) (xy 155.720015 59.943499) + (xy 155.719802 59.943527) (xy 155.719283 59.943499) (xy 155.700424 59.943499) (xy 155.700424 59.94248) + (xy 155.610079 59.937602) (xy 155.509907 59.89244) (xy 155.432813 59.814142) (xy 155.421847 59.796583) + (xy 155.413385 59.781927) (xy 155.383711 59.730529) (xy 155.357248 59.704066) (xy 155.29515 59.613413) + (xy 155.269992 59.50645) (xy 155.285173 59.397621) (xy 155.338642 59.301626) (xy 155.423178 59.231428) + (xy 155.527364 59.196508) (xy 155.52965 59.196198) (xy 155.546353 59.193999) (xy 155.674538 59.159651) + (xy 155.789464 59.093297) (xy 155.789467 59.093296) (xy 155.883296 58.999467) (xy 155.883297 58.999464) + (xy 155.949651 58.884538) (xy 155.984 58.75635) (xy 155.984 58.623649) (xy 155.949651 58.495461) + (xy 155.883297 58.380535) (xy 155.883296 58.380533) (xy 155.789467 58.286704) (xy 155.789464 58.286702) + (xy 155.674538 58.220348) (xy 155.546351 58.186) (xy 155.413649 58.186) (xy 155.285461 58.220348) + (xy 155.170535 58.286702) (xy 155.076702 58.380535) (xy 155.010348 58.495461) (xy 154.976 58.623649) + (xy 154.976 58.75635) (xy 155.010349 58.884542) (xy 155.045481 58.945392) (xy 155.082001 59.049028) + (xy 155.078618 59.158858) (xy 155.035787 59.260049) (xy 154.959295 59.338935) (xy 154.859471 59.384861) + (xy 154.749797 59.391626) (xy 154.697841 59.377918) (xy 154.697576 59.378908) (xy 154.59454 59.3513) + (xy 154.594538 59.3513) (xy 152.847998 59.3513) (xy 152.833523 59.348594) (xy 152.818856 59.349876) + (xy 152.779879 59.338566) (xy 152.739987 59.331109) (xy 152.727469 59.323358) (xy 152.713327 59.319255) + (xy 152.681066 59.294627) (xy 152.646563 59.273264) (xy 152.637689 59.261513) (xy 152.625986 59.252579) + (xy 152.604802 59.217964) (xy 152.580344 59.185576) (xy 152.576314 59.171413) (xy 152.568629 59.158855) + (xy 152.56138 59.118926) (xy 152.550273 59.079888) (xy 152.551125 59.062437) (xy 152.549002 59.05074) + (xy 152.55287 59.026721) (xy 152.55438 58.995826) (xy 152.586948 58.8265) (xy 152.601052 58.790648) + (xy 152.611077 58.75345) (xy 152.62102 58.739893) (xy 152.627176 58.724246) (xy 152.653277 58.695912) + (xy 152.676064 58.664845) (xy 152.690235 58.655794) (xy 152.701626 58.64343) (xy 152.7362 58.626438) + (xy 152.768671 58.605701) (xy 152.785152 58.602381) (xy 152.800243 58.594965) (xy 152.838621 58.59161) + (xy 152.87639 58.584003) (xy 152.90047 58.586205) (xy 152.909708 58.585398) (xy 152.918022 58.58781) + (xy 152.9389 58.58972) (xy 153.060956 58.613999) (xy 153.060964 58.614) (xy 153.239036 58.614) (xy 153.239038 58.613999) + (xy 153.413688 58.579259) (xy 153.578197 58.511117) (xy 153.578203 58.511114) (xy 153.726265 58.412183) + (xy 153.852183 58.286265) (xy 153.951114 58.138203) (xy 153.951117 58.138197) (xy 154.019259 57.973688) + (xy 154.053999 57.799038) (xy 154.054 57.799035) (xy 154.054 56.820964) (xy 154.053999 56.820961) + (xy 154.019259 56.646311) (xy 153.951117 56.481802) (xy 153.951111 56.481791) (xy 153.860122 56.345614) + (xy 153.816902 56.244589) (xy 153.813096 56.134772) (xy 153.849217 56.030997) (xy 153.920387 55.947277) + (xy 154.016994 55.894921) (xy 154.108732 55.8805) (xy 154.854887 55.8805) + ) + ) + (filled_polygon + (layer "F.Cu") + (pts + (xy 165.088631 55.900691) (xy 165.182055 55.958536) (xy 165.248274 56.046224) (xy 165.278345 56.151912) + (xy 165.273875 56.237828) (xy 165.266497 56.274923) (xy 165.2655 56.279933) (xy 165.2655 57.416521) + (xy 165.245309 57.524532) (xy 165.187464 57.617956) (xy 165.177925 57.627946) (xy 163.584947 59.220925) + (xy 163.494294 59.283023) (xy 163.387331 59.308181) (xy 163.373522 59.3085) (xy 162.888952 59.3085) + (xy 162.841622 59.299652) (xy 162.793933 59.293) (xy 162.787819 59.289594) (xy 162.780941 59.288309) + (xy 162.74 59.26296) (xy 162.697937 59.239531) (xy 162.693467 59.234148) (xy 162.687517 59.230464) + (xy 162.658496 59.192035) (xy 162.627739 59.154995) (xy 162.625515 59.14836) (xy 162.621298 59.142776) + (xy 162.60812 59.09646) (xy 162.592819 59.050809) (xy 162.593142 59.043819) (xy 162.591227 59.037088) + (xy 162.59567 58.989138) (xy 162.597894 58.941044) (xy 162.60072 58.934643) (xy 162.601366 58.927675) + (xy 162.622831 58.884565) (xy 162.642278 58.840525) (xy 162.648481 58.833053) (xy 162.650345 58.829312) + (xy 162.677527 58.798075) (xy 163.076527 58.399074) (xy 163.167179 58.336976) (xy 163.274143 58.311818) + (xy 163.287952 58.311499) (xy 163.396039 58.311499) (xy 163.396044 58.311499) (xy 163.488427 58.296868) + (xy 163.599771 58.240135) (xy 163.688135 58.151771) (xy 163.744868 58.040427) (xy 163.7595 57.948045) + (xy 163.759499 57.605956) (xy 163.744868 57.513573) (xy 163.69321 57.41219) (xy 163.662165 57.30679) + (xy 163.671292 57.197288) (xy 163.693212 57.140706) (xy 163.744386 57.04027) (xy 163.744387 57.040269) + (xy 163.758999 56.94801) (xy 163.758999 56.605999) (xy 163.758997 56.605984) (xy 163.744387 56.513731) + (xy 163.744385 56.513727) (xy 163.687726 56.402526) (xy 163.676125 56.390925) (xy 163.614027 56.300272) + (xy 163.588869 56.193309) (xy 163.60405 56.08448) (xy 163.657519 55.988485) (xy 163.742055 55.918287) + (xy 163.846241 55.883367) (xy 163.88755 55.8805) (xy 164.98062 55.8805) + ) + ) + ) + (zone + (net 1) + (net_name "GND") + (layer "B.Cu") + (uuid "3d5f8f4c-1b1b-45a3-941d-b58575593c0e") + (hatch edge 0.5) + (connect_pads + (clearance 0.254) + ) + (min_thickness 0.1524) + (filled_areas_thickness no) + (fill yes + (thermal_gap 0.5) + (thermal_bridge_width 0.5) + ) + (polygon + (pts + (xy 177.8 50.8) (xy 139.7 50.8) (xy 139.7 114.3) (xy 177.8 114.3) + ) + ) + (filled_polygon + (layer "B.Cu") + (pts + (xy 152.427383 55.898093) (xy 152.453103 55.942642) (xy 152.44417 55.9933) (xy 152.423246 56.016538) + (xy 152.400832 56.032822) (xy 152.400819 56.032833) (xy 152.272833 56.160819) (xy 152.272822 56.160832) + (xy 152.166434 56.307264) (xy 152.084252 56.468553) (xy 152.028319 56.640695) (xy 152.028316 56.64071) + (xy 152 56.81949) (xy 152 57.06) (xy 152.9 57.06) (xy 152.9 57.56) (xy 152 57.56) (xy 152 57.800509) + (xy 152.028316 57.979289) (xy 152.028319 57.979304) (xy 152.084252 58.151446) (xy 152.166434 58.312735) + (xy 152.272822 58.459167) (xy 152.272833 58.45918) (xy 152.400819 58.587166) (xy 152.400832 58.587177) + (xy 152.547264 58.693565) (xy 152.708553 58.775747) (xy 152.880696 58.83168) (xy 152.880714 58.831684) + (xy 152.9 58.834738) (xy 152.9 57.759728) (xy 152.93806 57.851614) (xy 153.008386 57.92194) (xy 153.100272 57.96) + (xy 153.199728 57.96) (xy 153.291614 57.92194) (xy 153.36194 57.851614) (xy 153.4 57.759728) (xy 153.4 58.834737) + (xy 153.419285 58.831684) (xy 153.419303 58.83168) (xy 153.591446 58.775747) (xy 153.752735 58.693565) + (xy 153.798709 58.660163) (xy 155.33 58.660163) (xy 155.33 58.719837) (xy 155.352836 58.774968) + (xy 155.395032 58.817164) (xy 155.450163 58.84) (xy 155.509837 58.84) (xy 155.564968 58.817164) + (xy 155.607164 58.774968) (xy 155.63 58.719837) (xy 155.63 58.660163) (xy 159.33 58.660163) (xy 159.33 58.719837) + (xy 159.352836 58.774968) (xy 159.395032 58.817164) (xy 159.450163 58.84) (xy 159.509837 58.84) + (xy 159.564968 58.817164) (xy 159.607164 58.774968) (xy 159.63 58.719837) (xy 159.63 58.660163) + (xy 159.607164 58.605032) (xy 159.564968 58.562836) (xy 159.509837 58.54) (xy 159.450163 58.54) + (xy 159.395032 58.562836) (xy 159.352836 58.605032) (xy 159.33 58.660163) (xy 155.63 58.660163) + (xy 155.607164 58.605032) (xy 155.564968 58.562836) (xy 155.509837 58.54) (xy 155.450163 58.54) + (xy 155.395032 58.562836) (xy 155.352836 58.605032) (xy 155.33 58.660163) (xy 153.798709 58.660163) + (xy 153.899167 58.587177) (xy 153.89918 58.587166) (xy 154.027166 58.45918) (xy 154.027177 58.459167) + (xy 154.041103 58.439999) (xy 154.771759 58.439999) (xy 154.77176 58.44) (xy 155.23 58.44) (xy 155.73 58.44) + (xy 156.18824 58.44) (xy 156.18824 58.439999) (xy 158.771759 58.439999) (xy 158.77176 58.44) (xy 159.23 58.44) + (xy 159.73 58.44) (xy 160.18824 58.44) (xy 160.18824 58.439999) (xy 160.144641 58.334743) (xy 160.06256 58.211899) + (xy 159.9581 58.107439) (xy 159.835256 58.025358) (xy 159.73 57.981759) (xy 159.73 58.44) (xy 159.23 58.44) + (xy 159.23 57.981759) (xy 159.229999 57.981759) (xy 159.124743 58.025358) (xy 159.001899 58.107439) + (xy 158.897439 58.211899) (xy 158.815358 58.334743) (xy 158.771759 58.439999) (xy 156.18824 58.439999) + (xy 156.144641 58.334743) (xy 156.06256 58.211899) (xy 155.9581 58.107439) (xy 155.835256 58.025358) + (xy 155.73 57.981759) (xy 155.73 58.44) (xy 155.23 58.44) (xy 155.23 57.981759) (xy 155.229999 57.981759) + (xy 155.124743 58.025358) (xy 155.001899 58.107439) (xy 154.897439 58.211899) (xy 154.815358 58.334743) + (xy 154.771759 58.439999) (xy 154.041103 58.439999) (xy 154.067145 58.404156) (xy 154.133565 58.312735) + (xy 154.215747 58.151446) (xy 154.27168 57.979304) (xy 154.271683 57.979289) (xy 154.299999 57.800509) + (xy 154.3 57.800502) (xy 154.3 57.56) (xy 153.4 57.56) (xy 153.4 57.06) (xy 154.3 57.06) (xy 154.3 56.94) + (xy 154.771759 56.94) (xy 154.815358 57.045256) (xy 154.897439 57.1681) (xy 155.001899 57.27256) + (xy 155.124743 57.354641) (xy 155.23 57.398239) (xy 155.73 57.398239) (xy 155.835256 57.354641) + (xy 155.9581 57.27256) (xy 156.06256 57.1681) (xy 156.144641 57.045256) (xy 156.18824 56.94) (xy 158.771759 56.94) + (xy 158.815358 57.045256) (xy 158.897439 57.1681) (xy 159.001899 57.27256) (xy 159.124743 57.354641) + (xy 159.23 57.398239) (xy 159.73 57.398239) (xy 159.835256 57.354641) (xy 159.9581 57.27256) (xy 160.06256 57.1681) + (xy 160.144641 57.045256) (xy 160.18824 56.94) (xy 159.73 56.94) (xy 159.73 57.398239) (xy 159.23 57.398239) + (xy 159.23 56.94) (xy 158.771759 56.94) (xy 156.18824 56.94) (xy 155.73 56.94) (xy 155.73 57.398239) + (xy 155.23 57.398239) (xy 155.23 56.94) (xy 154.771759 56.94) (xy 154.3 56.94) (xy 154.3 56.819497) + (xy 154.299999 56.81949) (xy 154.274764 56.660163) (xy 155.33 56.660163) (xy 155.33 56.719837) (xy 155.352836 56.774968) + (xy 155.395032 56.817164) (xy 155.450163 56.84) (xy 155.509837 56.84) (xy 155.564968 56.817164) + (xy 155.607164 56.774968) (xy 155.63 56.719837) (xy 155.63 56.660163) (xy 159.33 56.660163) (xy 159.33 56.719837) + (xy 159.352836 56.774968) (xy 159.395032 56.817164) (xy 159.450163 56.84) (xy 159.509837 56.84) + (xy 159.564968 56.817164) (xy 159.607164 56.774968) (xy 159.63 56.719837) (xy 159.63 56.660163) + (xy 159.607164 56.605032) (xy 159.564968 56.562836) (xy 159.509837 56.54) (xy 159.450163 56.54) + (xy 159.395032 56.562836) (xy 159.352836 56.605032) (xy 159.33 56.660163) (xy 155.63 56.660163) + (xy 155.607164 56.605032) (xy 155.564968 56.562836) (xy 155.509837 56.54) (xy 155.450163 56.54) + (xy 155.395032 56.562836) (xy 155.352836 56.605032) (xy 155.33 56.660163) (xy 154.274764 56.660163) + (xy 154.271683 56.64071) (xy 154.27168 56.640695) (xy 154.215747 56.468553) (xy 154.133565 56.307264) + (xy 154.027177 56.160832) (xy 154.027166 56.160819) (xy 153.89918 56.032833) (xy 153.899167 56.032822) + (xy 153.876754 56.016538) (xy 153.847989 55.973892) (xy 153.853366 55.922734) (xy 153.890368 55.887001) + (xy 153.920955 55.8805) (xy 155.096406 55.8805) (xy 155.144744 55.898093) (xy 155.170464 55.942642) + (xy 155.161531 55.9933) (xy 155.127669 56.022996) (xy 155.128001 56.023617) (xy 155.125341 56.025038) + (xy 155.125187 56.025174) (xy 155.124747 56.025355) (xy 155.124746 56.025356) (xy 155.001899 56.107439) + (xy 154.897439 56.211899) (xy 154.815358 56.334743) (xy 154.771759 56.439999) (xy 154.77176 56.44) + (xy 156.18824 56.44) (xy 156.18824 56.439999) (xy 156.144641 56.334743) (xy 156.06256 56.211899) + (xy 155.9581 56.107439) (xy 155.835253 56.025356) (xy 155.835252 56.025355) (xy 155.834813 56.025174) + (xy 155.834674 56.025047) (xy 155.831999 56.023617) (xy 155.832365 56.022931) (xy 155.796889 55.99042) + (xy 155.790177 55.93942) (xy 155.817818 55.896038) (xy 155.863594 55.8805) (xy 159.096406 55.8805) + (xy 159.144744 55.898093) (xy 159.170464 55.942642) (xy 159.161531 55.9933) (xy 159.127669 56.022996) + (xy 159.128001 56.023617) (xy 159.125341 56.025038) (xy 159.125187 56.025174) (xy 159.124747 56.025355) + (xy 159.124746 56.025356) (xy 159.001899 56.107439) (xy 158.897439 56.211899) (xy 158.815358 56.334743) + (xy 158.771759 56.439999) (xy 158.77176 56.44) (xy 160.18824 56.44) (xy 160.18824 56.439999) (xy 160.144641 56.334743) + (xy 160.06256 56.211899) (xy 159.9581 56.107439) (xy 159.835253 56.025356) (xy 159.835252 56.025355) + (xy 159.834813 56.025174) (xy 159.834674 56.025047) (xy 159.831999 56.023617) (xy 159.832365 56.022931) + (xy 159.796889 55.99042) (xy 159.790177 55.93942) (xy 159.817818 55.896038) (xy 159.863594 55.8805) + (xy 161.039045 55.8805) (xy 161.087383 55.898093) (xy 161.113103 55.942642) (xy 161.10417 55.9933) + (xy 161.083246 56.016538) (xy 161.060832 56.032822) (xy 161.060819 56.032833) (xy 160.932833 56.160819) + (xy 160.932822 56.160832) (xy 160.826434 56.307264) (xy 160.744252 56.468553) (xy 160.688319 56.640695) + (xy 160.688316 56.64071) (xy 160.66 56.81949) (xy 160.66 57.06) (xy 161.56 57.06) (xy 161.56 57.56) + (xy 160.66 57.56) (xy 160.66 57.800509) (xy 160.688316 57.979289) (xy 160.688319 57.979304) (xy 160.744252 58.151446) + (xy 160.826434 58.312735) (xy 160.932822 58.459167) (xy 160.932833 58.45918) (xy 161.060819 58.587166) + (xy 161.060832 58.587177) (xy 161.207264 58.693565) (xy 161.368553 58.775747) (xy 161.540696 58.83168) + (xy 161.540714 58.831684) (xy 161.56 58.834738) (xy 161.56 57.759728) (xy 161.59806 57.851614) (xy 161.668386 57.92194) + (xy 161.760272 57.96) (xy 161.859728 57.96) (xy 161.951614 57.92194) (xy 162.02194 57.851614) (xy 162.06 57.759728) + (xy 162.06 58.834737) (xy 162.079285 58.831684) (xy 162.079303 58.83168) (xy 162.251446 58.775747) + (xy 162.412735 58.693565) (xy 162.559167 58.587177) (xy 162.55918 58.587166) (xy 162.687166 58.45918) + (xy 162.687177 58.459167) (xy 162.793565 58.312735) (xy 162.875747 58.151446) (xy 162.93168 57.979304) + (xy 162.931683 57.979289) (xy 162.959999 57.800509) (xy 162.96 57.800502) (xy 162.96 57.56) (xy 162.06 57.56) + (xy 162.06 57.06) (xy 162.96 57.06) (xy 162.96 56.819497) (xy 162.959999 56.81949) (xy 162.931683 56.64071) + (xy 162.93168 56.640695) (xy 162.875745 56.468548) (xy 162.875745 56.468547) (xy 162.795153 56.310379) + (xy 162.795151 56.310377) (xy 162.793564 56.307264) (xy 162.773707 56.279932) (xy 165.2655 56.279932) + (xy 165.2655 58.030067) (xy 165.265501 58.030068) (xy 165.280266 58.104301) (xy 165.336516 58.188484) + (xy 165.420699 58.244734) (xy 165.494933 58.2595) (xy 167.245066 58.259499) (xy 167.245067 58.259499) + (xy 167.245067 58.259498) (xy 167.319301 58.244734) (xy 167.403484 58.188484) (xy 167.459734 58.104301) + (xy 167.4745 58.030067) (xy 167.474499 56.279934) (xy 167.459734 56.205699) (xy 167.403484 56.121516) + (xy 167.319301 56.065266) (xy 167.319299 56.065265) (xy 167.245067 56.0505) (xy 165.494932 56.0505) + (xy 165.494931 56.050501) (xy 165.420699 56.065266) (xy 165.336516 56.121516) (xy 165.280266 56.205698) + (xy 165.280265 56.2057) (xy 165.2655 56.279932) (xy 162.773707 56.279932) (xy 162.687177 56.160832) + (xy 162.687166 56.160819) (xy 162.55918 56.032833) (xy 162.559167 56.032822) (xy 162.536754 56.016538) + (xy 162.507989 55.973892) (xy 162.513366 55.922734) (xy 162.550368 55.887001) (xy 162.580955 55.8805) + (xy 167.5643 55.8805) (xy 167.612638 55.898093) (xy 167.638358 55.942642) (xy 167.6395 55.9557) + (xy 167.6395 61.454119) (xy 167.621907 61.502457) (xy 167.577358 61.528177) (xy 167.5267 61.519244) + (xy 167.503462 61.498321) (xy 167.485269 61.473281) (xy 166.852962 62.105588) (xy 166.835925 62.042007) + (xy 166.770099 61.927993) (xy 166.677007 61.834901) (xy 166.562993 61.769075) (xy 166.499409 61.752037) + (xy 167.131717 61.119729) (xy 167.077555 61.080377) (xy 166.888219 60.983905) (xy 166.68613 60.918243) + (xy 166.68612 60.918241) (xy 166.654888 60.913294) (xy 166.609898 60.888355) (xy 166.591464 60.840332) + (xy 166.608212 60.791694) (xy 166.64341 60.767503) (xy 166.793981 60.71858) (xy 166.948884 60.639653) + (xy 167.089533 60.537465) (xy 167.212465 60.414533) (xy 167.314653 60.273884) (xy 167.39358 60.118981) + (xy 167.447303 59.953638) (xy 167.4745 59.781926) (xy 167.4745 59.608074) (xy 167.447303 59.436362) + (xy 167.39358 59.271019) (xy 167.314653 59.116116) (xy 167.31102 59.111116) (xy 167.26317 59.045256) + (xy 167.212465 58.975467) (xy 167.212463 58.975465) (xy 167.212456 58.975457) (xy 167.089542 58.852543) + (xy 167.089534 58.852536) (xy 167.082652 58.847536) (xy 167.040849 58.817164) (xy 166.948885 58.750347) + (xy 166.837443 58.693565) (xy 166.793981 58.67142) (xy 166.793974 58.671417) (xy 166.79397 58.671416) + (xy 166.628642 58.617698) (xy 166.62863 58.617695) (xy 166.456928 58.5905) (xy 166.456926 58.5905) + (xy 166.283074 58.5905) (xy 166.283071 58.5905) (xy 166.111369 58.617695) (xy 166.111357 58.617698) + (xy 165.946029 58.671416) (xy 165.946021 58.671419) (xy 165.946019 58.67142) (xy 165.946015 58.671421) + (xy 165.946015 58.671422) (xy 165.791114 58.750347) (xy 165.650465 58.852536) (xy 165.650457 58.852543) + (xy 165.527543 58.975457) (xy 165.527536 58.975465) (xy 165.425347 59.116114) (xy 165.346422 59.271015) + (xy 165.346416 59.271029) (xy 165.292698 59.436357) (xy 165.292695 59.436369) (xy 165.2655 59.608071) + (xy 165.2655 59.781928) (xy 165.292695 59.95363) (xy 165.292698 59.953642) (xy 165.344791 60.11397) + (xy 165.34642 60.118981) (xy 165.364721 60.154899) (xy 165.425347 60.273885) (xy 165.499592 60.376073) + (xy 165.52531 60.411471) (xy 165.527536 60.414534) (xy 165.527543 60.414542) (xy 165.650457 60.537456) + (xy 165.650465 60.537463) (xy 165.650467 60.537465) (xy 165.693249 60.568548) (xy 165.791114 60.639652) + (xy 165.791116 60.639653) (xy 165.946019 60.71858) (xy 166.096586 60.767502) (xy 166.137119 60.79917) + (xy 166.147814 60.849486) (xy 166.123665 60.894904) (xy 166.085111 60.913294) (xy 166.05388 60.91824) + (xy 166.053869 60.918243) (xy 165.85178 60.983905) (xy 165.662441 61.080379) (xy 165.608282 61.119728) + (xy 165.608281 61.119729) (xy 166.24059 61.752037) (xy 166.177007 61.769075) (xy 166.062993 61.834901) + (xy 165.969901 61.927993) (xy 165.904075 62.042007) (xy 165.887037 62.105589) (xy 165.254729 61.473281) + (xy 165.254728 61.473282) (xy 165.215379 61.527441) (xy 165.118905 61.71678) (xy 165.053243 61.918869) + (xy 165.05324 61.918881) (xy 165.02 62.12875) (xy 165.02 62.341249) (xy 165.05324 62.551118) (xy 165.053243 62.55113) + (xy 165.118905 62.753219) (xy 165.215377 62.942555) (xy 165.254729 62.996717) (xy 165.887037 62.364409) + (xy 165.904075 62.427993) (xy 165.969901 62.542007) (xy 166.062993 62.635099) (xy 166.177007 62.700925) + (xy 166.240589 62.717962) (xy 165.608281 63.350269) (xy 165.662444 63.389622) (xy 165.85178 63.486094) + (xy 166.053869 63.551756) (xy 166.053882 63.551759) (xy 166.085109 63.556705) (xy 166.1301 63.581643) + (xy 166.148535 63.629666) (xy 166.131788 63.678303) (xy 166.096584 63.702498) (xy 165.946029 63.751416) + (xy 165.946021 63.751419) (xy 165.946019 63.75142) (xy 165.946015 63.751421) (xy 165.946015 63.751422) + (xy 165.791114 63.830347) (xy 165.650465 63.932536) (xy 165.650457 63.932543) (xy 165.527543 64.055457) + (xy 165.527536 64.055465) (xy 165.425347 64.196114) (xy 165.346422 64.351015) (xy 165.346416 64.351029) + (xy 165.292698 64.516357) (xy 165.292695 64.516369) (xy 165.2655 64.688071) (xy 165.2655 64.861928) + (xy 165.292695 65.03363) (xy 165.292698 65.033642) (xy 165.344791 65.19397) (xy 165.34642 65.198981) + (xy 165.346422 65.198984) (xy 165.425347 65.353885) (xy 165.499592 65.456073) (xy 165.523902 65.489533) + (xy 165.527536 65.494534) (xy 165.527543 65.494542) (xy 165.650457 65.617456) (xy 165.650465 65.617463) + (xy 165.650467 65.617465) (xy 165.727387 65.67335) (xy 165.791114 65.719652) (xy 165.791116 65.719653) + (xy 165.946019 65.79858) (xy 166.111362 65.852303) (xy 166.283074 65.8795) (xy 166.283078 65.8795) + (xy 166.456922 65.8795) (xy 166.456926 65.8795) (xy 166.628638 65.852303) (xy 166.793981 65.79858) + (xy 166.948884 65.719653) (xy 167.089533 65.617465) (xy 167.212465 65.494533) (xy 167.314653 65.353884) + (xy 167.39358 65.198981) (xy 167.447303 65.033638) (xy 167.4745 64.861926) (xy 167.4745 64.688074) + (xy 167.447303 64.516362) (xy 167.39358 64.351019) (xy 167.314653 64.196116) (xy 167.31102 64.191116) + (xy 167.26835 64.132387) (xy 167.212465 64.055467) (xy 167.212463 64.055465) (xy 167.212456 64.055457) + (xy 167.089542 63.932543) (xy 167.089534 63.932536) (xy 167.082652 63.927536) (xy 167.051073 63.904592) + (xy 166.948885 63.830347) (xy 166.868426 63.789351) (xy 166.793981 63.75142) (xy 166.793974 63.751417) + (xy 166.79397 63.751416) (xy 166.643415 63.702498) (xy 166.60288 63.670829) (xy 166.592185 63.620513) + (xy 166.616334 63.575094) (xy 166.65489 63.556705) (xy 166.686117 63.551759) (xy 166.68613 63.551756) + (xy 166.888219 63.486094) (xy 167.077553 63.389622) (xy 167.131717 63.350269) (xy 166.49941 62.717962) + (xy 166.562993 62.700925) (xy 166.677007 62.635099) (xy 166.770099 62.542007) (xy 166.835925 62.427993) + (xy 166.852962 62.36441) (xy 167.485269 62.996717) (xy 167.503462 62.971678) (xy 167.546108 62.942914) + (xy 167.597266 62.948291) (xy 167.632999 62.985294) (xy 167.6395 63.01588) (xy 167.6395 74.154119) + (xy 167.621907 74.202457) (xy 167.577358 74.228177) (xy 167.5267 74.219244) (xy 167.503462 74.198321) + (xy 167.485269 74.173281) (xy 166.852962 74.805588) (xy 166.835925 74.742007) (xy 166.770099 74.627993) + (xy 166.677007 74.534901) (xy 166.562993 74.469075) (xy 166.499409 74.452037) (xy 167.131717 73.819729) + (xy 167.077555 73.780377) (xy 166.888219 73.683905) (xy 166.68613 73.618243) (xy 166.68612 73.618241) + (xy 166.654888 73.613294) (xy 166.609898 73.588355) (xy 166.591464 73.540332) (xy 166.608212 73.491694) + (xy 166.64341 73.467503) (xy 166.793981 73.41858) (xy 166.948884 73.339653) (xy 167.089533 73.237465) + (xy 167.212465 73.114533) (xy 167.314653 72.973884) (xy 167.39358 72.818981) (xy 167.447303 72.653638) + (xy 167.4745 72.481926) (xy 167.4745 72.308074) (xy 167.447303 72.136362) (xy 167.39358 71.971019) + (xy 167.314653 71.816116) (xy 167.31102 71.811116) (xy 167.26835 71.752387) (xy 167.212465 71.675467) + (xy 167.212463 71.675465) (xy 167.212456 71.675457) (xy 167.089542 71.552543) (xy 167.089534 71.552536) + (xy 167.082652 71.547536) (xy 167.007591 71.493) (xy 166.948885 71.450347) (xy 166.836528 71.393099) + (xy 166.793981 71.37142) (xy 166.793974 71.371417) (xy 166.79397 71.371416) (xy 166.628642 71.317698) + (xy 166.62863 71.317695) (xy 166.456928 71.2905) (xy 166.456926 71.2905) (xy 166.283074 71.2905) + (xy 166.283071 71.2905) (xy 166.111369 71.317695) (xy 166.111357 71.317698) (xy 165.946029 71.371416) + (xy 165.946021 71.371419) (xy 165.946019 71.37142) (xy 165.946015 71.371421) (xy 165.946015 71.371422) + (xy 165.791114 71.450347) (xy 165.650465 71.552536) (xy 165.650457 71.552543) (xy 165.527543 71.675457) + (xy 165.527536 71.675465) (xy 165.425347 71.816114) (xy 165.346422 71.971015) (xy 165.346416 71.971029) + (xy 165.292698 72.136357) (xy 165.292695 72.136369) (xy 165.2655 72.308071) (xy 165.2655 72.481928) + (xy 165.292695 72.65363) (xy 165.292698 72.653642) (xy 165.344791 72.81397) (xy 165.34642 72.818981) + (xy 165.382243 72.889288) (xy 165.425347 72.973885) (xy 165.491928 73.065524) (xy 165.523902 73.109533) + (xy 165.527536 73.114534) (xy 165.527543 73.114542) (xy 165.650457 73.237456) (xy 165.650465 73.237463) + (xy 165.650467 73.237465) (xy 165.727387 73.29335) (xy 165.791114 73.339652) (xy 165.791116 73.339653) + (xy 165.946019 73.41858) (xy 166.096586 73.467502) (xy 166.137119 73.49917) (xy 166.147814 73.549486) + (xy 166.123665 73.594904) (xy 166.085111 73.613294) (xy 166.05388 73.61824) (xy 166.053869 73.618243) + (xy 165.85178 73.683905) (xy 165.662441 73.780379) (xy 165.608282 73.819728) (xy 165.608281 73.819729) + (xy 166.24059 74.452037) (xy 166.177007 74.469075) (xy 166.062993 74.534901) (xy 165.969901 74.627993) + (xy 165.904075 74.742007) (xy 165.887037 74.805589) (xy 165.254729 74.173281) (xy 165.254728 74.173282) + (xy 165.215379 74.227441) (xy 165.118905 74.41678) (xy 165.053243 74.618869) (xy 165.05324 74.618881) + (xy 165.02 74.82875) (xy 165.02 75.041249) (xy 165.05324 75.251118) (xy 165.053243 75.25113) (xy 165.118905 75.453219) + (xy 165.215377 75.642555) (xy 165.254729 75.696717) (xy 165.887037 75.064409) (xy 165.904075 75.127993) + (xy 165.969901 75.242007) (xy 166.062993 75.335099) (xy 166.177007 75.400925) (xy 166.240589 75.417962) + (xy 165.608281 76.050269) (xy 165.662444 76.089622) (xy 165.85178 76.186094) (xy 166.053869 76.251756) + (xy 166.053882 76.251759) (xy 166.085109 76.256705) (xy 166.1301 76.281643) (xy 166.148535 76.329666) + (xy 166.131788 76.378303) (xy 166.096584 76.402498) (xy 165.946029 76.451416) (xy 165.946021 76.451419) + (xy 165.946019 76.45142) (xy 165.946015 76.451421) (xy 165.946015 76.451422) (xy 165.791114 76.530347) + (xy 165.650465 76.632536) (xy 165.650457 76.632543) (xy 165.527543 76.755457) (xy 165.527536 76.755465) + (xy 165.425347 76.896114) (xy 165.346422 77.051015) (xy 165.346416 77.051029) (xy 165.292698 77.216357) + (xy 165.292695 77.216369) (xy 165.2655 77.388071) (xy 165.2655 77.561928) (xy 165.292695 77.73363) + (xy 165.292698 77.733642) (xy 165.344791 77.89397) (xy 165.34642 77.898981) (xy 165.346422 77.898984) + (xy 165.425347 78.053885) (xy 165.482256 78.132212) (xy 165.523902 78.189533) (xy 165.527536 78.194534) + (xy 165.527543 78.194542) (xy 165.650457 78.317456) (xy 165.650465 78.317463) (xy 165.650467 78.317465) + (xy 165.727387 78.37335) (xy 165.791114 78.419652) (xy 165.791116 78.419653) (xy 165.946019 78.49858) + (xy 166.111362 78.552303) (xy 166.283074 78.5795) (xy 166.283078 78.5795) (xy 166.456922 78.5795) + (xy 166.456926 78.5795) (xy 166.628638 78.552303) (xy 166.793981 78.49858) (xy 166.948884 78.419653) + (xy 167.089533 78.317465) (xy 167.212465 78.194533) (xy 167.314653 78.053884) (xy 167.39358 77.898981) + (xy 167.447303 77.733638) (xy 167.4745 77.561926) (xy 167.4745 77.388074) (xy 167.447303 77.216362) + (xy 167.39358 77.051019) (xy 167.314653 76.896116) (xy 167.31102 76.891116) (xy 167.26835 76.832387) + (xy 167.212465 76.755467) (xy 167.212463 76.755465) (xy 167.212456 76.755457) (xy 167.089542 76.632543) + (xy 167.089534 76.632536) (xy 167.082652 76.627536) (xy 167.051073 76.604592) (xy 166.948885 76.530347) + (xy 166.868426 76.489351) (xy 166.793981 76.45142) (xy 166.793974 76.451417) (xy 166.79397 76.451416) + (xy 166.643415 76.402498) (xy 166.60288 76.370829) (xy 166.592185 76.320513) (xy 166.616334 76.275094) + (xy 166.65489 76.256705) (xy 166.686117 76.251759) (xy 166.68613 76.251756) (xy 166.888219 76.186094) + (xy 167.077553 76.089622) (xy 167.131717 76.050269) (xy 166.49941 75.417962) (xy 166.562993 75.400925) + (xy 166.677007 75.335099) (xy 166.770099 75.242007) (xy 166.835925 75.127993) (xy 166.852962 75.06441) + (xy 167.485269 75.696717) (xy 167.503462 75.671678) (xy 167.546108 75.642914) (xy 167.597266 75.648291) + (xy 167.632999 75.685294) (xy 167.6395 75.71588) (xy 167.6395 86.854119) (xy 167.621907 86.902457) + (xy 167.577358 86.928177) (xy 167.5267 86.919244) (xy 167.503462 86.898321) (xy 167.485269 86.873281) + (xy 166.852962 87.505588) (xy 166.835925 87.442007) (xy 166.770099 87.327993) (xy 166.677007 87.234901) + (xy 166.562993 87.169075) (xy 166.499409 87.152037) (xy 167.131717 86.519729) (xy 167.077555 86.480377) + (xy 166.888219 86.383905) (xy 166.68613 86.318243) (xy 166.68612 86.318241) (xy 166.654888 86.313294) + (xy 166.609898 86.288355) (xy 166.591464 86.240332) (xy 166.608212 86.191694) (xy 166.64341 86.167503) + (xy 166.793981 86.11858) (xy 166.948884 86.039653) (xy 167.089533 85.937465) (xy 167.212465 85.814533) + (xy 167.314653 85.673884) (xy 167.39358 85.518981) (xy 167.447303 85.353638) (xy 167.4745 85.181926) + (xy 167.4745 85.008074) (xy 167.447303 84.836362) (xy 167.39358 84.671019) (xy 167.314653 84.516116) + (xy 167.31102 84.511116) (xy 167.26835 84.452387) (xy 167.212465 84.375467) (xy 167.212463 84.375465) + (xy 167.212456 84.375457) (xy 167.089542 84.252543) (xy 167.089534 84.252536) (xy 167.082652 84.247536) + (xy 167.051073 84.224592) (xy 166.948885 84.150347) (xy 166.868426 84.109351) (xy 166.793981 84.07142) + (xy 166.793974 84.071417) (xy 166.79397 84.071416) (xy 166.628642 84.017698) (xy 166.62863 84.017695) + (xy 166.456928 83.9905) (xy 166.456926 83.9905) (xy 166.283074 83.9905) (xy 166.283071 83.9905) + (xy 166.111369 84.017695) (xy 166.111357 84.017698) (xy 165.946029 84.071416) (xy 165.946021 84.071419) + (xy 165.946019 84.07142) (xy 165.946015 84.071421) (xy 165.946015 84.071422) (xy 165.791114 84.150347) + (xy 165.650465 84.252536) (xy 165.650457 84.252543) (xy 165.527543 84.375457) (xy 165.527536 84.375465) + (xy 165.425347 84.516114) (xy 165.346422 84.671015) (xy 165.346416 84.671029) (xy 165.292698 84.836357) + (xy 165.292695 84.836369) (xy 165.2655 85.008071) (xy 165.2655 85.181928) (xy 165.292695 85.35363) + (xy 165.292698 85.353642) (xy 165.344791 85.51397) (xy 165.34642 85.518981) (xy 165.346422 85.518984) + (xy 165.425347 85.673885) (xy 165.499592 85.776073) (xy 165.523902 85.809533) (xy 165.527536 85.814534) + (xy 165.527543 85.814542) (xy 165.650457 85.937456) (xy 165.650465 85.937463) (xy 165.650467 85.937465) + (xy 165.727387 85.99335) (xy 165.791114 86.039652) (xy 165.791116 86.039653) (xy 165.946019 86.11858) + (xy 166.096586 86.167502) (xy 166.137119 86.19917) (xy 166.147814 86.249486) (xy 166.123665 86.294904) + (xy 166.085111 86.313294) (xy 166.05388 86.31824) (xy 166.053869 86.318243) (xy 165.85178 86.383905) + (xy 165.662441 86.480379) (xy 165.608282 86.519728) (xy 165.608281 86.519729) (xy 166.24059 87.152037) + (xy 166.177007 87.169075) (xy 166.062993 87.234901) (xy 165.969901 87.327993) (xy 165.904075 87.442007) + (xy 165.887037 87.505589) (xy 165.254729 86.873281) (xy 165.254728 86.873282) (xy 165.215379 86.927441) + (xy 165.118905 87.11678) (xy 165.053243 87.318869) (xy 165.05324 87.318881) (xy 165.02 87.52875) + (xy 165.02 87.741249) (xy 165.05324 87.951118) (xy 165.053243 87.95113) (xy 165.118905 88.153219) + (xy 165.215377 88.342555) (xy 165.254729 88.396717) (xy 165.887037 87.764409) (xy 165.904075 87.827993) + (xy 165.969901 87.942007) (xy 166.062993 88.035099) (xy 166.177007 88.100925) (xy 166.240589 88.117962) + (xy 165.608281 88.750269) (xy 165.662444 88.789622) (xy 165.85178 88.886094) (xy 166.053869 88.951756) + (xy 166.053882 88.951759) (xy 166.085109 88.956705) (xy 166.1301 88.981643) (xy 166.148535 89.029666) + (xy 166.131788 89.078303) (xy 166.096584 89.102498) (xy 165.946029 89.151416) (xy 165.946021 89.151419) + (xy 165.946019 89.15142) (xy 165.946015 89.151421) (xy 165.946015 89.151422) (xy 165.791114 89.230347) + (xy 165.650465 89.332536) (xy 165.650457 89.332543) (xy 165.527543 89.455457) (xy 165.527536 89.455465) + (xy 165.425347 89.596114) (xy 165.346422 89.751015) (xy 165.346416 89.751029) (xy 165.292698 89.916357) + (xy 165.292695 89.916369) (xy 165.2655 90.088071) (xy 165.2655 90.261928) (xy 165.292695 90.43363) + (xy 165.292698 90.433642) (xy 165.344791 90.59397) (xy 165.34642 90.598981) (xy 165.346422 90.598984) + (xy 165.425347 90.753885) (xy 165.499592 90.856073) (xy 165.523902 90.889533) (xy 165.527536 90.894534) + (xy 165.527543 90.894542) (xy 165.650457 91.017456) (xy 165.650465 91.017463) (xy 165.650467 91.017465) + (xy 165.727387 91.07335) (xy 165.791114 91.119652) (xy 165.791116 91.119653) (xy 165.946019 91.19858) + (xy 166.111362 91.252303) (xy 166.283074 91.2795) (xy 166.283078 91.2795) (xy 166.456922 91.2795) + (xy 166.456926 91.2795) (xy 166.628638 91.252303) (xy 166.793981 91.19858) (xy 166.948884 91.119653) + (xy 167.089533 91.017465) (xy 167.212465 90.894533) (xy 167.314653 90.753884) (xy 167.39358 90.598981) + (xy 167.447303 90.433638) (xy 167.4745 90.261926) (xy 167.4745 90.088074) (xy 167.447303 89.916362) + (xy 167.39358 89.751019) (xy 167.314653 89.596116) (xy 167.31102 89.591116) (xy 167.217212 89.462001) + (xy 167.212465 89.455467) (xy 167.212463 89.455465) (xy 167.212456 89.455457) (xy 167.089542 89.332543) + (xy 167.089534 89.332536) (xy 167.082652 89.327536) (xy 167.051073 89.304592) (xy 166.948885 89.230347) + (xy 166.868426 89.189351) (xy 166.793981 89.15142) (xy 166.793974 89.151417) (xy 166.79397 89.151416) + (xy 166.643415 89.102498) (xy 166.60288 89.070829) (xy 166.592185 89.020513) (xy 166.616334 88.975094) + (xy 166.65489 88.956705) (xy 166.686117 88.951759) (xy 166.68613 88.951756) (xy 166.888219 88.886094) + (xy 167.077553 88.789622) (xy 167.131717 88.750269) (xy 166.49941 88.117962) (xy 166.562993 88.100925) + (xy 166.677007 88.035099) (xy 166.770099 87.942007) (xy 166.835925 87.827993) (xy 166.852962 87.76441) + (xy 167.485269 88.396717) (xy 167.503462 88.371678) (xy 167.546108 88.342914) (xy 167.597266 88.348291) + (xy 167.632999 88.385294) (xy 167.6395 88.41588) (xy 167.6395 99.554119) (xy 167.621907 99.602457) + (xy 167.577358 99.628177) (xy 167.5267 99.619244) (xy 167.503462 99.598321) (xy 167.485269 99.573281) + (xy 166.852962 100.205588) (xy 166.835925 100.142007) (xy 166.770099 100.027993) (xy 166.677007 99.934901) + (xy 166.562993 99.869075) (xy 166.499409 99.852037) (xy 167.131717 99.219729) (xy 167.077555 99.180377) + (xy 166.888219 99.083905) (xy 166.68613 99.018243) (xy 166.68612 99.018241) (xy 166.654888 99.013294) + (xy 166.609898 98.988355) (xy 166.591464 98.940332) (xy 166.608212 98.891694) (xy 166.64341 98.867503) + (xy 166.793981 98.81858) (xy 166.948884 98.739653) (xy 167.089533 98.637465) (xy 167.212465 98.514533) + (xy 167.314653 98.373884) (xy 167.39358 98.218981) (xy 167.447303 98.053638) (xy 167.4745 97.881926) + (xy 167.4745 97.708074) (xy 167.447303 97.536362) (xy 167.39358 97.371019) (xy 167.314653 97.216116) + (xy 167.31102 97.211116) (xy 167.22949 97.0989) (xy 167.212465 97.075467) (xy 167.212463 97.075465) + (xy 167.212456 97.075457) (xy 167.089542 96.952543) (xy 167.089534 96.952536) (xy 167.082652 96.947536) + (xy 167.03499 96.912907) (xy 166.948885 96.850347) (xy 166.868426 96.809351) (xy 166.793981 96.77142) + (xy 166.793974 96.771417) (xy 166.79397 96.771416) (xy 166.628642 96.717698) (xy 166.62863 96.717695) + (xy 166.456928 96.6905) (xy 166.456926 96.6905) (xy 166.283074 96.6905) (xy 166.283071 96.6905) + (xy 166.111369 96.717695) (xy 166.111357 96.717698) (xy 165.946029 96.771416) (xy 165.946021 96.771419) + (xy 165.946019 96.77142) (xy 165.946015 96.771421) (xy 165.946015 96.771422) (xy 165.791114 96.850347) + (xy 165.650465 96.952536) (xy 165.650457 96.952543) (xy 165.527543 97.075457) (xy 165.527536 97.075465) + (xy 165.425347 97.216114) (xy 165.346422 97.371015) (xy 165.346416 97.371029) (xy 165.292698 97.536357) + (xy 165.292695 97.536369) (xy 165.2655 97.708071) (xy 165.2655 97.881928) (xy 165.292695 98.05363) + (xy 165.292698 98.053642) (xy 165.344791 98.21397) (xy 165.34642 98.218981) (xy 165.346422 98.218984) + (xy 165.425347 98.373885) (xy 165.499592 98.476073) (xy 165.523902 98.509533) (xy 165.527536 98.514534) + (xy 165.527543 98.514542) (xy 165.650457 98.637456) (xy 165.650465 98.637463) (xy 165.650467 98.637465) + (xy 165.727387 98.69335) (xy 165.791114 98.739652) (xy 165.791116 98.739653) (xy 165.946019 98.81858) + (xy 166.096586 98.867502) (xy 166.137119 98.89917) (xy 166.147814 98.949486) (xy 166.123665 98.994904) + (xy 166.085111 99.013294) (xy 166.05388 99.01824) (xy 166.053869 99.018243) (xy 165.85178 99.083905) + (xy 165.662441 99.180379) (xy 165.608282 99.219728) (xy 165.608281 99.219729) (xy 166.24059 99.852037) + (xy 166.177007 99.869075) (xy 166.062993 99.934901) (xy 165.969901 100.027993) (xy 165.904075 100.142007) + (xy 165.887037 100.205589) (xy 165.254729 99.573281) (xy 165.254728 99.573282) (xy 165.215379 99.627441) + (xy 165.118905 99.81678) (xy 165.053243 100.018869) (xy 165.05324 100.018881) (xy 165.02 100.22875) + (xy 165.02 100.441249) (xy 165.05324 100.651118) (xy 165.053243 100.65113) (xy 165.118905 100.853219) + (xy 165.215377 101.042555) (xy 165.254729 101.096717) (xy 165.887037 100.464409) (xy 165.904075 100.527993) + (xy 165.969901 100.642007) (xy 166.062993 100.735099) (xy 166.177007 100.800925) (xy 166.240589 100.817962) + (xy 165.608281 101.450269) (xy 165.662444 101.489622) (xy 165.85178 101.586094) (xy 166.053869 101.651756) + (xy 166.053882 101.651759) (xy 166.085109 101.656705) (xy 166.1301 101.681643) (xy 166.148535 101.729666) + (xy 166.131788 101.778303) (xy 166.096584 101.802498) (xy 165.946029 101.851416) (xy 165.946021 101.851419) + (xy 165.946019 101.85142) (xy 165.946015 101.851421) (xy 165.946015 101.851422) (xy 165.791114 101.930347) + (xy 165.650465 102.032536) (xy 165.650457 102.032543) (xy 165.527543 102.155457) (xy 165.527536 102.155465) + (xy 165.425347 102.296114) (xy 165.346422 102.451015) (xy 165.346416 102.451029) (xy 165.292698 102.616357) + (xy 165.292695 102.616369) (xy 165.2655 102.788071) (xy 165.2655 102.961928) (xy 165.292695 103.13363) + (xy 165.292698 103.133642) (xy 165.344791 103.29397) (xy 165.34642 103.298981) (xy 165.346422 103.298984) + (xy 165.425347 103.453885) (xy 165.499592 103.556073) (xy 165.523902 103.589533) (xy 165.527536 103.594534) + (xy 165.527543 103.594542) (xy 165.650457 103.717456) (xy 165.650465 103.717463) (xy 165.650467 103.717465) + (xy 165.727387 103.77335) (xy 165.791114 103.819652) (xy 165.791116 103.819653) (xy 165.946019 103.89858) + (xy 166.111362 103.952303) (xy 166.283074 103.9795) (xy 166.283078 103.9795) (xy 166.456922 103.9795) + (xy 166.456926 103.9795) (xy 166.628638 103.952303) (xy 166.793981 103.89858) (xy 166.948884 103.819653) + (xy 167.089533 103.717465) (xy 167.212465 103.594533) (xy 167.314653 103.453884) (xy 167.39358 103.298981) + (xy 167.447303 103.133638) (xy 167.4745 102.961926) (xy 167.4745 102.788074) (xy 167.447303 102.616362) + (xy 167.39358 102.451019) (xy 167.314653 102.296116) (xy 167.31102 102.291116) (xy 167.26835 102.232387) + (xy 167.212465 102.155467) (xy 167.212463 102.155465) (xy 167.212456 102.155457) (xy 167.089542 102.032543) + (xy 167.089534 102.032536) (xy 167.082652 102.027536) (xy 167.051073 102.004592) (xy 166.948885 101.930347) + (xy 166.868426 101.889351) (xy 166.793981 101.85142) (xy 166.793974 101.851417) (xy 166.79397 101.851416) + (xy 166.643415 101.802498) (xy 166.60288 101.770829) (xy 166.592185 101.720513) (xy 166.616334 101.675094) + (xy 166.65489 101.656705) (xy 166.686117 101.651759) (xy 166.68613 101.651756) (xy 166.888219 101.586094) + (xy 167.077553 101.489622) (xy 167.131717 101.450269) (xy 166.49941 100.817962) (xy 166.562993 100.800925) + (xy 166.677007 100.735099) (xy 166.770099 100.642007) (xy 166.835925 100.527993) (xy 166.852962 100.46441) + (xy 167.485269 101.096717) (xy 167.503462 101.071678) (xy 167.546108 101.042914) (xy 167.597266 101.048291) + (xy 167.632999 101.085294) (xy 167.6395 101.11588) (xy 167.6395 106.6043) (xy 167.621907 106.652638) + (xy 167.577358 106.678358) (xy 167.5643 106.6795) (xy 147.3957 106.6795) (xy 147.347362 106.661907) + (xy 147.321642 106.617358) (xy 147.3205 106.6043) (xy 147.3205 105.323071) (xy 147.4855 105.323071) + (xy 147.4855 105.496928) (xy 147.512695 105.66863) (xy 147.512698 105.668642) (xy 147.514321 105.673638) + (xy 147.56642 105.833981) (xy 147.604351 105.908426) (xy 147.645347 105.988885) (xy 147.747536 106.129534) + (xy 147.747543 106.129542) (xy 147.870457 106.252456) (xy 147.870465 106.252463) (xy 147.870467 106.252465) + (xy 147.947387 106.30835) (xy 148.011114 106.354652) (xy 148.011116 106.354653) (xy 148.166019 106.43358) + (xy 148.331362 106.487303) (xy 148.503074 106.5145) (xy 148.503078 106.5145) (xy 148.676922 106.5145) + (xy 148.676926 106.5145) (xy 148.848638 106.487303) (xy 149.013981 106.43358) (xy 149.168884 106.354653) + (xy 149.309533 106.252465) (xy 149.432465 106.129533) (xy 149.534653 105.988884) (xy 149.61358 105.833981) + (xy 149.667303 105.668638) (xy 149.6945 105.496926) (xy 149.6945 105.328071) (xy 165.2655 105.328071) + (xy 165.2655 105.501928) (xy 165.292695 105.67363) (xy 165.292698 105.673642) (xy 165.344791 105.83397) + (xy 165.34642 105.838981) (xy 165.346422 105.838984) (xy 165.425347 105.993885) (xy 165.499592 106.096073) + (xy 165.523902 106.129533) (xy 165.527536 106.134534) (xy 165.527543 106.134542) (xy 165.650457 106.257456) + (xy 165.650465 106.257463) (xy 165.650467 106.257465) (xy 165.727387 106.31335) (xy 165.791114 106.359652) + (xy 165.791116 106.359653) (xy 165.946019 106.43858) (xy 166.111362 106.492303) (xy 166.283074 106.5195) + (xy 166.283078 106.5195) (xy 166.456922 106.5195) (xy 166.456926 106.5195) (xy 166.628638 106.492303) + (xy 166.793981 106.43858) (xy 166.948884 106.359653) (xy 167.089533 106.257465) (xy 167.212465 106.134533) + (xy 167.314653 105.993884) (xy 167.39358 105.838981) (xy 167.447303 105.673638) (xy 167.4745 105.501926) + (xy 167.4745 105.328074) (xy 167.447303 105.156362) (xy 167.39358 104.991019) (xy 167.314653 104.836116) + (xy 167.31102 104.831116) (xy 167.26835 104.772387) (xy 167.212465 104.695467) (xy 167.212463 104.695465) + (xy 167.212456 104.695457) (xy 167.089542 104.572543) (xy 167.089534 104.572536) (xy 167.082652 104.567536) + (xy 167.051073 104.544592) (xy 166.948885 104.470347) (xy 166.868426 104.429351) (xy 166.793981 104.39142) + (xy 166.793974 104.391417) (xy 166.79397 104.391416) (xy 166.628642 104.337698) (xy 166.62863 104.337695) + (xy 166.456928 104.3105) (xy 166.456926 104.3105) (xy 166.283074 104.3105) (xy 166.283071 104.3105) + (xy 166.111369 104.337695) (xy 166.111357 104.337698) (xy 165.946029 104.391416) (xy 165.946021 104.391419) + (xy 165.946019 104.39142) (xy 165.946015 104.391421) (xy 165.946015 104.391422) (xy 165.791114 104.470347) + (xy 165.650465 104.572536) (xy 165.650457 104.572543) (xy 165.527543 104.695457) (xy 165.527536 104.695465) + (xy 165.425347 104.836114) (xy 165.346422 104.991015) (xy 165.346416 104.991029) (xy 165.292698 105.156357) + (xy 165.292695 105.156369) (xy 165.2655 105.328071) (xy 149.6945 105.328071) (xy 149.6945 105.323074) + (xy 149.667303 105.151362) (xy 149.61358 104.986019) (xy 149.534653 104.831116) (xy 149.432465 104.690467) + (xy 149.432463 104.690465) (xy 149.432456 104.690457) (xy 149.309542 104.567543) (xy 149.309534 104.567536) + (xy 149.168885 104.465347) (xy 149.088426 104.424351) (xy 149.013981 104.38642) (xy 149.013974 104.386417) + (xy 149.01397 104.386416) (xy 148.848642 104.332698) (xy 148.84863 104.332695) (xy 148.676928 104.3055) + (xy 148.676926 104.3055) (xy 148.503074 104.3055) (xy 148.503071 104.3055) (xy 148.331369 104.332695) + (xy 148.331357 104.332698) (xy 148.166029 104.386416) (xy 148.166021 104.386419) (xy 148.166019 104.38642) + (xy 148.166015 104.386421) (xy 148.166015 104.386422) (xy 148.011114 104.465347) (xy 147.870465 104.567536) + (xy 147.870457 104.567543) (xy 147.747543 104.690457) (xy 147.747536 104.690465) (xy 147.645347 104.831114) + (xy 147.566422 104.986015) (xy 147.566416 104.986029) (xy 147.512698 105.151357) (xy 147.512695 105.151369) + (xy 147.4855 105.323071) (xy 147.3205 105.323071) (xy 147.3205 101.110881) (xy 147.338093 101.062543) + (xy 147.382642 101.036823) (xy 147.4333 101.045756) (xy 147.456538 101.066679) (xy 147.474729 101.091717) + (xy 148.107037 100.459409) (xy 148.124075 100.522993) (xy 148.189901 100.637007) (xy 148.282993 100.730099) + (xy 148.397007 100.795925) (xy 148.460589 100.812962) (xy 147.828281 101.445269) (xy 147.882444 101.484622) + (xy 148.07178 101.581094) (xy 148.273869 101.646756) (xy 148.273882 101.646759) (xy 148.305109 101.651705) + (xy 148.3501 101.676643) (xy 148.368535 101.724666) (xy 148.351788 101.773303) (xy 148.316584 101.797498) + (xy 148.166029 101.846416) (xy 148.166021 101.846419) (xy 148.166019 101.84642) (xy 148.166015 101.846421) + (xy 148.166015 101.846422) (xy 148.011114 101.925347) (xy 147.870465 102.027536) (xy 147.870457 102.027543) + (xy 147.747543 102.150457) (xy 147.747536 102.150465) (xy 147.645347 102.291114) (xy 147.566422 102.446015) + (xy 147.566416 102.446029) (xy 147.512698 102.611357) (xy 147.512695 102.611369) (xy 147.4855 102.783071) + (xy 147.4855 102.956928) (xy 147.512695 103.12863) (xy 147.512698 103.128642) (xy 147.514321 103.133638) + (xy 147.56642 103.293981) (xy 147.604351 103.368426) (xy 147.645347 103.448885) (xy 147.747536 103.589534) + (xy 147.747543 103.589542) (xy 147.870457 103.712456) (xy 147.870465 103.712463) (xy 147.870467 103.712465) + (xy 147.947387 103.76835) (xy 148.011114 103.814652) (xy 148.011116 103.814653) (xy 148.166019 103.89358) + (xy 148.331362 103.947303) (xy 148.503074 103.9745) (xy 148.503078 103.9745) (xy 148.676922 103.9745) + (xy 148.676926 103.9745) (xy 148.848638 103.947303) (xy 149.013981 103.89358) (xy 149.168884 103.814653) + (xy 149.309533 103.712465) (xy 149.432465 103.589533) (xy 149.534653 103.448884) (xy 149.61358 103.293981) + (xy 149.667303 103.128638) (xy 149.6945 102.956926) (xy 149.6945 102.783074) (xy 149.667303 102.611362) + (xy 149.61358 102.446019) (xy 149.534653 102.291116) (xy 149.432465 102.150467) (xy 149.432463 102.150465) + (xy 149.432456 102.150457) (xy 149.309542 102.027543) (xy 149.309534 102.027536) (xy 149.168885 101.925347) + (xy 149.088426 101.884351) (xy 149.013981 101.84642) (xy 149.013974 101.846417) (xy 149.01397 101.846416) + (xy 148.863415 101.797498) (xy 148.82288 101.765829) (xy 148.812185 101.715513) (xy 148.836334 101.670094) + (xy 148.87489 101.651705) (xy 148.906117 101.646759) (xy 148.90613 101.646756) (xy 149.108219 101.581094) + (xy 149.297553 101.484622) (xy 149.351717 101.445269) (xy 148.71941 100.812962) (xy 148.782993 100.795925) + (xy 148.897007 100.730099) (xy 148.990099 100.637007) (xy 149.055925 100.522993) (xy 149.072962 100.45941) + (xy 149.705269 101.091717) (xy 149.744622 101.037553) (xy 149.841094 100.848219) (xy 149.906756 100.64613) + (xy 149.906759 100.646118) (xy 149.939999 100.436249) (xy 149.94 100.436242) (xy 149.94 100.223757) + (xy 149.939999 100.22375) (xy 149.906759 100.013881) (xy 149.906756 100.013869) (xy 149.841094 99.81178) + (xy 149.744622 99.622444) (xy 149.705269 99.568281) (xy 149.072962 100.200588) (xy 149.055925 100.137007) + (xy 148.990099 100.022993) (xy 148.897007 99.929901) (xy 148.782993 99.864075) (xy 148.719409 99.847037) + (xy 149.351717 99.214729) (xy 149.297555 99.175377) (xy 149.108219 99.078905) (xy 148.90613 99.013243) + (xy 148.90612 99.013241) (xy 148.874888 99.008294) (xy 148.829898 98.983355) (xy 148.811464 98.935332) + (xy 148.828212 98.886694) (xy 148.86341 98.862503) (xy 149.013981 98.81358) (xy 149.168884 98.734653) + (xy 149.309533 98.632465) (xy 149.432465 98.509533) (xy 149.534653 98.368884) (xy 149.61358 98.213981) + (xy 149.667303 98.048638) (xy 149.6945 97.876926) (xy 149.6945 97.703074) (xy 149.667303 97.531362) + (xy 149.61358 97.366019) (xy 149.534653 97.211116) (xy 149.432465 97.070467) (xy 149.432463 97.070465) + (xy 149.432456 97.070457) (xy 149.309542 96.947543) (xy 149.309534 96.947536) (xy 149.168885 96.845347) + (xy 149.088426 96.804351) (xy 149.013981 96.76642) (xy 149.013974 96.766417) (xy 149.01397 96.766416) + (xy 148.848642 96.712698) (xy 148.84863 96.712695) (xy 148.676928 96.6855) (xy 148.676926 96.6855) + (xy 148.503074 96.6855) (xy 148.503071 96.6855) (xy 148.331369 96.712695) (xy 148.331357 96.712698) + (xy 148.166029 96.766416) (xy 148.166021 96.766419) (xy 148.166019 96.76642) (xy 148.166015 96.766421) + (xy 148.166015 96.766422) (xy 148.011114 96.845347) (xy 147.870465 96.947536) (xy 147.870457 96.947543) + (xy 147.747543 97.070457) (xy 147.747536 97.070465) (xy 147.645347 97.211114) (xy 147.566422 97.366015) + (xy 147.566416 97.366029) (xy 147.512698 97.531357) (xy 147.512695 97.531369) (xy 147.4855 97.703071) + (xy 147.4855 97.876928) (xy 147.512695 98.04863) (xy 147.512698 98.048642) (xy 147.514321 98.053638) + (xy 147.56642 98.213981) (xy 147.604351 98.288426) (xy 147.645347 98.368885) (xy 147.747536 98.509534) + (xy 147.747543 98.509542) (xy 147.870457 98.632456) (xy 147.870465 98.632463) (xy 147.870467 98.632465) + (xy 147.947387 98.68835) (xy 148.011114 98.734652) (xy 148.011116 98.734653) (xy 148.166019 98.81358) + (xy 148.316586 98.862502) (xy 148.357119 98.89417) (xy 148.367814 98.944486) (xy 148.343665 98.989904) + (xy 148.305111 99.008294) (xy 148.27388 99.01324) (xy 148.273869 99.013243) (xy 148.07178 99.078905) + (xy 147.882441 99.175379) (xy 147.828282 99.214728) (xy 147.828281 99.214729) (xy 148.46059 99.847037) + (xy 148.397007 99.864075) (xy 148.282993 99.929901) (xy 148.189901 100.022993) (xy 148.124075 100.137007) + (xy 148.107037 100.200589) (xy 147.474729 99.568281) (xy 147.456538 99.59332) (xy 147.413892 99.622084) + (xy 147.362734 99.616707) (xy 147.327001 99.579704) (xy 147.3205 99.549118) (xy 147.3205 95.163071) + (xy 147.4855 95.163071) (xy 147.4855 95.336928) (xy 147.512695 95.50863) (xy 147.512698 95.508642) + (xy 147.540682 95.594769) (xy 147.56642 95.673981) (xy 147.597918 95.735799) (xy 147.645347 95.828885) + (xy 147.747536 95.969534) (xy 147.747543 95.969542) (xy 147.870457 96.092456) (xy 147.870465 96.092463) + (xy 147.870467 96.092465) (xy 147.947387 96.14835) (xy 148.011114 96.194652) (xy 148.011116 96.194653) + (xy 148.166019 96.27358) (xy 148.331362 96.327303) (xy 148.503074 96.3545) (xy 148.503078 96.3545) + (xy 148.676922 96.3545) (xy 148.676926 96.3545) (xy 148.848638 96.327303) (xy 149.013981 96.27358) + (xy 149.168884 96.194653) (xy 149.309533 96.092465) (xy 149.432465 95.969533) (xy 149.534653 95.828884) + (xy 149.61358 95.673981) (xy 149.667303 95.508638) (xy 149.6945 95.336926) (xy 149.6945 95.163074) + (xy 149.667303 94.991362) (xy 149.61358 94.826019) (xy 149.534653 94.671116) (xy 149.432465 94.530467) + (xy 149.432463 94.530465) (xy 149.432456 94.530457) (xy 149.309542 94.407543) (xy 149.309534 94.407536) + (xy 149.168885 94.305347) (xy 149.088426 94.264351) (xy 149.013981 94.22642) (xy 149.013974 94.226417) + (xy 149.01397 94.226416) (xy 148.848642 94.172698) (xy 148.84863 94.172695) (xy 148.676928 94.1455) + (xy 148.676926 94.1455) (xy 148.503074 94.1455) (xy 148.503071 94.1455) (xy 148.331369 94.172695) + (xy 148.331357 94.172698) (xy 148.166029 94.226416) (xy 148.166021 94.226419) (xy 148.166019 94.22642) + (xy 148.166015 94.226421) (xy 148.166015 94.226422) (xy 148.011114 94.305347) (xy 147.870465 94.407536) + (xy 147.870457 94.407543) (xy 147.747543 94.530457) (xy 147.747536 94.530465) (xy 147.645347 94.671114) + (xy 147.566422 94.826015) (xy 147.566416 94.826029) (xy 147.512698 94.991357) (xy 147.512695 94.991369) + (xy 147.4855 95.163071) (xy 147.3205 95.163071) (xy 147.3205 93.932399) (xy 154.6649 93.932399) + (xy 154.6649 94.078401) (xy 154.670507 94.099326) (xy 154.702688 94.21943) (xy 154.775688 94.345869) + (xy 154.775692 94.345875) (xy 154.878924 94.449107) (xy 154.878927 94.449109) (xy 154.878929 94.449111) + (xy 155.005371 94.522112) (xy 155.146399 94.5599) (xy 155.146402 94.5599) (xy 155.275072 94.5599) + (xy 155.32341 94.577493) (xy 155.328246 94.581926) (xy 157.590324 96.844004) (xy 157.612064 96.890624) + (xy 157.609788 96.916639) (xy 157.591228 96.985912) (xy 157.5859 97.005799) (xy 157.5859 97.151801) + (xy 157.603133 97.216116) (xy 157.623688 97.29283) (xy 157.696688 97.419269) (xy 157.696692 97.419275) + (xy 157.799924 97.522507) (xy 157.799927 97.522509) (xy 157.799929 97.522511) (xy 157.926371 97.595512) + (xy 158.067399 97.6333) (xy 158.067402 97.6333) (xy 158.213398 97.6333) (xy 158.213401 97.6333) + (xy 158.354429 97.595512) (xy 158.480871 97.522511) (xy 158.584111 97.419271) (xy 158.657112 97.292829) + (xy 158.6949 97.151801) (xy 158.6949 97.0989) (xy 158.712493 97.050562) (xy 158.757042 97.024842) + (xy 158.7701 97.0237) (xy 158.772198 97.0237) (xy 158.772201 97.0237) (xy 158.913229 96.985912) + (xy 159.039671 96.912911) (xy 159.142911 96.809671) (xy 159.215912 96.683229) (xy 159.2537 96.542201) + (xy 159.2537 96.4385) (xy 159.271293 96.390162) (xy 159.315842 96.364442) (xy 159.3289 96.3633) + (xy 159.432598 96.3633) (xy 159.432601 96.3633) (xy 159.573629 96.325512) (xy 159.700071 96.252511) + (xy 159.803311 96.149271) (xy 159.876312 96.022829) (xy 159.9141 95.881801) (xy 159.9141 95.735799) + (xy 159.876312 95.594771) (xy 159.803311 95.468329) (xy 159.803309 95.468327) (xy 159.803307 95.468324) + (xy 159.700075 95.365092) (xy 159.700069 95.365088) (xy 159.695652 95.362538) (xy 159.651291 95.336926) + (xy 159.57363 95.292088) (xy 159.538372 95.282641) (xy 159.432601 95.2543) (xy 159.303928 95.2543) + (xy 159.2885 95.248684) (xy 159.272147 95.247254) (xy 159.258702 95.237839) (xy 159.25559 95.236707) + (xy 159.250754 95.232274) (xy 159.186551 95.168071) (xy 165.2655 95.168071) (xy 165.2655 95.341928) + (xy 165.292695 95.51363) (xy 165.292698 95.513642) (xy 165.344791 95.67397) (xy 165.34642 95.678981) + (xy 165.364686 95.71483) (xy 165.425347 95.833885) (xy 165.486185 95.91762) (xy 165.523902 95.969533) + (xy 165.527536 95.974534) (xy 165.527543 95.974542) (xy 165.650457 96.097456) (xy 165.650465 96.097463) + (xy 165.650467 96.097465) (xy 165.721777 96.149275) (xy 165.791114 96.199652) (xy 165.791116 96.199653) + (xy 165.946019 96.27858) (xy 166.111362 96.332303) (xy 166.283074 96.3595) (xy 166.283078 96.3595) + (xy 166.456922 96.3595) (xy 166.456926 96.3595) (xy 166.628638 96.332303) (xy 166.793981 96.27858) + (xy 166.948884 96.199653) (xy 167.089533 96.097465) (xy 167.212465 95.974533) (xy 167.314653 95.833884) + (xy 167.39358 95.678981) (xy 167.447303 95.513638) (xy 167.4745 95.341926) (xy 167.4745 95.168074) + (xy 167.447303 94.996362) (xy 167.39358 94.831019) (xy 167.314653 94.676116) (xy 167.31102 94.671116) + (xy 167.26835 94.612387) (xy 167.212465 94.535467) (xy 167.212463 94.535465) (xy 167.212456 94.535457) + (xy 167.089542 94.412543) (xy 167.089534 94.412536) (xy 167.082652 94.407536) (xy 166.997784 94.345875) + (xy 166.948885 94.310347) (xy 166.868426 94.269351) (xy 166.793981 94.23142) (xy 166.793974 94.231417) + (xy 166.79397 94.231416) (xy 166.628642 94.177698) (xy 166.62863 94.177695) (xy 166.456928 94.1505) + (xy 166.456926 94.1505) (xy 166.283074 94.1505) (xy 166.283071 94.1505) (xy 166.111369 94.177695) + (xy 166.111357 94.177698) (xy 165.946029 94.231416) (xy 165.946021 94.231419) (xy 165.946019 94.23142) + (xy 165.946015 94.231421) (xy 165.946015 94.231422) (xy 165.791114 94.310347) (xy 165.650465 94.412536) + (xy 165.650457 94.412543) (xy 165.527543 94.535457) (xy 165.527536 94.535465) (xy 165.425347 94.676114) + (xy 165.346422 94.831015) (xy 165.346416 94.831029) (xy 165.292698 94.996357) (xy 165.292695 94.996369) + (xy 165.2655 95.168071) (xy 159.186551 95.168071) (xy 157.695944 93.677464) (xy 157.674204 93.630844) + (xy 157.676481 93.604826) (xy 157.6789 93.595801) (xy 157.6789 93.449799) (xy 157.641112 93.308771) + (xy 157.568111 93.182329) (xy 157.568109 93.182327) (xy 157.568107 93.182324) (xy 157.464875 93.079092) + (xy 157.464869 93.079088) (xy 157.33843 93.006088) (xy 157.303172 92.996641) (xy 157.197401 92.9683) + (xy 157.051399 92.9683) (xy 156.966782 92.990972) (xy 156.910369 93.006088) (xy 156.78393 93.079088) + (xy 156.783924 93.079092) (xy 156.680692 93.182324) (xy 156.680688 93.18233) (xy 156.607688 93.308769) + (xy 156.588794 93.379285) (xy 156.5699 93.449799) (xy 156.5699 93.595801) (xy 156.598241 93.701572) + (xy 156.607688 93.73683) (xy 156.680688 93.863269) (xy 156.680692 93.863275) (xy 156.783924 93.966507) + (xy 156.783927 93.966509) (xy 156.783929 93.966511) (xy 156.910371 94.039512) (xy 157.051399 94.0773) + (xy 157.129272 94.0773) (xy 157.17761 94.094893) (xy 157.182446 94.099326) (xy 157.865953 94.782833) + (xy 157.887693 94.829453) (xy 157.874379 94.87914) (xy 157.832242 94.908645) (xy 157.793317 94.908645) + (xy 157.756201 94.8987) (xy 157.610199 94.8987) (xy 157.525582 94.921372) (xy 157.469169 94.936488) + (xy 157.34273 95.009488) (xy 157.342724 95.009492) (xy 157.239492 95.112724) (xy 157.239488 95.11273) + (xy 157.166488 95.239169) (xy 157.14829 95.307087) (xy 157.118785 95.349224) (xy 157.069098 95.362538) + (xy 157.022478 95.340798) (xy 155.795926 94.114246) (xy 155.774186 94.067626) (xy 155.7739 94.061072) + (xy 155.7739 93.932401) (xy 155.7739 93.932399) (xy 155.736112 93.791371) (xy 155.663111 93.664929) + (xy 155.663109 93.664927) (xy 155.663107 93.664924) (xy 155.559875 93.561692) (xy 155.559869 93.561688) + (xy 155.43343 93.488688) (xy 155.398172 93.479241) (xy 155.292401 93.4509) (xy 155.146399 93.4509) + (xy 155.061782 93.473572) (xy 155.005369 93.488688) (xy 154.87893 93.561688) (xy 154.878924 93.561692) + (xy 154.775692 93.664924) (xy 154.775688 93.66493) (xy 154.702688 93.791369) (xy 154.695151 93.819499) + (xy 154.6649 93.932399) (xy 147.3205 93.932399) (xy 147.3205 92.623071) (xy 147.4855 92.623071) + (xy 147.4855 92.796928) (xy 147.512695 92.96863) (xy 147.512698 92.968642) (xy 147.548585 93.079092) + (xy 147.56642 93.133981) (xy 147.591052 93.182324) (xy 147.645347 93.288885) (xy 147.747536 93.429534) + (xy 147.747543 93.429542) (xy 147.870457 93.552456) (xy 147.870465 93.552463) (xy 147.870467 93.552465) + (xy 147.930112 93.5958) (xy 148.011114 93.654652) (xy 148.011116 93.654653) (xy 148.166019 93.73358) + (xy 148.331362 93.787303) (xy 148.503074 93.8145) (xy 148.503078 93.8145) (xy 148.676922 93.8145) + (xy 148.676926 93.8145) (xy 148.848638 93.787303) (xy 149.013981 93.73358) (xy 149.168884 93.654653) + (xy 149.309533 93.552465) (xy 149.432465 93.429533) (xy 149.534653 93.288884) (xy 149.61358 93.133981) + (xy 149.667303 92.968638) (xy 149.6945 92.796926) (xy 149.6945 92.628071) (xy 165.2655 92.628071) + (xy 165.2655 92.801928) (xy 165.292695 92.97363) (xy 165.292698 92.973642) (xy 165.344791 93.13397) + (xy 165.34642 93.138981) (xy 165.384351 93.213426) (xy 165.425347 93.293885) (xy 165.499592 93.396073) + (xy 165.523902 93.429533) (xy 165.527536 93.434534) (xy 165.527543 93.434542) (xy 165.650457 93.557456) + (xy 165.650465 93.557463) (xy 165.650467 93.557465) (xy 165.703232 93.595801) (xy 165.791114 93.659652) + (xy 165.791116 93.659653) (xy 165.946019 93.73858) (xy 166.111362 93.792303) (xy 166.283074 93.8195) + (xy 166.283078 93.8195) (xy 166.456922 93.8195) (xy 166.456926 93.8195) (xy 166.628638 93.792303) + (xy 166.793981 93.73858) (xy 166.948884 93.659653) (xy 167.089533 93.557465) (xy 167.212465 93.434533) + (xy 167.314653 93.293884) (xy 167.39358 93.138981) (xy 167.447303 92.973638) (xy 167.4745 92.801926) + (xy 167.4745 92.628074) (xy 167.447303 92.456362) (xy 167.39358 92.291019) (xy 167.314653 92.136116) + (xy 167.31102 92.131116) (xy 167.26835 92.072387) (xy 167.212465 91.995467) (xy 167.212463 91.995465) + (xy 167.212456 91.995457) (xy 167.089542 91.872543) (xy 167.089534 91.872536) (xy 167.082652 91.867536) + (xy 167.051073 91.844592) (xy 166.948885 91.770347) (xy 166.868426 91.729351) (xy 166.793981 91.69142) + (xy 166.793974 91.691417) (xy 166.79397 91.691416) (xy 166.628642 91.637698) (xy 166.62863 91.637695) + (xy 166.456928 91.6105) (xy 166.456926 91.6105) (xy 166.283074 91.6105) (xy 166.283071 91.6105) + (xy 166.111369 91.637695) (xy 166.111357 91.637698) (xy 165.946029 91.691416) (xy 165.946021 91.691419) + (xy 165.946019 91.69142) (xy 165.946015 91.691421) (xy 165.946015 91.691422) (xy 165.791114 91.770347) + (xy 165.650465 91.872536) (xy 165.650457 91.872543) (xy 165.527543 91.995457) (xy 165.527536 91.995465) + (xy 165.425347 92.136114) (xy 165.346422 92.291015) (xy 165.346416 92.291029) (xy 165.292698 92.456357) + (xy 165.292695 92.456369) (xy 165.2655 92.628071) (xy 149.6945 92.628071) (xy 149.6945 92.623074) + (xy 149.667303 92.451362) (xy 149.61358 92.286019) (xy 149.534653 92.131116) (xy 149.432465 91.990467) + (xy 149.432463 91.990465) (xy 149.432456 91.990457) (xy 149.309542 91.867543) (xy 149.309534 91.867536) + (xy 149.168885 91.765347) (xy 149.088426 91.724351) (xy 149.013981 91.68642) (xy 149.013974 91.686417) + (xy 149.01397 91.686416) (xy 148.848642 91.632698) (xy 148.84863 91.632695) (xy 148.676928 91.6055) + (xy 148.676926 91.6055) (xy 148.503074 91.6055) (xy 148.503071 91.6055) (xy 148.331369 91.632695) + (xy 148.331357 91.632698) (xy 148.166029 91.686416) (xy 148.166021 91.686419) (xy 148.166019 91.68642) + (xy 148.166015 91.686421) (xy 148.166015 91.686422) (xy 148.011114 91.765347) (xy 147.870465 91.867536) + (xy 147.870457 91.867543) (xy 147.747543 91.990457) (xy 147.747536 91.990465) (xy 147.645347 92.131114) + (xy 147.566422 92.286015) (xy 147.566416 92.286029) (xy 147.512698 92.451357) (xy 147.512695 92.451369) + (xy 147.4855 92.623071) (xy 147.3205 92.623071) (xy 147.3205 88.410881) (xy 147.338093 88.362543) + (xy 147.382642 88.336823) (xy 147.4333 88.345756) (xy 147.456538 88.366679) (xy 147.474729 88.391717) + (xy 148.107037 87.759409) (xy 148.124075 87.822993) (xy 148.189901 87.937007) (xy 148.282993 88.030099) + (xy 148.397007 88.095925) (xy 148.460589 88.112962) (xy 147.828281 88.745269) (xy 147.882444 88.784622) + (xy 148.07178 88.881094) (xy 148.273869 88.946756) (xy 148.273882 88.946759) (xy 148.305109 88.951705) + (xy 148.3501 88.976643) (xy 148.368535 89.024666) (xy 148.351788 89.073303) (xy 148.316584 89.097498) + (xy 148.166029 89.146416) (xy 148.166021 89.146419) (xy 148.166019 89.14642) (xy 148.166015 89.146421) + (xy 148.166015 89.146422) (xy 148.011114 89.225347) (xy 147.870465 89.327536) (xy 147.870457 89.327543) + (xy 147.747543 89.450457) (xy 147.747536 89.450465) (xy 147.645347 89.591114) (xy 147.566422 89.746015) + (xy 147.566416 89.746029) (xy 147.512698 89.911357) (xy 147.512695 89.911369) (xy 147.4855 90.083071) + (xy 147.4855 90.256928) (xy 147.512695 90.42863) (xy 147.512698 90.428642) (xy 147.514321 90.433638) + (xy 147.56642 90.593981) (xy 147.604351 90.668426) (xy 147.645347 90.748885) (xy 147.747536 90.889534) + (xy 147.747543 90.889542) (xy 147.870457 91.012456) (xy 147.870465 91.012463) (xy 147.870467 91.012465) + (xy 147.947387 91.06835) (xy 148.011114 91.114652) (xy 148.011116 91.114653) (xy 148.166019 91.19358) + (xy 148.331362 91.247303) (xy 148.503074 91.2745) (xy 148.503078 91.2745) (xy 148.676922 91.2745) + (xy 148.676926 91.2745) (xy 148.848638 91.247303) (xy 149.013981 91.19358) (xy 149.168884 91.114653) + (xy 149.309533 91.012465) (xy 149.432465 90.889533) (xy 149.534653 90.748884) (xy 149.61358 90.593981) + (xy 149.667303 90.428638) (xy 149.6945 90.256926) (xy 149.6945 90.083074) (xy 149.667303 89.911362) + (xy 149.61358 89.746019) (xy 149.534653 89.591116) (xy 149.432465 89.450467) (xy 149.432463 89.450465) + (xy 149.432456 89.450457) (xy 149.309542 89.327543) (xy 149.309534 89.327536) (xy 149.300495 89.320969) + (xy 149.271073 89.299592) (xy 149.168885 89.225347) (xy 149.088426 89.184351) (xy 149.013981 89.14642) + (xy 149.013974 89.146417) (xy 149.01397 89.146416) (xy 148.863415 89.097498) (xy 148.82288 89.065829) + (xy 148.812185 89.015513) (xy 148.836334 88.970094) (xy 148.87489 88.951705) (xy 148.906117 88.946759) + (xy 148.90613 88.946756) (xy 149.108219 88.881094) (xy 149.297553 88.784622) (xy 149.351717 88.745269) + (xy 148.71941 88.112962) (xy 148.782993 88.095925) (xy 148.897007 88.030099) (xy 148.990099 87.937007) + (xy 149.055925 87.822993) (xy 149.072962 87.75941) (xy 149.705269 88.391717) (xy 149.744622 88.337553) + (xy 149.841094 88.148219) (xy 149.906756 87.94613) (xy 149.906759 87.946118) (xy 149.939999 87.736249) + (xy 149.94 87.736242) (xy 149.94 87.523757) (xy 149.939999 87.52375) (xy 149.906759 87.313881) (xy 149.906756 87.313869) + (xy 149.841094 87.11178) (xy 149.744622 86.922444) (xy 149.705269 86.868281) (xy 149.072962 87.500588) + (xy 149.055925 87.437007) (xy 148.990099 87.322993) (xy 148.897007 87.229901) (xy 148.782993 87.164075) + (xy 148.719409 87.147037) (xy 149.351717 86.514729) (xy 149.297555 86.475377) (xy 149.108219 86.378905) + (xy 148.90613 86.313243) (xy 148.90612 86.313241) (xy 148.874888 86.308294) (xy 148.829898 86.283355) + (xy 148.811464 86.235332) (xy 148.828212 86.186694) (xy 148.86341 86.162503) (xy 149.013981 86.11358) + (xy 149.168884 86.034653) (xy 149.309533 85.932465) (xy 149.432465 85.809533) (xy 149.534653 85.668884) + (xy 149.61358 85.513981) (xy 149.667303 85.348638) (xy 149.6945 85.176926) (xy 149.6945 85.003074) + (xy 149.667303 84.831362) (xy 149.61358 84.666019) (xy 149.534653 84.511116) (xy 149.432465 84.370467) + (xy 149.432463 84.370465) (xy 149.432456 84.370457) (xy 149.309542 84.247543) (xy 149.309534 84.247536) + (xy 149.309484 84.2475) (xy 149.271073 84.219592) (xy 149.168885 84.145347) (xy 149.088426 84.104351) + (xy 149.013981 84.06642) (xy 149.013974 84.066417) (xy 149.01397 84.066416) (xy 148.848642 84.012698) + (xy 148.84863 84.012695) (xy 148.676928 83.9855) (xy 148.676926 83.9855) (xy 148.503074 83.9855) + (xy 148.503071 83.9855) (xy 148.331369 84.012695) (xy 148.331357 84.012698) (xy 148.166029 84.066416) + (xy 148.166021 84.066419) (xy 148.166019 84.06642) (xy 148.166015 84.066421) (xy 148.166015 84.066422) + (xy 148.011114 84.145347) (xy 147.870465 84.247536) (xy 147.870457 84.247543) (xy 147.747543 84.370457) + (xy 147.747536 84.370465) (xy 147.645347 84.511114) (xy 147.566422 84.666015) (xy 147.566416 84.666029) + (xy 147.512698 84.831357) (xy 147.512695 84.831369) (xy 147.4855 85.003071) (xy 147.4855 85.176928) + (xy 147.512695 85.34863) (xy 147.512698 85.348642) (xy 147.514321 85.353638) (xy 147.56642 85.513981) + (xy 147.604351 85.588426) (xy 147.645347 85.668885) (xy 147.747536 85.809534) (xy 147.747543 85.809542) + (xy 147.870457 85.932456) (xy 147.870465 85.932463) (xy 147.870467 85.932465) (xy 147.947387 85.98835) + (xy 148.011114 86.034652) (xy 148.011116 86.034653) (xy 148.166019 86.11358) (xy 148.316586 86.162502) + (xy 148.357119 86.19417) (xy 148.367814 86.244486) (xy 148.343665 86.289904) (xy 148.305111 86.308294) + (xy 148.27388 86.31324) (xy 148.273869 86.313243) (xy 148.07178 86.378905) (xy 147.882441 86.475379) + (xy 147.828282 86.514728) (xy 147.828281 86.514729) (xy 148.46059 87.147037) (xy 148.397007 87.164075) + (xy 148.282993 87.229901) (xy 148.189901 87.322993) (xy 148.124075 87.437007) (xy 148.107037 87.500589) + (xy 147.474729 86.868281) (xy 147.456538 86.89332) (xy 147.413892 86.922084) (xy 147.362734 86.916707) + (xy 147.327001 86.879704) (xy 147.3205 86.849118) (xy 147.3205 82.463071) (xy 147.4855 82.463071) + (xy 147.4855 82.636928) (xy 147.512695 82.80863) (xy 147.512698 82.808642) (xy 147.514321 82.813638) + (xy 147.56642 82.973981) (xy 147.604351 83.048426) (xy 147.645347 83.128885) (xy 147.747536 83.269534) + (xy 147.747543 83.269542) (xy 147.870457 83.392456) (xy 147.870465 83.392463) (xy 147.870467 83.392465) + (xy 147.947387 83.44835) (xy 148.011114 83.494652) (xy 148.011116 83.494653) (xy 148.166019 83.57358) + (xy 148.331362 83.627303) (xy 148.503074 83.6545) (xy 148.503078 83.6545) (xy 148.676922 83.6545) + (xy 148.676926 83.6545) (xy 148.848638 83.627303) (xy 149.013981 83.57358) (xy 149.168884 83.494653) + (xy 149.309533 83.392465) (xy 149.432465 83.269533) (xy 149.534653 83.128884) (xy 149.61358 82.973981) + (xy 149.667303 82.808638) (xy 149.6945 82.636926) (xy 149.6945 82.463074) (xy 149.667303 82.291362) + (xy 149.61358 82.126019) (xy 149.534653 81.971116) (xy 149.432465 81.830467) (xy 149.432463 81.830465) + (xy 149.432456 81.830457) (xy 149.309542 81.707543) (xy 149.309534 81.707536) (xy 149.221958 81.643908) + (xy 149.168885 81.605347) (xy 149.134838 81.587999) (xy 151.0835 81.587999) (xy 151.0835 81.734001) + (xy 151.111841 81.839772) (xy 151.121288 81.87503) (xy 151.194288 82.001469) (xy 151.194292 82.001475) + (xy 151.285274 82.092457) (xy 151.307014 82.139077) (xy 151.3073 82.145631) (xy 151.3073 89.198608) + (xy 151.297225 89.236208) (xy 151.248288 89.320968) (xy 151.245189 89.332535) (xy 151.2105 89.461999) + (xy 151.2105 89.608001) (xy 151.238841 89.713772) (xy 151.248288 89.74903) (xy 151.321288 89.875469) + (xy 151.321292 89.875475) (xy 151.424524 89.978707) (xy 151.424527 89.978709) (xy 151.424529 89.978711) + (xy 151.550971 90.051712) (xy 151.691999 90.0895) (xy 151.692002 90.0895) (xy 151.837998 90.0895) + (xy 151.838001 90.0895) (xy 151.979029 90.051712) (xy 151.979031 90.051711) (xy 152.033967 90.019994) + (xy 152.049816 90.010842) (xy 152.105471 89.978711) (xy 152.208711 89.875471) (xy 152.281712 89.749029) + (xy 152.3195 89.608001) (xy 152.3195 89.461999) (xy 152.281712 89.320971) (xy 152.208711 89.194529) + (xy 152.208709 89.194527) (xy 152.208707 89.194524) (xy 152.105475 89.091292) (xy 152.105469 89.091288) + (xy 152.0063 89.034032) (xy 151.973235 88.994627) (xy 151.9687 88.968907) (xy 151.9687 83.619999) + (xy 156.906092 83.619999) (xy 156.906092 83.766001) (xy 156.934433 83.871772) (xy 156.94388 83.90703) + (xy 156.989185 83.9855) (xy 157.007774 84.017698) (xy 157.01688 84.033469) (xy 157.016884 84.033475) + (xy 157.120116 84.136707) (xy 157.120119 84.136709) (xy 157.120121 84.136711) (xy 157.246563 84.209712) + (xy 157.387591 84.2475) (xy 157.387594 84.2475) (xy 157.53359 84.2475) (xy 157.533593 84.2475) (xy 157.674621 84.209712) + (xy 157.801063 84.136711) (xy 157.801067 84.136707) (xy 157.892049 84.045726) (xy 157.938669 84.023986) + (xy 157.945223 84.0237) (xy 158.773369 84.0237) (xy 158.821707 84.041293) (xy 158.826543 84.045726) + (xy 158.917524 84.136707) (xy 158.917527 84.136709) (xy 158.917529 84.136711) (xy 159.043971 84.209712) + (xy 159.184999 84.2475) (xy 159.185002 84.2475) (xy 159.330998 84.2475) (xy 159.331001 84.2475) + (xy 159.472029 84.209712) (xy 159.598471 84.136711) (xy 159.701711 84.033471) (xy 159.774712 83.907029) + (xy 159.8125 83.766001) (xy 159.8125 83.619999) (xy 159.774712 83.478971) (xy 159.701711 83.352529) + (xy 159.701709 83.352527) (xy 159.701707 83.352524) (xy 159.598475 83.249292) (xy 159.598469 83.249288) + (xy 159.47203 83.176288) (xy 159.436772 83.166841) (xy 159.331001 83.1385) (xy 159.184999 83.1385) + (xy 159.100382 83.161172) (xy 159.043969 83.176288) (xy 158.91753 83.249288) (xy 158.917524 83.249292) + (xy 158.826543 83.340274) (xy 158.779923 83.362014) (xy 158.773369 83.3623) (xy 157.945223 83.3623) + (xy 157.896885 83.344707) (xy 157.892049 83.340274) (xy 157.801067 83.249292) (xy 157.801061 83.249288) + (xy 157.674622 83.176288) (xy 157.639364 83.166841) (xy 157.533593 83.1385) (xy 157.387591 83.1385) + (xy 157.302974 83.161172) (xy 157.246561 83.176288) (xy 157.120122 83.249288) (xy 157.120116 83.249292) + (xy 157.016884 83.352524) (xy 157.01688 83.35253) (xy 156.94388 83.478969) (xy 156.938338 83.499653) + (xy 156.906092 83.619999) (xy 151.9687 83.619999) (xy 151.9687 82.468071) (xy 165.2655 82.468071) + (xy 165.2655 82.641928) (xy 165.292695 82.81363) (xy 165.292698 82.813642) (xy 165.344791 82.97397) + (xy 165.34642 82.978981) (xy 165.346422 82.978984) (xy 165.425347 83.133885) (xy 165.456155 83.176288) + (xy 165.523902 83.269533) (xy 165.527536 83.274534) (xy 165.527543 83.274542) (xy 165.650457 83.397456) + (xy 165.650465 83.397463) (xy 165.650467 83.397465) (xy 165.727387 83.45335) (xy 165.791114 83.499652) + (xy 165.791116 83.499653) (xy 165.946019 83.57858) (xy 166.111362 83.632303) (xy 166.283074 83.6595) + (xy 166.283078 83.6595) (xy 166.456922 83.6595) (xy 166.456926 83.6595) (xy 166.628638 83.632303) + (xy 166.793981 83.57858) (xy 166.948884 83.499653) (xy 167.089533 83.397465) (xy 167.212465 83.274533) + (xy 167.314653 83.133884) (xy 167.39358 82.978981) (xy 167.447303 82.813638) (xy 167.4745 82.641926) + (xy 167.4745 82.468074) (xy 167.447303 82.296362) (xy 167.39358 82.131019) (xy 167.314653 81.976116) + (xy 167.31102 81.971116) (xy 167.241209 81.87503) (xy 167.212465 81.835467) (xy 167.212463 81.835465) + (xy 167.212456 81.835457) (xy 167.089542 81.712543) (xy 167.089534 81.712536) (xy 167.082652 81.707536) + (xy 166.995077 81.643908) (xy 166.948885 81.610347) (xy 166.868426 81.569351) (xy 166.793981 81.53142) + (xy 166.793974 81.531417) (xy 166.79397 81.531416) (xy 166.628642 81.477698) (xy 166.62863 81.477695) + (xy 166.456928 81.4505) (xy 166.456926 81.4505) (xy 166.283074 81.4505) (xy 166.283071 81.4505) + (xy 166.111369 81.477695) (xy 166.111357 81.477698) (xy 165.946029 81.531416) (xy 165.946021 81.531419) + (xy 165.946019 81.53142) (xy 165.946015 81.531421) (xy 165.946015 81.531422) (xy 165.791114 81.610347) + (xy 165.650465 81.712536) (xy 165.650457 81.712543) (xy 165.527543 81.835457) (xy 165.527536 81.835465) + (xy 165.425347 81.976114) (xy 165.346422 82.131015) (xy 165.346416 82.131029) (xy 165.292698 82.296357) + (xy 165.292695 82.296369) (xy 165.2655 82.468071) (xy 151.9687 82.468071) (xy 151.9687 82.145631) + (xy 151.986293 82.097293) (xy 151.990726 82.092457) (xy 152.081707 82.001475) (xy 152.081711 82.001471) + (xy 152.154712 81.875029) (xy 152.1925 81.734001) (xy 152.1925 81.587999) (xy 152.154712 81.446971) + (xy 152.081711 81.320529) (xy 152.081709 81.320527) (xy 152.081707 81.320524) (xy 151.978475 81.217292) + (xy 151.978469 81.217288) (xy 151.85203 81.144288) (xy 151.816772 81.134841) (xy 151.711001 81.1065) + (xy 151.564999 81.1065) (xy 151.480382 81.129172) (xy 151.423969 81.144288) (xy 151.29753 81.217288) + (xy 151.297524 81.217292) (xy 151.194292 81.320524) (xy 151.194288 81.32053) (xy 151.121288 81.446969) + (xy 151.102394 81.517485) (xy 151.0835 81.587999) (xy 149.134838 81.587999) (xy 149.088426 81.564351) + (xy 149.013981 81.52642) (xy 149.013974 81.526417) (xy 149.01397 81.526416) (xy 148.848642 81.472698) + (xy 148.84863 81.472695) (xy 148.676928 81.4455) (xy 148.676926 81.4455) (xy 148.503074 81.4455) + (xy 148.503071 81.4455) (xy 148.331369 81.472695) (xy 148.331357 81.472698) (xy 148.166029 81.526416) + (xy 148.166021 81.526419) (xy 148.166019 81.52642) (xy 148.166015 81.526421) (xy 148.166015 81.526422) + (xy 148.011114 81.605347) (xy 147.870465 81.707536) (xy 147.870457 81.707543) (xy 147.747543 81.830457) + (xy 147.747536 81.830465) (xy 147.645347 81.971114) (xy 147.566422 82.126015) (xy 147.566416 82.126029) + (xy 147.512698 82.291357) (xy 147.512695 82.291369) (xy 147.4855 82.463071) (xy 147.3205 82.463071) + (xy 147.3205 79.923071) (xy 147.4855 79.923071) (xy 147.4855 80.096928) (xy 147.512695 80.26863) + (xy 147.512698 80.268642) (xy 147.514321 80.273638) (xy 147.56642 80.433981) (xy 147.604351 80.508426) + (xy 147.645347 80.588885) (xy 147.747536 80.729534) (xy 147.747543 80.729542) (xy 147.870457 80.852456) + (xy 147.870465 80.852463) (xy 147.870467 80.852465) (xy 147.947387 80.90835) (xy 148.011114 80.954652) + (xy 148.011116 80.954653) (xy 148.166019 81.03358) (xy 148.331362 81.087303) (xy 148.503074 81.1145) + (xy 148.503078 81.1145) (xy 148.676922 81.1145) (xy 148.676926 81.1145) (xy 148.848638 81.087303) + (xy 149.013981 81.03358) (xy 149.168884 80.954653) (xy 149.309533 80.852465) (xy 149.432465 80.729533) + (xy 149.534653 80.588884) (xy 149.61358 80.433981) (xy 149.667303 80.268638) (xy 149.6945 80.096926) + (xy 149.6945 79.928071) (xy 165.2655 79.928071) (xy 165.2655 80.101928) (xy 165.292695 80.27363) + (xy 165.292698 80.273642) (xy 165.344791 80.43397) (xy 165.34642 80.438981) (xy 165.346422 80.438984) + (xy 165.425347 80.593885) (xy 165.499592 80.696073) (xy 165.523902 80.729533) (xy 165.527536 80.734534) + (xy 165.527543 80.734542) (xy 165.650457 80.857456) (xy 165.650465 80.857463) (xy 165.650467 80.857465) + (xy 165.727387 80.91335) (xy 165.791114 80.959652) (xy 165.791116 80.959653) (xy 165.946019 81.03858) + (xy 166.111362 81.092303) (xy 166.283074 81.1195) (xy 166.283078 81.1195) (xy 166.456922 81.1195) + (xy 166.456926 81.1195) (xy 166.628638 81.092303) (xy 166.793981 81.03858) (xy 166.948884 80.959653) + (xy 167.089533 80.857465) (xy 167.212465 80.734533) (xy 167.314653 80.593884) (xy 167.39358 80.438981) + (xy 167.447303 80.273638) (xy 167.4745 80.101926) (xy 167.4745 79.928074) (xy 167.447303 79.756362) + (xy 167.39358 79.591019) (xy 167.314653 79.436116) (xy 167.31102 79.431116) (xy 167.26835 79.372387) + (xy 167.212465 79.295467) (xy 167.212463 79.295465) (xy 167.212456 79.295457) (xy 167.089542 79.172543) + (xy 167.089534 79.172536) (xy 167.082652 79.167536) (xy 167.051073 79.144592) (xy 166.948885 79.070347) + (xy 166.868426 79.029351) (xy 166.793981 78.99142) (xy 166.793974 78.991417) (xy 166.79397 78.991416) + (xy 166.628642 78.937698) (xy 166.62863 78.937695) (xy 166.456928 78.9105) (xy 166.456926 78.9105) + (xy 166.283074 78.9105) (xy 166.283071 78.9105) (xy 166.111369 78.937695) (xy 166.111357 78.937698) + (xy 165.946029 78.991416) (xy 165.946021 78.991419) (xy 165.946019 78.99142) (xy 165.946015 78.991421) + (xy 165.946015 78.991422) (xy 165.791114 79.070347) (xy 165.650465 79.172536) (xy 165.650457 79.172543) + (xy 165.527543 79.295457) (xy 165.527536 79.295465) (xy 165.425347 79.436114) (xy 165.346422 79.591015) + (xy 165.346416 79.591029) (xy 165.292698 79.756357) (xy 165.292695 79.756369) (xy 165.2655 79.928071) + (xy 149.6945 79.928071) (xy 149.6945 79.923074) (xy 149.667303 79.751362) (xy 149.61358 79.586019) + (xy 149.534653 79.431116) (xy 149.432465 79.290467) (xy 149.432463 79.290465) (xy 149.432456 79.290457) + (xy 149.309542 79.167543) (xy 149.309534 79.167536) (xy 149.168885 79.065347) (xy 149.088426 79.024351) + (xy 149.013981 78.98642) (xy 149.013974 78.986417) (xy 149.01397 78.986416) (xy 148.848642 78.932698) + (xy 148.84863 78.932695) (xy 148.676928 78.9055) (xy 148.676926 78.9055) (xy 148.503074 78.9055) + (xy 148.503071 78.9055) (xy 148.331369 78.932695) (xy 148.331357 78.932698) (xy 148.166029 78.986416) + (xy 148.166021 78.986419) (xy 148.166019 78.98642) (xy 148.166015 78.986421) (xy 148.166015 78.986422) + (xy 148.011114 79.065347) (xy 147.870465 79.167536) (xy 147.870457 79.167543) (xy 147.747543 79.290457) + (xy 147.747536 79.290465) (xy 147.645347 79.431114) (xy 147.566422 79.586015) (xy 147.566416 79.586029) + (xy 147.512698 79.751357) (xy 147.512695 79.751369) (xy 147.4855 79.923071) (xy 147.3205 79.923071) + (xy 147.3205 75.710881) (xy 147.338093 75.662543) (xy 147.382642 75.636823) (xy 147.4333 75.645756) + (xy 147.456538 75.666679) (xy 147.474729 75.691717) (xy 148.107037 75.059409) (xy 148.124075 75.122993) + (xy 148.189901 75.237007) (xy 148.282993 75.330099) (xy 148.397007 75.395925) (xy 148.460589 75.412962) + (xy 147.828281 76.045269) (xy 147.882444 76.084622) (xy 148.07178 76.181094) (xy 148.273869 76.246756) + (xy 148.273882 76.246759) (xy 148.305109 76.251705) (xy 148.3501 76.276643) (xy 148.368535 76.324666) + (xy 148.351788 76.373303) (xy 148.316584 76.397498) (xy 148.166029 76.446416) (xy 148.166021 76.446419) + (xy 148.166019 76.44642) (xy 148.166015 76.446421) (xy 148.166015 76.446422) (xy 148.011114 76.525347) + (xy 147.870465 76.627536) (xy 147.870457 76.627543) (xy 147.747543 76.750457) (xy 147.747536 76.750465) + (xy 147.645347 76.891114) (xy 147.566422 77.046015) (xy 147.566416 77.046029) (xy 147.512698 77.211357) + (xy 147.512695 77.211369) (xy 147.4855 77.383071) (xy 147.4855 77.556928) (xy 147.512695 77.72863) + (xy 147.512698 77.728642) (xy 147.565623 77.89153) (xy 147.56642 77.893981) (xy 147.588578 77.937469) + (xy 147.645347 78.048885) (xy 147.747536 78.189534) (xy 147.747543 78.189542) (xy 147.870457 78.312456) + (xy 147.870465 78.312463) (xy 147.870467 78.312465) (xy 147.947387 78.36835) (xy 148.011114 78.414652) + (xy 148.011116 78.414653) (xy 148.166019 78.49358) (xy 148.331362 78.547303) (xy 148.503074 78.5745) + (xy 148.503078 78.5745) (xy 148.676922 78.5745) (xy 148.676926 78.5745) (xy 148.848638 78.547303) + (xy 149.013981 78.49358) (xy 149.168884 78.414653) (xy 149.309533 78.312465) (xy 149.432465 78.189533) + (xy 149.454649 78.158999) (xy 158.7035 78.158999) (xy 158.7035 78.305001) (xy 158.70684 78.317465) + (xy 158.741288 78.44603) (xy 158.814288 78.572469) (xy 158.814292 78.572475) (xy 158.917524 78.675707) + (xy 158.917527 78.675709) (xy 158.917529 78.675711) (xy 159.043971 78.748712) (xy 159.184999 78.7865) + (xy 159.185002 78.7865) (xy 159.330998 78.7865) (xy 159.331001 78.7865) (xy 159.472029 78.748712) + (xy 159.472033 78.748709) (xy 159.472035 78.748709) (xy 159.476584 78.746826) (xy 159.477203 78.748321) + (xy 159.506403 78.7405) (xy 160.721942 78.7405) (xy 160.721945 78.7405) (xy 160.851274 78.705847) + (xy 160.967227 78.638901) (xy 161.473914 78.132211) (xy 161.500093 78.117098) (xy 161.499473 78.115599) + (xy 161.504026 78.113712) (xy 161.504029 78.113712) (xy 161.630471 78.040711) (xy 161.733711 77.937471) + (xy 161.806712 77.811029) (xy 161.8445 77.670001) (xy 161.8445 77.523999) (xy 161.806712 77.382971) + (xy 161.733711 77.256529) (xy 161.733709 77.256527) (xy 161.733707 77.256524) (xy 161.630475 77.153292) + (xy 161.630469 77.153288) (xy 161.50403 77.080288) (xy 161.468772 77.070841) (xy 161.363001 77.0425) + (xy 161.216999 77.0425) (xy 161.132382 77.065172) (xy 161.075969 77.080288) (xy 160.94953 77.153288) + (xy 160.949524 77.153292) (xy 160.846292 77.256524) (xy 160.846288 77.25653) (xy 160.773289 77.382969) + (xy 160.7714 77.387529) (xy 160.769905 77.386909) (xy 160.754789 77.413083) (xy 160.466397 77.701474) + (xy 160.419778 77.723214) (xy 160.413224 77.7235) (xy 159.506403 77.7235) (xy 159.477203 77.715678) + (xy 159.476584 77.717174) (xy 159.472035 77.71529) (xy 159.47203 77.715288) (xy 159.472029 77.715288) + (xy 159.331001 77.6775) (xy 159.184999 77.6775) (xy 159.100382 77.700172) (xy 159.043969 77.715288) + (xy 158.91753 77.788288) (xy 158.917524 77.788292) (xy 158.814292 77.891524) (xy 158.814288 77.89153) + (xy 158.741288 78.017969) (xy 158.731665 78.053884) (xy 158.7035 78.158999) (xy 149.454649 78.158999) + (xy 149.534653 78.048884) (xy 149.61358 77.893981) (xy 149.667303 77.728638) (xy 149.6945 77.556926) + (xy 149.6945 77.383074) (xy 149.667303 77.211362) (xy 149.61358 77.046019) (xy 149.534653 76.891116) + (xy 149.432465 76.750467) (xy 149.432463 76.750465) (xy 149.432456 76.750457) (xy 149.309542 76.627543) + (xy 149.309534 76.627536) (xy 149.168885 76.525347) (xy 149.088426 76.484351) (xy 149.013981 76.44642) + (xy 149.013974 76.446417) (xy 149.01397 76.446416) (xy 148.863415 76.397498) (xy 148.82288 76.365829) + (xy 148.812185 76.315513) (xy 148.836334 76.270094) (xy 148.87489 76.251705) (xy 148.906117 76.246759) + (xy 148.90613 76.246756) (xy 149.108219 76.181094) (xy 149.297553 76.084622) (xy 149.351717 76.045269) + (xy 148.71941 75.412962) (xy 148.782993 75.395925) (xy 148.897007 75.330099) (xy 148.990099 75.237007) + (xy 149.055925 75.122993) (xy 149.072962 75.05941) (xy 149.705269 75.691717) (xy 149.744622 75.637553) + (xy 149.841094 75.448219) (xy 149.906756 75.24613) (xy 149.906759 75.246118) (xy 149.939999 75.036249) + (xy 149.94 75.036242) (xy 149.94 74.823757) (xy 149.939999 74.82375) (xy 149.906759 74.613881) (xy 149.906756 74.613869) + (xy 149.841094 74.41178) (xy 149.744622 74.222444) (xy 149.705269 74.168281) (xy 149.072962 74.800588) + (xy 149.055925 74.737007) (xy 148.990099 74.622993) (xy 148.897007 74.529901) (xy 148.782993 74.464075) + (xy 148.719409 74.447037) (xy 149.351717 73.814729) (xy 149.297555 73.775377) (xy 149.108219 73.678905) + (xy 148.90613 73.613243) (xy 148.90612 73.613241) (xy 148.874888 73.608294) (xy 148.829898 73.583355) + (xy 148.811464 73.535332) (xy 148.828212 73.486694) (xy 148.86341 73.462503) (xy 149.013981 73.41358) + (xy 149.168884 73.334653) (xy 149.309533 73.232465) (xy 149.432465 73.109533) (xy 149.534653 72.968884) + (xy 149.61358 72.813981) (xy 149.667303 72.648638) (xy 149.6945 72.476926) (xy 149.6945 72.303074) + (xy 149.667303 72.131362) (xy 149.61358 71.966019) (xy 149.534653 71.811116) (xy 149.528735 71.802971) + (xy 149.436869 71.676529) (xy 149.432465 71.670467) (xy 149.432463 71.670465) (xy 149.432456 71.670457) + (xy 149.309542 71.547543) (xy 149.309534 71.547536) (xy 149.168885 71.445347) (xy 149.066341 71.393099) + (xy 149.013981 71.36642) (xy 149.013974 71.366417) (xy 149.01397 71.366416) (xy 148.848642 71.312698) + (xy 148.84863 71.312695) (xy 148.676928 71.2855) (xy 148.676926 71.2855) (xy 148.503074 71.2855) + (xy 148.503071 71.2855) (xy 148.331369 71.312695) (xy 148.331357 71.312698) (xy 148.166029 71.366416) + (xy 148.166021 71.366419) (xy 148.166019 71.36642) (xy 148.166015 71.366421) (xy 148.166015 71.366422) + (xy 148.011114 71.445347) (xy 147.870465 71.547536) (xy 147.870457 71.547543) (xy 147.747543 71.670457) + (xy 147.747536 71.670465) (xy 147.645347 71.811114) (xy 147.566422 71.966015) (xy 147.566416 71.966029) + (xy 147.512698 72.131357) (xy 147.512695 72.131369) (xy 147.4855 72.303071) (xy 147.4855 72.476928) + (xy 147.512695 72.64863) (xy 147.512698 72.648642) (xy 147.515716 72.657932) (xy 147.56642 72.813981) + (xy 147.585537 72.8515) (xy 147.645347 72.968885) (xy 147.747536 73.109534) (xy 147.747543 73.109542) + (xy 147.870457 73.232456) (xy 147.870465 73.232463) (xy 147.870467 73.232465) (xy 147.947387 73.28835) + (xy 148.011114 73.334652) (xy 148.011116 73.334653) (xy 148.166019 73.41358) (xy 148.316586 73.462502) + (xy 148.357119 73.49417) (xy 148.367814 73.544486) (xy 148.343665 73.589904) (xy 148.305111 73.608294) + (xy 148.27388 73.61324) (xy 148.273869 73.613243) (xy 148.07178 73.678905) (xy 147.882441 73.775379) + (xy 147.828282 73.814728) (xy 147.828281 73.814729) (xy 148.46059 74.447037) (xy 148.397007 74.464075) + (xy 148.282993 74.529901) (xy 148.189901 74.622993) (xy 148.124075 74.737007) (xy 148.107037 74.800589) + (xy 147.474729 74.168281) (xy 147.456538 74.19332) (xy 147.413892 74.222084) (xy 147.362734 74.216707) + (xy 147.327001 74.179704) (xy 147.3205 74.149118) (xy 147.3205 69.763071) (xy 147.4855 69.763071) + (xy 147.4855 69.936928) (xy 147.512695 70.10863) (xy 147.512698 70.108642) (xy 147.524176 70.143969) + (xy 147.56642 70.273981) (xy 147.572261 70.285444) (xy 147.645347 70.428885) (xy 147.747536 70.569534) + (xy 147.747543 70.569542) (xy 147.870457 70.692456) (xy 147.870465 70.692463) (xy 147.870467 70.692465) + (xy 147.947387 70.74835) (xy 148.011114 70.794652) (xy 148.011116 70.794653) (xy 148.166019 70.87358) + (xy 148.331362 70.927303) (xy 148.503074 70.9545) (xy 148.503078 70.9545) (xy 148.676922 70.9545) + (xy 148.676926 70.9545) (xy 148.848638 70.927303) (xy 148.973448 70.88675) (xy 151.05 70.88675) + (xy 151.05 71.099249) (xy 151.08324 71.309118) (xy 151.083243 71.30913) (xy 151.148905 71.511219) + (xy 151.245377 71.700555) (xy 151.284729 71.754717) (xy 151.917037 71.122409) (xy 151.934075 71.185993) + (xy 151.999901 71.300007) (xy 152.092993 71.393099) (xy 152.207007 71.458925) (xy 152.270589 71.475962) + (xy 151.638281 72.108269) (xy 151.692444 72.147622) (xy 151.881775 72.244091) (xy 151.997771 72.28178) + (xy 152.038306 72.31345) (xy 152.049001 72.363765) (xy 152.024852 72.409184) (xy 151.977158 72.428454) + (xy 151.974533 72.4285) (xy 151.524932 72.4285) (xy 151.524931 72.428501) (xy 151.450699 72.443266) + (xy 151.366516 72.499516) (xy 151.310266 72.583698) (xy 151.310265 72.5837) (xy 151.2955 72.657932) + (xy 151.2955 74.408067) (xy 151.295501 74.408068) (xy 151.300416 74.432777) (xy 151.310266 74.482301) + (xy 151.366516 74.566484) (xy 151.450699 74.622734) (xy 151.524933 74.6375) (xy 153.275066 74.637499) + (xy 153.275067 74.637499) (xy 153.275067 74.637498) (xy 153.349301 74.622734) (xy 153.433484 74.566484) + (xy 153.489734 74.482301) (xy 153.5045 74.408067) (xy 153.504499 73.332999) (xy 154.8935 73.332999) + (xy 154.8935 73.479001) (xy 154.912386 73.549486) (xy 154.931288 73.62003) (xy 155.004288 73.746469) + (xy 155.004292 73.746475) (xy 155.095274 73.837457) (xy 155.117014 73.884077) (xy 155.1173 73.890631) + (xy 155.1173 74.457961) (xy 155.099707 74.506299) (xy 155.095274 74.511135) (xy 155.016884 74.589524) + (xy 155.01688 74.58953) (xy 154.94388 74.715969) (xy 154.924986 74.786485) (xy 154.906092 74.856999) + (xy 154.906092 75.003001) (xy 154.931269 75.096964) (xy 154.94388 75.14403) (xy 155.01688 75.270469) + (xy 155.016884 75.270475) (xy 155.120116 75.373707) (xy 155.120119 75.373709) (xy 155.120121 75.373711) + (xy 155.246563 75.446712) (xy 155.387591 75.4845) (xy 155.387594 75.4845) (xy 155.53359 75.4845) + (xy 155.533593 75.4845) (xy 155.674621 75.446712) (xy 155.801063 75.373711) (xy 155.904303 75.270471) + (xy 155.977304 75.144029) (xy 156.015092 75.003001) (xy 156.015092 74.856999) (xy 155.977304 74.715971) + (xy 155.904303 74.589529) (xy 155.904301 74.589527) (xy 155.904299 74.589524) (xy 155.800726 74.485951) + (xy 155.778986 74.439331) (xy 155.7787 74.432777) (xy 155.7787 73.890631) (xy 155.796293 73.842293) + (xy 155.800726 73.837457) (xy 155.891707 73.746475) (xy 155.891711 73.746471) (xy 155.964712 73.620029) + (xy 156.0025 73.479001) (xy 156.0025 73.332999) (xy 155.964712 73.191971) (xy 155.891711 73.065529) + (xy 155.891709 73.065527) (xy 155.891707 73.065524) (xy 155.788475 72.962292) (xy 155.788469 72.962288) + (xy 155.66203 72.889288) (xy 155.626772 72.879841) (xy 155.521001 72.8515) (xy 155.374999 72.8515) + (xy 155.290382 72.874172) (xy 155.233969 72.889288) (xy 155.10753 72.962288) (xy 155.107524 72.962292) + (xy 155.004292 73.065524) (xy 155.004288 73.06553) (xy 154.931288 73.191969) (xy 154.919098 73.237465) + (xy 154.8935 73.332999) (xy 153.504499 73.332999) (xy 153.504499 72.657934) (xy 153.489734 72.583699) + (xy 153.433484 72.499516) (xy 153.349301 72.443266) (xy 153.349299 72.443265) (xy 153.275068 72.4285) + (xy 152.825467 72.4285) (xy 152.777129 72.410907) (xy 152.751409 72.366358) (xy 152.760342 72.3157) + (xy 152.799747 72.282635) (xy 152.802229 72.28178) (xy 152.918224 72.244091) (xy 153.107553 72.147622) + (xy 153.161717 72.108269) (xy 152.997447 71.943999) (xy 161.1135 71.943999) (xy 161.1135 72.090001) + (xy 161.141841 72.195772) (xy 161.151288 72.23103) (xy 161.224288 72.357469) (xy 161.224292 72.357475) + (xy 161.318274 72.451457) (xy 161.340014 72.498077) (xy 161.3403 72.504631) (xy 161.3403 75.102769) + (xy 161.322707 75.151107) (xy 161.318274 75.155943) (xy 161.224292 75.249924) (xy 161.224288 75.24993) + (xy 161.151288 75.376369) (xy 161.132441 75.446711) (xy 161.1135 75.517399) (xy 161.1135 75.663401) + (xy 161.127562 75.71588) (xy 161.151288 75.80443) (xy 161.224288 75.930869) (xy 161.224292 75.930875) + (xy 161.327524 76.034107) (xy 161.327527 76.034109) (xy 161.327529 76.034111) (xy 161.453971 76.107112) + (xy 161.594999 76.1449) (xy 161.595002 76.1449) (xy 161.740998 76.1449) (xy 161.741001 76.1449) + (xy 161.882029 76.107112) (xy 162.008471 76.034111) (xy 162.111711 75.930871) (xy 162.148809 75.866612) + (xy 162.188212 75.83355) (xy 162.233392 75.831576) (xy 162.359999 75.8655) (xy 162.360002 75.8655) + (xy 162.505998 75.8655) (xy 162.506001 75.8655) (xy 162.647029 75.827712) (xy 162.773471 75.754711) + (xy 162.876711 75.651471) (xy 162.949712 75.525029) (xy 162.9875 75.384001) (xy 162.9875 75.237999) + (xy 162.949712 75.096971) (xy 162.949709 75.096967) (xy 162.949709 75.096964) (xy 162.947826 75.092416) + (xy 162.949321 75.091796) (xy 162.9415 75.062597) (xy 162.9415 70.606401) (xy 162.949329 70.577203) + (xy 162.947826 70.576581) (xy 162.949707 70.572037) (xy 162.949712 70.572029) (xy 162.9875 70.431001) + (xy 162.9875 70.284999) (xy 162.949712 70.143971) (xy 162.876711 70.017529) (xy 162.876709 70.017527) + (xy 162.876707 70.017524) (xy 162.773475 69.914292) (xy 162.773469 69.914288) (xy 162.64703 69.841288) + (xy 162.636172 69.838379) (xy 162.506001 69.8035) (xy 162.359999 69.8035) (xy 162.275382 69.826172) + (xy 162.218969 69.841288) (xy 162.09253 69.914288) (xy 162.092524 69.914292) (xy 161.989292 70.017524) + (xy 161.989288 70.01753) (xy 161.916288 70.143969) (xy 161.897394 70.214485) (xy 161.8785 70.284999) + (xy 161.8785 70.431001) (xy 161.915622 70.569542) (xy 161.916288 70.572028) (xy 161.918174 70.576581) + (xy 161.91667 70.577203) (xy 161.9245 70.606401) (xy 161.9245 71.413665) (xy 161.906907 71.462003) + (xy 161.862358 71.487723) (xy 161.829838 71.486303) (xy 161.768776 71.469942) (xy 161.741001 71.4625) + (xy 161.594999 71.4625) (xy 161.510382 71.485172) (xy 161.453969 71.500288) (xy 161.32753 71.573288) + (xy 161.327524 71.573292) (xy 161.224292 71.676524) (xy 161.224288 71.67653) (xy 161.151288 71.802969) + (xy 161.132394 71.873485) (xy 161.1135 71.943999) (xy 152.997447 71.943999) (xy 152.52941 71.475962) + (xy 152.592993 71.458925) (xy 152.707007 71.393099) (xy 152.800099 71.300007) (xy 152.865925 71.185993) + (xy 152.882962 71.12241) (xy 153.515269 71.754717) (xy 153.554622 71.700553) (xy 153.651094 71.511219) + (xy 153.716756 71.30913) (xy 153.716759 71.309118) (xy 153.749999 71.099249) (xy 153.75 71.099242) + (xy 153.75 70.886757) (xy 153.749999 70.88675) (xy 153.716759 70.676881) (xy 153.716756 70.676869) + (xy 153.651094 70.47478) (xy 153.554622 70.285444) (xy 153.515269 70.231281) (xy 152.882962 70.863588) + (xy 152.865925 70.800007) (xy 152.800099 70.685993) (xy 152.707007 70.592901) (xy 152.592993 70.527075) + (xy 152.529409 70.510037) (xy 153.161717 69.877729) (xy 153.107555 69.838377) (xy 152.969572 69.768071) + (xy 165.2655 69.768071) (xy 165.2655 69.941928) (xy 165.292695 70.11363) (xy 165.292698 70.113642) + (xy 165.344791 70.27397) (xy 165.34642 70.278981) (xy 165.349712 70.285441) (xy 165.425347 70.433885) + (xy 165.493055 70.527075) (xy 165.523902 70.569533) (xy 165.527536 70.574534) (xy 165.527543 70.574542) + (xy 165.650457 70.697456) (xy 165.650465 70.697463) (xy 165.650467 70.697465) (xy 165.727387 70.75335) + (xy 165.791114 70.799652) (xy 165.791116 70.799653) (xy 165.946019 70.87858) (xy 166.111362 70.932303) + (xy 166.283074 70.9595) (xy 166.283078 70.9595) (xy 166.456922 70.9595) (xy 166.456926 70.9595) + (xy 166.628638 70.932303) (xy 166.793981 70.87858) (xy 166.948884 70.799653) (xy 167.089533 70.697465) + (xy 167.212465 70.574533) (xy 167.314653 70.433884) (xy 167.39358 70.278981) (xy 167.447303 70.113638) + (xy 167.4745 69.941926) (xy 167.4745 69.768074) (xy 167.447303 69.596362) (xy 167.39358 69.431019) + (xy 167.314653 69.276116) (xy 167.31102 69.271116) (xy 167.26835 69.212387) (xy 167.212465 69.135467) + (xy 167.212463 69.135465) (xy 167.212456 69.135457) (xy 167.089542 69.012543) (xy 167.089534 69.012536) + (xy 167.082652 69.007536) (xy 167.051073 68.984592) (xy 166.948885 68.910347) (xy 166.868426 68.869351) + (xy 166.793981 68.83142) (xy 166.793974 68.831417) (xy 166.79397 68.831416) (xy 166.628642 68.777698) + (xy 166.62863 68.777695) (xy 166.456928 68.7505) (xy 166.456926 68.7505) (xy 166.283074 68.7505) + (xy 166.283071 68.7505) (xy 166.111369 68.777695) (xy 166.111357 68.777698) (xy 165.946029 68.831416) + (xy 165.946021 68.831419) (xy 165.946019 68.83142) (xy 165.946015 68.831421) (xy 165.946015 68.831422) + (xy 165.791114 68.910347) (xy 165.650465 69.012536) (xy 165.650457 69.012543) (xy 165.527543 69.135457) + (xy 165.527536 69.135465) (xy 165.425347 69.276114) (xy 165.346422 69.431015) (xy 165.346416 69.431029) + (xy 165.292698 69.596357) (xy 165.292695 69.596369) (xy 165.2655 69.768071) (xy 152.969572 69.768071) + (xy 152.918219 69.741905) (xy 152.71613 69.676243) (xy 152.71612 69.676241) (xy 152.684888 69.671294) + (xy 152.639898 69.646355) (xy 152.621464 69.598332) (xy 152.638212 69.549694) (xy 152.67341 69.525503) + (xy 152.823981 69.47658) (xy 152.978884 69.397653) (xy 153.119533 69.295465) (xy 153.242465 69.172533) + (xy 153.344653 69.031884) (xy 153.42358 68.876981) (xy 153.477303 68.711638) (xy 153.5045 68.539926) + (xy 153.5045 68.366074) (xy 153.477303 68.194362) (xy 153.455091 68.126001) (xy 153.45509 68.125999) + (xy 155.0713 68.125999) (xy 155.0713 68.272001) (xy 155.096506 68.366071) (xy 155.109088 68.41303) + (xy 155.166661 68.512749) (xy 155.18133 68.538157) (xy 155.182088 68.539469) (xy 155.182092 68.539475) + (xy 155.232943 68.590326) (xy 155.254683 68.636946) (xy 155.241369 68.686633) (xy 155.232943 68.696674) + (xy 155.182092 68.747524) (xy 155.182088 68.74753) (xy 155.109088 68.873969) (xy 155.100681 68.905347) + (xy 155.0713 69.014999) (xy 155.0713 69.161001) (xy 155.099641 69.266772) (xy 155.109088 69.30203) + (xy 155.182088 69.428469) (xy 155.182092 69.428475) (xy 155.285324 69.531707) (xy 155.285327 69.531709) + (xy 155.285329 69.531711) (xy 155.411771 69.604712) (xy 155.552799 69.6425) (xy 155.552802 69.6425) + (xy 155.698798 69.6425) (xy 155.698801 69.6425) (xy 155.839829 69.604712) (xy 155.966271 69.531711) + (xy 155.991675 69.506307) (xy 156.057257 69.440726) (xy 156.103877 69.418986) (xy 156.110431 69.4187) + (xy 156.56357 69.4187) (xy 156.611908 69.436293) (xy 156.616733 69.440715) (xy 156.682329 69.506311) + (xy 156.808771 69.579312) (xy 156.949799 69.6171) (xy 156.949802 69.6171) (xy 157.095798 69.6171) + (xy 157.095801 69.6171) (xy 157.236829 69.579312) (xy 157.363271 69.506311) (xy 157.466511 69.403071) + (xy 157.539512 69.276629) (xy 157.5773 69.135601) (xy 157.5773 68.989599) (xy 157.539512 68.848571) + (xy 157.466511 68.722129) (xy 157.466462 68.72208) (xy 157.466444 68.722042) (xy 157.46351 68.718218) + (xy 157.464357 68.717567) (xy 157.444717 68.675465) (xy 157.458024 68.625776) (xy 157.46645 68.615731) + (xy 157.542711 68.539471) (xy 157.615712 68.413029) (xy 157.6535 68.272001) (xy 157.6535 68.125999) + (xy 157.615712 67.984971) (xy 157.542711 67.858529) (xy 157.542709 67.858527) (xy 157.542707 67.858524) + (xy 157.439475 67.755292) (xy 157.439469 67.755288) (xy 157.31303 67.682288) (xy 157.277772 67.672841) + (xy 157.172001 67.6445) (xy 157.025999 67.6445) (xy 156.941382 67.667172) (xy 156.884969 67.682288) + (xy 156.75853 67.755288) (xy 156.758524 67.755292) (xy 156.666618 67.847199) (xy 156.619998 67.868939) + (xy 156.613444 67.869225) (xy 156.111356 67.869225) (xy 156.063018 67.851632) (xy 156.058182 67.847199) + (xy 155.966275 67.755292) (xy 155.966269 67.755288) (xy 155.83983 67.682288) (xy 155.804572 67.672841) + (xy 155.698801 67.6445) (xy 155.552799 67.6445) (xy 155.468182 67.667172) (xy 155.411769 67.682288) + (xy 155.28533 67.755288) (xy 155.285324 67.755292) (xy 155.182092 67.858524) (xy 155.182088 67.85853) + (xy 155.109088 67.984969) (xy 155.090194 68.055485) (xy 155.0713 68.125999) (xy 153.45509 68.125999) + (xy 153.437018 68.070379) (xy 153.42358 68.029019) (xy 153.344653 67.874116) (xy 153.341099 67.869225) + (xy 153.29835 67.810387) (xy 153.242465 67.733467) (xy 153.242463 67.733465) (xy 153.242456 67.733457) + (xy 153.119542 67.610543) (xy 153.119534 67.610536) (xy 152.978885 67.508347) (xy 152.898426 67.467351) + (xy 152.823981 67.42942) (xy 152.823974 67.429417) (xy 152.82397 67.429416) (xy 152.658642 67.375698) + (xy 152.65863 67.375695) (xy 152.486928 67.3485) (xy 152.486926 67.3485) (xy 152.313074 67.3485) + (xy 152.313071 67.3485) (xy 152.141369 67.375695) (xy 152.141357 67.375698) (xy 151.976029 67.429416) + (xy 151.976021 67.429419) (xy 151.976019 67.42942) (xy 151.976015 67.429421) (xy 151.976015 67.429422) + (xy 151.821114 67.508347) (xy 151.680465 67.610536) (xy 151.680457 67.610543) (xy 151.557543 67.733457) + (xy 151.557536 67.733465) (xy 151.455347 67.874114) (xy 151.376422 68.029015) (xy 151.376416 68.029029) + (xy 151.322698 68.194357) (xy 151.322695 68.194369) (xy 151.2955 68.366071) (xy 151.2955 68.539928) + (xy 151.322695 68.71163) (xy 151.322698 68.711642) (xy 151.359991 68.82642) (xy 151.37642 68.876981) + (xy 151.376422 68.876984) (xy 151.455347 69.031885) (xy 151.526965 69.130457) (xy 151.549156 69.161001) + (xy 151.557536 69.172534) (xy 151.557543 69.172542) (xy 151.680457 69.295456) (xy 151.680465 69.295463) + (xy 151.680467 69.295465) (xy 151.757387 69.35135) (xy 151.821114 69.397652) (xy 151.821116 69.397653) + (xy 151.976019 69.47658) (xy 152.126586 69.525502) (xy 152.167119 69.55717) (xy 152.177814 69.607486) + (xy 152.153665 69.652904) (xy 152.115111 69.671294) (xy 152.08388 69.67624) (xy 152.083869 69.676243) + (xy 151.88178 69.741905) (xy 151.692441 69.838379) (xy 151.638282 69.877728) (xy 151.638281 69.877729) + (xy 152.27059 70.510037) (xy 152.207007 70.527075) (xy 152.092993 70.592901) (xy 151.999901 70.685993) + (xy 151.934075 70.800007) (xy 151.917037 70.863589) (xy 151.284729 70.231281) (xy 151.284728 70.231282) + (xy 151.245379 70.285441) (xy 151.148905 70.47478) (xy 151.083243 70.676869) (xy 151.08324 70.676881) + (xy 151.05 70.88675) (xy 148.973448 70.88675) (xy 149.013981 70.87358) (xy 149.168884 70.794653) + (xy 149.309533 70.692465) (xy 149.432465 70.569533) (xy 149.534653 70.428884) (xy 149.61358 70.273981) + (xy 149.667303 70.108638) (xy 149.6945 69.936926) (xy 149.6945 69.763074) (xy 149.667303 69.591362) + (xy 149.61358 69.426019) (xy 149.534653 69.271116) (xy 149.432465 69.130467) (xy 149.432463 69.130465) + (xy 149.432456 69.130457) (xy 149.309542 69.007543) (xy 149.309534 69.007536) (xy 149.168885 68.905347) + (xy 149.088426 68.864351) (xy 149.013981 68.82642) (xy 149.013974 68.826417) (xy 149.01397 68.826416) + (xy 148.848642 68.772698) (xy 148.84863 68.772695) (xy 148.676928 68.7455) (xy 148.676926 68.7455) + (xy 148.503074 68.7455) (xy 148.503071 68.7455) (xy 148.331369 68.772695) (xy 148.331357 68.772698) + (xy 148.166029 68.826416) (xy 148.166021 68.826419) (xy 148.166019 68.82642) (xy 148.166015 68.826421) + (xy 148.166015 68.826422) (xy 148.011114 68.905347) (xy 147.870465 69.007536) (xy 147.870457 69.007543) + (xy 147.747543 69.130457) (xy 147.747536 69.130465) (xy 147.645347 69.271114) (xy 147.566422 69.426015) + (xy 147.566416 69.426029) (xy 147.512698 69.591357) (xy 147.512695 69.591369) (xy 147.4855 69.763071) + (xy 147.3205 69.763071) (xy 147.3205 67.223071) (xy 147.4855 67.223071) (xy 147.4855 67.396928) + (xy 147.512695 67.56863) (xy 147.512698 67.568642) (xy 147.566249 67.733457) (xy 147.56642 67.733981) + (xy 147.604351 67.808426) (xy 147.645347 67.888885) (xy 147.747536 68.029534) (xy 147.747543 68.029542) + (xy 147.870457 68.152456) (xy 147.870465 68.152463) (xy 147.870467 68.152465) (xy 147.928126 68.194357) + (xy 148.011114 68.254652) (xy 148.011116 68.254653) (xy 148.166019 68.33358) (xy 148.331362 68.387303) + (xy 148.503074 68.4145) (xy 148.503078 68.4145) (xy 148.676922 68.4145) (xy 148.676926 68.4145) + (xy 148.848638 68.387303) (xy 149.013981 68.33358) (xy 149.168884 68.254653) (xy 149.309533 68.152465) + (xy 149.432465 68.029533) (xy 149.534653 67.888884) (xy 149.61358 67.733981) (xy 149.667303 67.568638) + (xy 149.6945 67.396926) (xy 149.6945 67.228071) (xy 165.2655 67.228071) (xy 165.2655 67.401928) + (xy 165.292695 67.57363) (xy 165.292698 67.573642) (xy 165.344791 67.73397) (xy 165.34642 67.738981) + (xy 165.354731 67.755292) (xy 165.425347 67.893885) (xy 165.491524 67.984969) (xy 165.523902 68.029533) + (xy 165.527536 68.034534) (xy 165.527543 68.034542) (xy 165.650457 68.157456) (xy 165.650465 68.157463) + (xy 165.650467 68.157465) (xy 165.701244 68.194357) (xy 165.791114 68.259652) (xy 165.791116 68.259653) + (xy 165.946019 68.33858) (xy 166.111362 68.392303) (xy 166.283074 68.4195) (xy 166.283078 68.4195) + (xy 166.456922 68.4195) (xy 166.456926 68.4195) (xy 166.628638 68.392303) (xy 166.793981 68.33858) + (xy 166.948884 68.259653) (xy 167.089533 68.157465) (xy 167.212465 68.034533) (xy 167.314653 67.893884) + (xy 167.39358 67.738981) (xy 167.447303 67.573638) (xy 167.4745 67.401926) (xy 167.4745 67.228074) + (xy 167.447303 67.056362) (xy 167.39358 66.891019) (xy 167.314653 66.736116) (xy 167.31102 66.731116) + (xy 167.26835 66.672387) (xy 167.212465 66.595467) (xy 167.212463 66.595465) (xy 167.212456 66.595457) + (xy 167.089542 66.472543) (xy 167.089534 66.472536) (xy 167.082652 66.467536) (xy 167.051073 66.444592) + (xy 166.948885 66.370347) (xy 166.868426 66.329351) (xy 166.793981 66.29142) (xy 166.793974 66.291417) + (xy 166.79397 66.291416) (xy 166.628642 66.237698) (xy 166.62863 66.237695) (xy 166.456928 66.2105) + (xy 166.456926 66.2105) (xy 166.283074 66.2105) (xy 166.283071 66.2105) (xy 166.111369 66.237695) + (xy 166.111357 66.237698) (xy 165.946029 66.291416) (xy 165.946021 66.291419) (xy 165.946019 66.29142) + (xy 165.946015 66.291421) (xy 165.946015 66.291422) (xy 165.791114 66.370347) (xy 165.650465 66.472536) + (xy 165.650457 66.472543) (xy 165.527543 66.595457) (xy 165.527536 66.595465) (xy 165.425347 66.736114) + (xy 165.346422 66.891015) (xy 165.346416 66.891029) (xy 165.292698 67.056357) (xy 165.292695 67.056369) + (xy 165.2655 67.228071) (xy 149.6945 67.228071) (xy 149.6945 67.223074) (xy 149.667303 67.051362) + (xy 149.61358 66.886019) (xy 149.534653 66.731116) (xy 149.432465 66.590467) (xy 149.432463 66.590465) + (xy 149.432456 66.590457) (xy 149.309542 66.467543) (xy 149.309534 66.467536) (xy 149.168885 66.365347) + (xy 149.088426 66.324351) (xy 149.013981 66.28642) (xy 149.013974 66.286417) (xy 149.01397 66.286416) + (xy 148.848642 66.232698) (xy 148.84863 66.232695) (xy 148.676928 66.2055) (xy 148.676926 66.2055) + (xy 148.503074 66.2055) (xy 148.503071 66.2055) (xy 148.331369 66.232695) (xy 148.331357 66.232698) + (xy 148.166029 66.286416) (xy 148.166021 66.286419) (xy 148.166019 66.28642) (xy 148.166015 66.286421) + (xy 148.166015 66.286422) (xy 148.011114 66.365347) (xy 147.870465 66.467536) (xy 147.870457 66.467543) + (xy 147.747543 66.590457) (xy 147.747536 66.590465) (xy 147.645347 66.731114) (xy 147.566422 66.886015) + (xy 147.566416 66.886029) (xy 147.512698 67.051357) (xy 147.512695 67.051369) (xy 147.4855 67.223071) + (xy 147.3205 67.223071) (xy 147.3205 63.010881) (xy 147.338093 62.962543) (xy 147.382642 62.936823) + (xy 147.4333 62.945756) (xy 147.456538 62.966679) (xy 147.474729 62.991717) (xy 148.107037 62.359409) + (xy 148.124075 62.422993) (xy 148.189901 62.537007) (xy 148.282993 62.630099) (xy 148.397007 62.695925) + (xy 148.460589 62.712962) (xy 147.828281 63.345269) (xy 147.882444 63.384622) (xy 148.07178 63.481094) + (xy 148.273869 63.546756) (xy 148.273882 63.546759) (xy 148.305109 63.551705) (xy 148.3501 63.576643) + (xy 148.368535 63.624666) (xy 148.351788 63.673303) (xy 148.316584 63.697498) (xy 148.166029 63.746416) + (xy 148.166021 63.746419) (xy 148.166019 63.74642) (xy 148.166015 63.746421) (xy 148.166015 63.746422) + (xy 148.011114 63.825347) (xy 147.870465 63.927536) (xy 147.870457 63.927543) (xy 147.747543 64.050457) + (xy 147.747536 64.050465) (xy 147.645347 64.191114) (xy 147.566422 64.346015) (xy 147.566416 64.346029) + (xy 147.512698 64.511357) (xy 147.512695 64.511369) (xy 147.4855 64.683071) (xy 147.4855 64.856928) + (xy 147.512695 65.02863) (xy 147.512698 65.028642) (xy 147.514321 65.033638) (xy 147.56642 65.193981) + (xy 147.604351 65.268426) (xy 147.645347 65.348885) (xy 147.747536 65.489534) (xy 147.747543 65.489542) + (xy 147.870457 65.612456) (xy 147.870465 65.612463) (xy 147.870467 65.612465) (xy 147.947387 65.66835) + (xy 148.011114 65.714652) (xy 148.011116 65.714653) (xy 148.166019 65.79358) (xy 148.331362 65.847303) + (xy 148.503074 65.8745) (xy 148.503078 65.8745) (xy 148.676922 65.8745) (xy 148.676926 65.8745) + (xy 148.848638 65.847303) (xy 149.013981 65.79358) (xy 149.168884 65.714653) (xy 149.309533 65.612465) + (xy 149.432465 65.489533) (xy 149.534653 65.348884) (xy 149.61358 65.193981) (xy 149.667303 65.028638) + (xy 149.6945 64.856926) (xy 149.6945 64.683074) (xy 149.667303 64.511362) (xy 149.61358 64.346019) + (xy 149.534653 64.191116) (xy 149.432465 64.050467) (xy 149.432463 64.050465) (xy 149.432456 64.050457) + (xy 149.309542 63.927543) (xy 149.309534 63.927536) (xy 149.168885 63.825347) (xy 149.088426 63.784351) + (xy 149.013981 63.74642) (xy 149.013974 63.746417) (xy 149.01397 63.746416) (xy 148.863415 63.697498) + (xy 148.82288 63.665829) (xy 148.812185 63.615513) (xy 148.836334 63.570094) (xy 148.87489 63.551705) + (xy 148.906117 63.546759) (xy 148.90613 63.546756) (xy 149.108219 63.481094) (xy 149.297553 63.384622) + (xy 149.351717 63.345269) (xy 148.71941 62.712962) (xy 148.782993 62.695925) (xy 148.897007 62.630099) + (xy 148.990099 62.537007) (xy 149.055925 62.422993) (xy 149.072962 62.35941) (xy 149.705269 62.991717) + (xy 149.744622 62.937553) (xy 149.841094 62.748219) (xy 149.906756 62.54613) (xy 149.906759 62.546118) + (xy 149.939999 62.336249) (xy 149.94 62.336242) (xy 149.94 62.123757) (xy 149.939999 62.12375) (xy 149.906759 61.913881) + (xy 149.906756 61.913869) (xy 149.854191 61.752091) (xy 149.85419 61.752089) (xy 149.841091 61.711775) + (xy 149.744622 61.522444) (xy 149.705269 61.468281) (xy 149.072962 62.100588) (xy 149.055925 62.037007) + (xy 148.990099 61.922993) (xy 148.897007 61.829901) (xy 148.782993 61.764075) (xy 148.719409 61.747037) + (xy 149.351717 61.114729) (xy 149.297555 61.075377) (xy 149.117318 60.983542) (xy 149.117317 60.983541) + (xy 149.108221 60.978906) (xy 148.925356 60.91949) (xy 152 60.91949) (xy 152 61.26) (xy 152.9 61.26) + (xy 152.9 61.76) (xy 152 61.76) (xy 152 62.100509) (xy 152.028316 62.279289) (xy 152.028319 62.279304) + (xy 152.084252 62.451446) (xy 152.166434 62.612735) (xy 152.272822 62.759167) (xy 152.272833 62.75918) + (xy 152.400819 62.887166) (xy 152.400832 62.887177) (xy 152.547264 62.993565) (xy 152.708553 63.075747) + (xy 152.880696 63.13168) (xy 152.880714 63.131684) (xy 152.9 63.134738) (xy 152.9 62.109728) (xy 152.93806 62.201614) + (xy 153.008386 62.27194) (xy 153.100272 62.31) (xy 153.199728 62.31) (xy 153.291614 62.27194) (xy 153.36194 62.201614) + (xy 153.4 62.109728) (xy 153.4 63.134737) (xy 153.419285 63.131684) (xy 153.419303 63.13168) (xy 153.591446 63.075747) + (xy 153.752735 62.993565) (xy 153.899167 62.887177) (xy 153.89918 62.887166) (xy 154.027166 62.75918) + (xy 154.027177 62.759167) (xy 154.133565 62.612735) (xy 154.215747 62.451446) (xy 154.27168 62.279304) + (xy 154.271683 62.279289) (xy 154.299999 62.100509) (xy 154.3 62.100502) (xy 154.3 61.76) (xy 153.4 61.76) + (xy 153.4 61.26) (xy 154.299999 61.26) (xy 154.316536 61.243463) (xy 154.363156 61.221723) (xy 154.407311 61.231512) + (xy 154.474011 61.270021) (xy 154.550438 61.2905) (xy 154.55044 61.2905) (xy 154.62956 61.2905) + (xy 154.629562 61.2905) (xy 154.705989 61.270021) (xy 154.774511 61.23046) (xy 154.83046 61.174511) + (xy 154.870021 61.105989) (xy 154.8905 61.029562) (xy 154.8905 60.950438) (xy 154.870021 60.874011) + (xy 154.83046 60.805489) (xy 154.830458 60.805487) (xy 154.830456 60.805484) (xy 154.771026 60.746054) + (xy 154.772396 60.744683) (xy 154.748789 60.707627) (xy 154.755502 60.656628) (xy 154.793427 60.621875) + (xy 154.841666 60.618712) (xy 154.866999 60.6255) (xy 154.867003 60.6255) (xy 154.995672 60.6255) + (xy 155.04401 60.643093) (xy 155.048846 60.647526) (xy 155.379474 60.978154) (xy 155.401214 61.024774) + (xy 155.4015 61.031328) (xy 155.4015 61.083801) (xy 155.425807 61.174515) (xy 155.439288 61.22483) + (xy 155.512288 61.351269) (xy 155.512292 61.351275) (xy 155.615524 61.454507) (xy 155.615527 61.454509) + (xy 155.615529 61.454511) (xy 155.741971 61.527512) (xy 155.882999 61.5653) (xy 155.883002 61.5653) + (xy 156.028998 61.5653) (xy 156.029001 61.5653) (xy 156.170029 61.527512) (xy 156.296471 61.454511) + (xy 156.399711 61.351271) (xy 156.472712 61.224829) (xy 156.5105 61.083801) (xy 156.5105 60.944303) + (xy 156.513784 60.935277) (xy 156.512832 60.925722) (xy 156.522328 60.911803) (xy 156.528093 60.895965) + (xy 156.537104 60.890147) (xy 156.541823 60.883231) (xy 156.564336 60.872565) (xy 156.565357 60.871907) + (xy 156.565732 60.871801) (xy 156.678029 60.841712) (xy 156.682973 60.838857) (xy 156.69206 60.836304) + (xy 156.699769 60.836884) (xy 156.712403 60.8335) (xy 158.508223 60.8335) (xy 158.556561 60.851093) + (xy 158.561397 60.855525) (xy 158.849788 61.143915) (xy 158.864908 61.170095) (xy 158.866402 61.169477) + (xy 158.868286 61.174027) (xy 158.941288 61.300469) (xy 158.941292 61.300475) (xy 159.044524 61.403707) + (xy 159.044527 61.403709) (xy 159.044529 61.403711) (xy 159.170971 61.476712) (xy 159.311999 61.5145) + (xy 159.312002 61.5145) (xy 159.457998 61.5145) (xy 159.458001 61.5145) (xy 159.599029 61.476712) + (xy 159.725471 61.403711) (xy 159.828711 61.300471) (xy 159.901712 61.174029) (xy 159.932324 61.059781) + (xy 159.961826 61.017647) (xy 160.011513 61.004333) (xy 160.058134 61.026072) (xy 160.077597 61.059783) + (xy 160.089978 61.105988) (xy 160.111875 61.143915) (xy 160.12699 61.170095) (xy 160.129539 61.174509) + (xy 160.129543 61.174515) (xy 160.185484 61.230456) (xy 160.185487 61.230458) (xy 160.185489 61.23046) + (xy 160.254011 61.270021) (xy 160.330438 61.2905) (xy 160.33044 61.2905) (xy 160.40956 61.2905) + (xy 160.409562 61.2905) (xy 160.485989 61.270021) (xy 160.552689 61.231511) (xy 160.603346 61.222579) + (xy 160.643462 61.243463) (xy 160.659999 61.26) (xy 161.56 61.26) (xy 161.56 61.76) (xy 160.66 61.76) + (xy 160.66 62.100509) (xy 160.688316 62.279289) (xy 160.688319 62.279304) (xy 160.744252 62.451446) + (xy 160.826434 62.612735) (xy 160.932822 62.759167) (xy 160.932833 62.75918) (xy 161.060819 62.887166) + (xy 161.060832 62.887177) (xy 161.207264 62.993565) (xy 161.368553 63.075747) (xy 161.540696 63.13168) + (xy 161.540714 63.131684) (xy 161.56 63.134738) (xy 161.56 62.109728) (xy 161.59806 62.201614) (xy 161.668386 62.27194) + (xy 161.760272 62.31) (xy 161.859728 62.31) (xy 161.951614 62.27194) (xy 162.02194 62.201614) (xy 162.06 62.109728) + (xy 162.06 63.134737) (xy 162.079285 63.131684) (xy 162.079303 63.13168) (xy 162.251446 63.075747) + (xy 162.412735 62.993565) (xy 162.559167 62.887177) (xy 162.55918 62.887166) (xy 162.687166 62.75918) + (xy 162.687177 62.759167) (xy 162.793565 62.612735) (xy 162.875747 62.451446) (xy 162.93168 62.279304) + (xy 162.931683 62.279289) (xy 162.957857 62.114034) (xy 162.957857 62.114033) (xy 162.959999 62.100506) + (xy 162.96 62.100502) (xy 162.96 61.76) (xy 162.06 61.76) (xy 162.06 61.26) (xy 162.96 61.26) (xy 162.96 60.919497) + (xy 162.959999 60.91949) (xy 162.931683 60.74071) (xy 162.93168 60.740695) (xy 162.875747 60.568553) + (xy 162.793565 60.407264) (xy 162.687177 60.260832) (xy 162.687166 60.260819) (xy 162.55918 60.132833) + (xy 162.559167 60.132822) (xy 162.412735 60.026434) (xy 162.251451 59.944255) (xy 162.079284 59.888315) + (xy 162.06 59.88526) (xy 162.06 60.910272) (xy 162.02194 60.818386) (xy 161.951614 60.74806) (xy 161.859728 60.71) + (xy 161.760272 60.71) (xy 161.668386 60.74806) (xy 161.59806 60.818386) (xy 161.56 60.910272) (xy 161.56 59.885261) + (xy 161.559999 59.88526) (xy 161.540715 59.888315) (xy 161.368548 59.944255) (xy 161.207264 60.026434) + (xy 161.060832 60.132822) (xy 161.060819 60.132833) (xy 160.932833 60.260819) (xy 160.932822 60.260832) + (xy 160.826434 60.407264) (xy 160.744252 60.568553) (xy 160.691257 60.731656) (xy 160.659588 60.772191) + (xy 160.609272 60.782886) (xy 160.566564 60.761592) (xy 160.554515 60.749543) (xy 160.554509 60.749539) + (xy 160.551947 60.74806) (xy 160.523535 60.731656) (xy 160.48599 60.709979) (xy 160.460513 60.703152) + (xy 160.409562 60.6895) (xy 160.330438 60.6895) (xy 160.292224 60.699739) (xy 160.254009 60.709979) + (xy 160.18549 60.749539) (xy 160.185484 60.749543) (xy 160.129543 60.805484) (xy 160.129539 60.80549) + (xy 160.089978 60.87401) (xy 160.085636 60.890217) (xy 160.056131 60.932353) (xy 160.006443 60.945666) + (xy 159.959824 60.923925) (xy 159.940361 60.890215) (xy 159.9395 60.887001) (xy 159.9395 60.886999) + (xy 159.901712 60.745971) (xy 159.900968 60.744683) (xy 159.879574 60.707627) (xy 159.828711 60.619529) + (xy 159.828709 60.619527) (xy 159.828707 60.619524) (xy 159.725475 60.516292) (xy 159.725469 60.516288) + (xy 159.599027 60.443286) (xy 159.594477 60.441402) (xy 159.595096 60.439905) (xy 159.568916 60.424789) + (xy 159.062227 59.918099) (xy 159.062226 59.918098) (xy 159.062225 59.918097) (xy 158.946281 59.851156) + (xy 158.946275 59.851154) (xy 158.946274 59.851153) (xy 158.816945 59.8165) (xy 158.816942 59.8165) + (xy 156.712403 59.8165) (xy 156.683203 59.808678) (xy 156.682584 59.810174) (xy 156.678035 59.80829) + (xy 156.67803 59.808288) (xy 156.678029 59.808288) (xy 156.537001 59.7705) (xy 156.390999 59.7705) + (xy 156.306382 59.793172) (xy 156.249969 59.808288) (xy 156.12353 59.881288) (xy 156.123524 59.881292) + (xy 156.020292 59.984524) (xy 156.020288 59.98453) (xy 155.947288 60.110969) (xy 155.928833 60.179846) + (xy 155.9095 60.251999) (xy 155.9095 60.252001) (xy 155.9095 60.391272) (xy 155.891907 60.43961) + (xy 155.847358 60.46533) (xy 155.7967 60.456397) (xy 155.781126 60.444446) (xy 155.516526 60.179846) + (xy 155.494786 60.133226) (xy 155.4945 60.126672) (xy 155.4945 59.998001) (xy 155.4945 59.997999) + (xy 155.456712 59.856971) (xy 155.383711 59.730529) (xy 155.383709 59.730527) (xy 155.383707 59.730524) + (xy 155.280475 59.627292) (xy 155.280469 59.627288) (xy 155.15403 59.554288) (xy 155.118772 59.544841) + (xy 155.013001 59.5165) (xy 154.866999 59.5165) (xy 154.782382 59.539172) (xy 154.725969 59.554288) + (xy 154.59953 59.627288) (xy 154.599524 59.627292) (xy 154.496292 59.730524) (xy 154.496288 59.73053) + (xy 154.423288 59.856969) (xy 154.414889 59.888315) (xy 154.3855 59.997999) (xy 154.3855 60.144001) + (xy 154.395105 60.179846) (xy 154.423288 60.28503) (xy 154.496288 60.411469) (xy 154.496292 60.411475) + (xy 154.599524 60.514707) (xy 154.599527 60.514709) (xy 154.599529 60.514711) (xy 154.630277 60.532463) + (xy 154.659222 60.549175) (xy 154.692287 60.58858) (xy 154.692287 60.64002) (xy 154.659222 60.679425) + (xy 154.621622 60.6895) (xy 154.550438 60.6895) (xy 154.512224 60.699739) (xy 154.474009 60.709979) + (xy 154.40549 60.749539) (xy 154.405487 60.749541) (xy 154.393434 60.761594) (xy 154.346813 60.783332) + (xy 154.297126 60.770017) (xy 154.268741 60.731656) (xy 154.215744 60.568548) (xy 154.133565 60.407264) + (xy 154.027177 60.260832) (xy 154.027166 60.260819) (xy 153.89918 60.132833) (xy 153.899167 60.132822) + (xy 153.752735 60.026434) (xy 153.591451 59.944255) (xy 153.419284 59.888315) (xy 153.4 59.88526) + (xy 153.4 60.910272) (xy 153.36194 60.818386) (xy 153.291614 60.74806) (xy 153.199728 60.71) (xy 153.100272 60.71) + (xy 153.008386 60.74806) (xy 152.93806 60.818386) (xy 152.9 60.910272) (xy 152.9 59.885261) (xy 152.899999 59.88526) + (xy 152.880715 59.888315) (xy 152.708548 59.944255) (xy 152.547264 60.026434) (xy 152.400832 60.132822) + (xy 152.400819 60.132833) (xy 152.272833 60.260819) (xy 152.272822 60.260832) (xy 152.166434 60.407264) + (xy 152.084252 60.568553) (xy 152.028319 60.740695) (xy 152.028316 60.74071) (xy 152 60.91949) (xy 148.925356 60.91949) + (xy 148.90613 60.913243) (xy 148.90612 60.913241) (xy 148.874888 60.908294) (xy 148.829898 60.883355) + (xy 148.811464 60.835332) (xy 148.828212 60.786694) (xy 148.86341 60.762503) (xy 149.013981 60.71358) + (xy 149.168884 60.634653) (xy 149.309533 60.532465) (xy 149.432465 60.409533) (xy 149.534653 60.268884) + (xy 149.61358 60.113981) (xy 149.667303 59.948638) (xy 149.6945 59.776926) (xy 149.6945 59.603074) + (xy 149.667303 59.431362) (xy 149.61358 59.266019) (xy 149.534653 59.111116) (xy 149.432465 58.970467) + (xy 149.43246 58.970462) (xy 149.432456 58.970457) (xy 149.401999 58.94) (xy 154.771759 58.94) (xy 154.815358 59.045256) + (xy 154.897439 59.1681) (xy 155.001899 59.27256) (xy 155.124743 59.354641) (xy 155.23 59.398239) + (xy 155.73 59.398239) (xy 155.835256 59.354641) (xy 155.9581 59.27256) (xy 156.06256 59.1681) (xy 156.144641 59.045256) + (xy 156.18824 58.94) (xy 158.771759 58.94) (xy 158.815358 59.045256) (xy 158.897439 59.1681) (xy 159.001899 59.27256) + (xy 159.124743 59.354641) (xy 159.23 59.398239) (xy 159.73 59.398239) (xy 159.835256 59.354641) + (xy 159.9581 59.27256) (xy 160.06256 59.1681) (xy 160.144641 59.045256) (xy 160.18824 58.94) (xy 159.73 58.94) + (xy 159.73 59.398239) (xy 159.23 59.398239) (xy 159.23 58.94) (xy 158.771759 58.94) (xy 156.18824 58.94) + (xy 155.73 58.94) (xy 155.73 59.398239) (xy 155.23 59.398239) (xy 155.23 58.94) (xy 154.771759 58.94) + (xy 149.401999 58.94) (xy 149.309542 58.847543) (xy 149.309534 58.847536) (xy 149.291919 58.834738) + (xy 149.209654 58.774968) (xy 149.168885 58.745347) (xy 149.067256 58.693565) (xy 149.013981 58.66642) + (xy 149.013974 58.666417) (xy 149.01397 58.666416) (xy 148.848642 58.612698) (xy 148.84863 58.612695) + (xy 148.676928 58.5855) (xy 148.676926 58.5855) (xy 148.503074 58.5855) (xy 148.503071 58.5855) + (xy 148.331369 58.612695) (xy 148.331357 58.612698) (xy 148.166029 58.666416) (xy 148.166021 58.666419) + (xy 148.166019 58.66642) (xy 148.166015 58.666421) (xy 148.166015 58.666422) (xy 148.011114 58.745347) + (xy 147.870465 58.847536) (xy 147.870457 58.847543) (xy 147.747543 58.970457) (xy 147.747536 58.970465) + (xy 147.645347 59.111114) (xy 147.566422 59.266015) (xy 147.566416 59.266029) (xy 147.512698 59.431357) + (xy 147.512695 59.431369) (xy 147.4855 59.603071) (xy 147.4855 59.776928) (xy 147.512695 59.94863) + (xy 147.512698 59.948642) (xy 147.524358 59.984529) (xy 147.56642 60.113981) (xy 147.581716 60.144001) + (xy 147.645347 60.268885) (xy 147.719592 60.371073) (xy 147.745886 60.407264) (xy 147.747536 60.409534) + (xy 147.747543 60.409542) (xy 147.870457 60.532456) (xy 147.870465 60.532463) (xy 147.870467 60.532465) + (xy 147.920131 60.568548) (xy 148.011114 60.634652) (xy 148.011116 60.634653) (xy 148.166019 60.71358) + (xy 148.316586 60.762502) (xy 148.357119 60.79417) (xy 148.367814 60.844486) (xy 148.343665 60.889904) + (xy 148.305111 60.908294) (xy 148.27388 60.91324) (xy 148.273869 60.913243) (xy 148.07178 60.978905) + (xy 147.882441 61.075379) (xy 147.828282 61.114728) (xy 147.828281 61.114729) (xy 148.46059 61.747037) + (xy 148.397007 61.764075) (xy 148.282993 61.829901) (xy 148.189901 61.922993) (xy 148.124075 62.037007) + (xy 148.107037 62.100589) (xy 147.474729 61.468281) (xy 147.456538 61.49332) (xy 147.413892 61.522084) + (xy 147.362734 61.516707) (xy 147.327001 61.479704) (xy 147.3205 61.449118) (xy 147.3205 56.274932) + (xy 147.4855 56.274932) (xy 147.4855 58.025067) (xy 147.485501 58.025068) (xy 147.486496 58.030068) + (xy 147.500266 58.099301) (xy 147.556516 58.183484) (xy 147.640699 58.239734) (xy 147.714933 58.2545) + (xy 149.465066 58.254499) (xy 149.465067 58.254499) (xy 149.465067 58.254498) (xy 149.539301 58.239734) + (xy 149.623484 58.183484) (xy 149.679734 58.099301) (xy 149.6945 58.025067) (xy 149.694499 57.06) + (xy 149.694499 56.274932) (xy 149.694498 56.274931) (xy 149.679734 56.200699) (xy 149.623484 56.116516) + (xy 149.539301 56.060266) (xy 149.539299 56.060265) (xy 149.465067 56.0455) (xy 147.714932 56.0455) + (xy 147.714931 56.045501) (xy 147.640699 56.060266) (xy 147.556516 56.116516) (xy 147.500266 56.200698) + (xy 147.500265 56.2007) (xy 147.4855 56.274932) (xy 147.3205 56.274932) (xy 147.3205 55.9557) (xy 147.338093 55.907362) + (xy 147.382642 55.881642) (xy 147.3957 55.8805) (xy 152.379045 55.8805) + ) + ) + ) + (embedded_fonts no) +) diff --git a/mini-stm-board.kicad_prl b/mini-stm-board.kicad_prl new file mode 100644 index 0000000..580a2b1 --- /dev/null +++ b/mini-stm-board.kicad_prl @@ -0,0 +1,133 @@ +{ + "board": { + "active_layer": 5, + "active_layer_preset": "", + "auto_track_width": true, + "hidden_netclasses": [], + "hidden_nets": [ + "GND" + ], + "high_contrast_mode": 0, + "net_color_mode": 1, + "opacity": { + "images": 0.6, + "pads": 1.0, + "shapes": 1.0, + "tracks": 1.0, + "vias": 1.0, + "zones": 0.6 + }, + "selection_filter": { + "dimensions": false, + "footprints": true, + "graphics": false, + "keepouts": false, + "lockedItems": false, + "otherItems": false, + "pads": true, + "text": true, + "tracks": true, + "vias": true, + "zones": true + }, + "visible_items": [ + "vias", + "footprint_text", + "footprint_anchors", + "ratsnest", + "grid", + "footprints_front", + "footprints_back", + "footprint_values", + "footprint_references", + "tracks", + "drc_errors", + "drawing_sheet", + "bitmaps", + "pads", + "zones", + "drc_warnings", + "drc_exclusions", + "locked_item_shadows", + "conflict_shadows", + "shapes" + ], + "visible_layers": "ffffffff_ffffffff_ffffffff_ffffffff", + "zone_display_mode": 0 + }, + "git": { + "repo_type": "", + "repo_username": "", + "ssh_key": "" + }, + "meta": { + "filename": "mini-stm-board.kicad_prl", + "version": 5 + }, + "net_inspector_panel": { + "col_hidden": [ + false, + false, + false, + false, + false, + false, + false, + false, + false, + false + ], + "col_order": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 7, + 8, + 9 + ], + "col_widths": [ + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0, + 0 + ], + "custom_group_rules": [], + "expanded_rows": [], + "filter_by_net_name": true, + "filter_by_netclass": true, + "filter_text": "", + "group_by_constraint": false, + "group_by_netclass": false, + "show_unconnected_nets": false, + "show_zero_pad_nets": false, + "sort_ascending": true, + "sorting_column": 0 + }, + "open_jobsets": [], + "project": { + "files": [] + }, + "schematic": { + "selection_filter": { + "graphics": true, + "images": true, + "labels": true, + "lockedItems": false, + "otherItems": true, + "pins": true, + "symbols": true, + "text": true, + "wires": true + } + } +} diff --git a/mini-stm-board.kicad_pro b/mini-stm-board.kicad_pro new file mode 100644 index 0000000..9a097dc --- /dev/null +++ b/mini-stm-board.kicad_pro @@ -0,0 +1,1070 @@ +{ + "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.05, + "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": true, + "text_position": 0, + "units_format": 0 + }, + "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.1, + "other_text_italic": false, + "other_text_size_h": 1.0, + "other_text_size_v": 1.0, + "other_text_thickness": 0.15, + "other_text_upright": false, + "pads": { + "drill": 0.0, + "height": 0.84, + "width": 1.19 + }, + "silk_line_width": 0.1, + "silk_text_italic": false, + "silk_text_size_h": 1.0, + "silk_text_size_v": 1.0, + "silk_text_thickness": 0.1, + "silk_text_upright": false, + "zones": { + "min_clearance": 0.254 + } + }, + "diff_pair_dimensions": [ + { + "gap": 0.0, + "via_gap": 0.0, + "width": 0.0 + } + ], + "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", + "creepage": "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_filters_mismatch": "ignore", + "footprint_symbol_mismatch": "warning", + "footprint_type_mismatch": "ignore", + "hole_clearance": "error", + "hole_to_hole": "warning", + "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", + "mirrored_text_on_front_layer": "warning", + "missing_courtyard": "ignore", + "missing_footprint": "warning", + "net_conflict": "warning", + "nonmirrored_text_on_back_layer": "warning", + "npth_inside_courtyard": "ignore", + "padstack": "warning", + "pth_inside_courtyard": "ignore", + "shorting_items": "error", + "silk_edge_clearance": "ignore", + "silk_over_copper": "warning", + "silk_overlap": "ignore", + "skew_out_of_range": "error", + "solder_mask_bridge": "error", + "starved_thermal": "error", + "text_height": "warning", + "text_on_edge_cuts": "error", + "text_thickness": "warning", + "through_hole_pad_without_hole": "error", + "too_many_vias": "error", + "track_angle": "error", + "track_dangling": "warning", + "track_segment_length": "error", + "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_groove_width": 0.0, + "min_hole_clearance": 0.0, + "min_hole_to_hole": 0.0, + "min_microvia_diameter": 0.2, + "min_microvia_drill": 0.01, + "min_resolved_spokes": 2, + "min_silk_clearance": 0.0, + "min_text_height": 1.0, + "min_text_thickness": 0.01, + "min_through_hole_diameter": 0.508, + "min_track_width": 0.0, + "min_via_annular_width": 0.0, + "min_via_diameter": 0.0, + "solder_mask_to_copper_clearance": 0.005, + "use_height_for_length_calcs": true + }, + "teardrop_options": [ + { + "td_onpthpad": true, + "td_onroundshapesonly": false, + "td_onsmdpad": true, + "td_ontrackend": true, + "td_onvia": 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": [ + 0.0, + 0.1524, + 0.381, + 0.508 + ], + "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": [ + { + "diameter": 0.0, + "drill": 0.0 + }, + { + "diameter": 0.6, + "drill": 0.3 + } + ], + "zones_allow_external_fillets": false + }, + "ipc2581": { + "dist": "", + "distpn": "", + "internal_id": "", + "mfg": "", + "mpn": "" + }, + "layer_pairs": [], + "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", + "different_unit_footprint": "error", + "different_unit_net": "error", + "duplicate_reference": "error", + "duplicate_sheet_names": "error", + "endpoint_off_grid": "warning", + "extra_units": "error", + "footprint_filter": "ignore", + "footprint_link_issues": "warning", + "four_way_junction": "ignore", + "global_label_dangling": "warning", + "hier_label_mismatch": "error", + "label_dangling": "error", + "label_multiple_wires": "warning", + "lib_symbol_issues": "warning", + "lib_symbol_mismatch": "warning", + "missing_bidi_pin": "warning", + "missing_input_pin": "warning", + "missing_power_pin": "error", + "missing_unit": "warning", + "multiple_net_names": "warning", + "net_not_bus_member": "warning", + "no_connect_connected": "warning", + "no_connect_dangling": "warning", + "pin_not_connected": "error", + "pin_not_driven": "error", + "pin_to_pin": "warning", + "power_pin_not_driven": "error", + "same_local_global_label": "warning", + "similar_label_and_power": "warning", + "similar_labels": "warning", + "similar_power": "warning", + "simulation_model_issue": "ignore", + "single_global_label": "ignore", + "unannotated": "error", + "unconnected_wire_endpoint": "warning", + "undefined_netclass": "error", + "unit_value_mismatch": "error", + "unresolved_variable": "error", + "wire_dangling": "error" + } + }, + "libraries": { + "pinned_footprint_libs": [], + "pinned_symbol_libs": [] + }, + "meta": { + "filename": "mini-stm-board.kicad_pro", + "version": 3 + }, + "net_settings": { + "classes": [ + { + "bus_width": 12, + "clearance": 0.1524, + "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)", + "priority": 2147483647, + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.1524, + "via_diameter": 0.6, + "via_drill": 0.3, + "wire_width": 6 + }, + { + "clearance": 0.1524, + "name": "Power", + "pcb_color": "rgba(0, 0, 0, 0.000)", + "priority": 0, + "schematic_color": "rgba(0, 0, 0, 0.000)", + "track_width": 0.508, + "via_diameter": 0.6, + "via_drill": 0.3 + } + ], + "meta": { + "version": 4 + }, + "net_colors": null, + "netclass_assignments": null, + "netclass_patterns": [ + { + "netclass": "Power", + "pattern": "+*" + }, + { + "netclass": "Power", + "pattern": "GND" + }, + { + "netclass": "Power", + "pattern": "V*" + } + ] + }, + "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": "${PROJECTNAME}.csv", + "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": false, + "label": "Qty", + "name": "${QUANTITY}", + "show": true + }, + { + "group_by": true, + "label": "Value", + "name": "Value", + "show": true + }, + { + "group_by": true, + "label": "DNP", + "name": "${DNP}", + "show": true + }, + { + "group_by": true, + "label": "Exclude from BOM", + "name": "${EXCLUDE_FROM_BOM}", + "show": true + }, + { + "group_by": true, + "label": "Exclude from Board", + "name": "${EXCLUDE_FROM_BOARD}", + "show": true + }, + { + "group_by": true, + "label": "Footprint", + "name": "Footprint", + "show": true + }, + { + "group_by": false, + "label": "Datasheet", + "name": "Datasheet", + "show": false + }, + { + "group_by": false, + "label": "Actuator/Cap Color", + "name": "Actuator/Cap Color", + "show": false + }, + { + "group_by": false, + "label": "Adc (Bit)", + "name": "Adc (Bit)", + "show": false + }, + { + "group_by": false, + "label": "Attrition Qty", + "name": "Attrition Qty", + "show": false + }, + { + "group_by": false, + "label": "Capacitance", + "name": "Capacitance", + "show": false + }, + { + "group_by": false, + "label": "Category", + "name": "Category", + "show": false + }, + { + "group_by": false, + "label": "Circuit", + "name": "Circuit", + "show": false + }, + { + "group_by": false, + "label": "Class", + "name": "Class", + "show": false + }, + { + "group_by": false, + "label": "Contact Current", + "name": "Contact Current", + "show": false + }, + { + "group_by": false, + "label": "Cpu Core", + "name": "Cpu Core", + "show": false + }, + { + "group_by": false, + "label": "Cpu Maximum Speed", + "name": "Cpu Maximum Speed", + "show": false + }, + { + "group_by": false, + "label": "Crystal Type", + "name": "Crystal Type", + "show": false + }, + { + "group_by": false, + "label": "Direct Memory Access", + "name": "Direct Memory Access", + "show": false + }, + { + "group_by": false, + "label": "Dropout Voltage", + "name": "Dropout Voltage", + "show": false + }, + { + "group_by": false, + "label": "Emitted Color", + "name": "Emitted Color", + "show": false + }, + { + "group_by": false, + "label": "Feature", + "name": "Feature", + "show": false + }, + { + "group_by": false, + "label": "Frequency", + "name": "Frequency", + "show": false + }, + { + "group_by": false, + "label": "Frequency Stability", + "name": "Frequency Stability", + "show": false + }, + { + "group_by": false, + "label": "Frequency Tolerance", + "name": "Frequency Tolerance", + "show": false + }, + { + "group_by": false, + "label": "Gpio Ports Number", + "name": "Gpio Ports Number", + "show": false + }, + { + "group_by": false, + "label": "Infrared Data Association", + "name": "Infrared Data Association", + "show": false + }, + { + "group_by": false, + "label": "Insulation Resistance", + "name": "Insulation Resistance", + "show": false + }, + { + "group_by": false, + "label": "Internal Oscillator", + "name": "Internal Oscillator", + "show": false + }, + { + "group_by": false, + "label": "LCSC", + "name": "LCSC", + "show": true + }, + { + "group_by": false, + "label": "Load Capacitance", + "name": "Load Capacitance", + "show": false + }, + { + "group_by": false, + "label": "Low Voltage Detection Threshold", + "name": "Low Voltage Detection Threshold", + "show": false + }, + { + "group_by": false, + "label": "Low-Voltage Detect", + "name": "Low-Voltage Detect", + "show": false + }, + { + "group_by": false, + "label": "Manufacturer", + "name": "Manufacturer", + "show": false + }, + { + "group_by": false, + "label": "Maximum Input Voltage", + "name": "Maximum Input Voltage", + "show": false + }, + { + "group_by": false, + "label": "Mechanical Life", + "name": "Mechanical Life", + "show": false + }, + { + "group_by": false, + "label": "Minimum Qty", + "name": "Minimum Qty", + "show": false + }, + { + "group_by": false, + "label": "Mounting Style", + "name": "Mounting Style", + "show": false + }, + { + "group_by": false, + "label": "Normal Temperature Frequency Tolerance", + "name": "Normal Temperature Frequency Tolerance", + "show": false + }, + { + "group_by": false, + "label": "Number Of Outputs", + "name": "Number Of Outputs", + "show": false + }, + { + "group_by": false, + "label": "Operating Force", + "name": "Operating Force", + "show": false + }, + { + "group_by": false, + "label": "Operating Temperature", + "name": "Operating Temperature", + "show": false + }, + { + "group_by": false, + "label": "Operating Temperature Range", + "name": "Operating Temperature Range", + "show": false + }, + { + "group_by": false, + "label": "Operating Voltage Range", + "name": "Operating Voltage Range", + "show": false + }, + { + "group_by": false, + "label": "Output Current", + "name": "Output Current", + "show": false + }, + { + "group_by": false, + "label": "Output Polarity", + "name": "Output Polarity", + "show": false + }, + { + "group_by": false, + "label": "Output Type", + "name": "Output Type", + "show": false + }, + { + "group_by": false, + "label": "Output Voltage", + "name": "Output Voltage", + "show": false + }, + { + "group_by": false, + "label": "Overload Voltage (Max)", + "name": "Overload Voltage (Max)", + "show": false + }, + { + "group_by": false, + "label": "Part", + "name": "Part", + "show": false + }, + { + "group_by": false, + "label": "Peripheral/Function", + "name": "Peripheral/Function", + "show": false + }, + { + "group_by": false, + "label": "Pin Style", + "name": "Pin Style", + "show": false + }, + { + "group_by": false, + "label": "Power(Watts)", + "name": "Power(Watts)", + "show": false + }, + { + "group_by": false, + "label": "Price", + "name": "Price", + "show": false + }, + { + "group_by": false, + "label": "Process", + "name": "Process", + "show": false + }, + { + "group_by": false, + "label": "Program Memory Type", + "name": "Program Memory Type", + "show": false + }, + { + "group_by": false, + "label": "Program Storage Size", + "name": "Program Storage Size", + "show": false + }, + { + "group_by": false, + "label": "Ram Size", + "name": "Ram Size", + "show": false + }, + { + "group_by": false, + "label": "Resistance", + "name": "Resistance", + "show": false + }, + { + "group_by": false, + "label": "Stock", + "name": "Stock", + "show": false + }, + { + "group_by": false, + "label": "Strike Gundam", + "name": "Strike Gundam", + "show": false + }, + { + "group_by": false, + "label": "Switch Height", + "name": "Switch Height", + "show": false + }, + { + "group_by": false, + "label": "Switch Length", + "name": "Switch Length", + "show": false + }, + { + "group_by": false, + "label": "Switch Width", + "name": "Switch Width", + "show": false + }, + { + "group_by": false, + "label": "Temperature Coefficient", + "name": "Temperature Coefficient", + "show": false + }, + { + "group_by": false, + "label": "Tolerance", + "name": "Tolerance", + "show": false + }, + { + "group_by": false, + "label": "Type", + "name": "Type", + "show": false + }, + { + "group_by": false, + "label": "Universal Serial Bus", + "name": "Universal Serial Bus", + "show": false + }, + { + "group_by": false, + "label": "Voltage Rated", + "name": "Voltage Rated", + "show": false + }, + { + "group_by": false, + "label": "Voltage Rating (Dc)", + "name": "Voltage Rating (Dc)", + "show": false + }, + { + "group_by": false, + "label": "Watchdog", + "name": "Watchdog", + "show": false + }, + { + "group_by": false, + "label": "With Lamp", + "name": "With Lamp", + "show": false + }, + { + "group_by": false, + "label": "Actuator Style", + "name": "Actuator Style", + "show": false + }, + { + "group_by": false, + "label": "Description", + "name": "Description", + "show": false + }, + { + "group_by": false, + "label": "#", + "name": "${ITEM_NUMBER}", + "show": false + } + ], + "filter_string": "", + "group_symbols": true, + "include_excluded_from_bom": true, + "name": "", + "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": "", + "space_save_all_events": true, + "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": [ + [ + "bca8bde7-1b71-423e-908f-8c2dd8a84df5", + "Root" + ] + ], + "text_variables": {} +} diff --git a/mini-stm-board.kicad_sch b/mini-stm-board.kicad_sch new file mode 100644 index 0000000..90a470d --- /dev/null +++ b/mini-stm-board.kicad_sch @@ -0,0 +1,18947 @@ +(kicad_sch + (version 20250114) + (generator "eeschema") + (generator_version "9.0") + (uuid "bca8bde7-1b71-423e-908f-8c2dd8a84df5") + (paper "A4") + (title_block + (title "Pico STM32") + (date "2025-09-05") + (rev "1") + (comment 1 "Copyright (c) 2025 Matthias Blankertz") + (comment 2 "CC BY-SA 4.0") + ) + (lib_symbols + (symbol "Connector:Conn_01x03_Pin" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 5.08 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x03_Pin" + (at 0 -5.08 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" "Generic connector, single row, 01x03, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x03_Pin_1_1" + (rectangle + (start 0.8636 2.667) + (end 0 2.413) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 0.127) + (end 0 -0.127) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 0.8636 -2.413) + (end 0 -2.667) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 1.27 2.54) (xy 0.8636 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 0) (xy 0.8636 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -2.54) (xy 0.8636 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at 5.08 2.54 180) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 0 180) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 5.08 -2.54 180) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "Connector:Conn_01x20_Socket" + (pin_names + (offset 1.016) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 0 25.4 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Conn_01x20_Socket" + (at 0 -27.94 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" "Generic connector, single row, 01x20, script generated" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_locked" "" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "ki_keywords" "connector" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "Connector*:*_1x??_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Conn_01x20_Socket_1_1" + (polyline + (pts + (xy -1.27 22.86) (xy -0.508 22.86) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 20.32) (xy -0.508 20.32) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 17.78) (xy -0.508 17.78) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 15.24) (xy -0.508 15.24) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 12.7) (xy -0.508 12.7) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 10.16) (xy -0.508 10.16) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 7.62) (xy -0.508 7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 5.08) (xy -0.508 5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 2.54) (xy -0.508 2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 0) (xy -0.508 0) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -2.54) (xy -0.508 -2.54) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -5.08) (xy -0.508 -5.08) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -7.62) (xy -0.508 -7.62) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -10.16) (xy -0.508 -10.16) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -12.7) (xy -0.508 -12.7) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -15.24) (xy -0.508 -15.24) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -17.78) (xy -0.508 -17.78) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -20.32) (xy -0.508 -20.32) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -22.86) (xy -0.508 -22.86) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -25.4) (xy -0.508 -25.4) + ) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 22.352) + (mid -0.5058 22.86) + (end 0 23.368) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 19.812) + (mid -0.5058 20.32) + (end 0 20.828) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 17.272) + (mid -0.5058 17.78) + (end 0 18.288) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 14.732) + (mid -0.5058 15.24) + (end 0 15.748) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 12.192) + (mid -0.5058 12.7) + (end 0 13.208) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 9.652) + (mid -0.5058 10.16) + (end 0 10.668) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 7.112) + (mid -0.5058 7.62) + (end 0 8.128) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 4.572) + (mid -0.5058 5.08) + (end 0 5.588) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 2.032) + (mid -0.5058 2.54) + (end 0 3.048) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -0.508) + (mid -0.5058 0) + (end 0 0.508) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -3.048) + (mid -0.5058 -2.54) + (end 0 -2.032) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -5.588) + (mid -0.5058 -5.08) + (end 0 -4.572) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -8.128) + (mid -0.5058 -7.62) + (end 0 -7.112) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -10.668) + (mid -0.5058 -10.16) + (end 0 -9.652) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -13.208) + (mid -0.5058 -12.7) + (end 0 -12.192) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -15.748) + (mid -0.5058 -15.24) + (end 0 -14.732) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -18.288) + (mid -0.5058 -17.78) + (end 0 -17.272) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -20.828) + (mid -0.5058 -20.32) + (end 0 -19.812) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -23.368) + (mid -0.5058 -22.86) + (end 0 -22.352) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start 0 -25.908) + (mid -0.5058 -25.4) + (end 0 -24.892) + (stroke + (width 0.1524) + (type default) + ) + (fill + (type none) + ) + ) + (pin passive line + (at -5.08 22.86 0) + (length 3.81) + (name "Pin_1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 20.32 0) + (length 3.81) + (name "Pin_2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 17.78 0) + (length 3.81) + (name "Pin_3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 15.24 0) + (length 3.81) + (name "Pin_4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 12.7 0) + (length 3.81) + (name "Pin_5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 10.16 0) + (length 3.81) + (name "Pin_6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 7.62 0) + (length 3.81) + (name "Pin_7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 5.08 0) + (length 3.81) + (name "Pin_8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 2.54 0) + (length 3.81) + (name "Pin_9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 0 0) + (length 3.81) + (name "Pin_10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -2.54 0) + (length 3.81) + (name "Pin_11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -5.08 0) + (length 3.81) + (name "Pin_12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -7.62 0) + (length 3.81) + (name "Pin_13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -10.16 0) + (length 3.81) + (name "Pin_14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -12.7 0) + (length 3.81) + (name "Pin_15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -15.24 0) + (length 3.81) + (name "Pin_16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -17.78 0) + (length 3.81) + (name "Pin_17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -20.32 0) + (length 3.81) + (name "Pin_18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -22.86 0) + (length 3.81) + (name "Pin_19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at -5.08 -25.4 0) + (length 3.81) + (name "Pin_20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Capacitors:0402,100nF" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 2.032 1.668 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 2.032 -0.3782 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C1525" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "20208285" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "16V" + (at 2.032 -2.0462 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "100nF" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X7R" + (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 "0402,100nF_0_1" + (polyline + (pts + (xy -1.27 0.635) (xy 1.27 0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -0.635) (xy 1.27 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "0402,100nF_1_1" + (pin passive line + (at 0 3.81 270) + (length 3.175) + (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 3.175) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Capacitors:0402,10pF" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 2.032 1.668 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10pF" + (at 2.032 -0.3782 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05C100JB5NNNC_C32949.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "50V 10pF C0G ±5% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C32949" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "564575" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.007USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05C100JB5NNNC" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "50V" + (at 2.032 -2.0462 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±5%" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "10pF" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "C0G" + (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 "0402,10pF_0_1" + (polyline + (pts + (xy -1.27 0.635) (xy 1.27 0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -0.635) (xy 1.27 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "0402,10pF_1_1" + (pin passive line + (at 0 3.81 270) + (length 3.175) + (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 3.175) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Capacitors:0402,1uF" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 2.032 1.668 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1uF" + (at 2.032 -0.3782 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05A105KA5NQNC_C52923.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "25V 1uF X5R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C52923" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "7021828" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.006USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05A105KA5NQNC" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "25V" + (at 2.032 -2.0462 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "1uF" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X5R" + (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 "0402,1uF_0_1" + (polyline + (pts + (xy -1.27 0.635) (xy 1.27 0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -0.635) (xy 1.27 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "0402,1uF_1_1" + (pin passive line + (at 0 3.81 270) + (length 3.175) + (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 3.175) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Capacitors:0402,4.7uF" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "C" + (at 2.032 1.668 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7uF" + (at 2.032 -0.3782 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05A475MP5NRNC_C23733.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "10V 4.7uF X5R ±20% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C23733" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "4366811" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.008USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05A475MP5NRNC" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "10V" + (at 2.032 -2.0462 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±20%" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "4.7uF" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X5R" + (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 "0402,4.7uF_0_1" + (polyline + (pts + (xy -1.27 0.635) (xy 1.27 0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -0.635) (xy 1.27 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "0402,4.7uF_1_1" + (pin passive line + (at 0 3.81 270) + (length 3.175) + (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 3.175) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Connectors_Buttons:Tactile Button, 160gf, 12V, 50mA, 4.0mm" + (pin_names + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "S" + (at 0 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Tactile Button, 160gf" + (at 0 -8.89 0) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:SW_TS-1088-AR02016" + (at 0 -10.16 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_XUNPU-TS-1088-AR02016_C720477.pdf" + (at -2.286 0.127 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "Without 50mA 4mm 100MΩ 100000 Times 12V 160gf 3mm 2mm Round Button Standing paste SPST SMD Tactile Switches ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C720477" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "346801" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.044USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "4" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Switches,Tactile Switches" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "XUNPU" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "TS-1088-AR02016" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Switch Length" "4mm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rating (Dc)" "12V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "With Lamp" "No" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Force" "160gf@±50gf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Actuator/Cap Color" "Black" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Mechanical Life" "100000 Times" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Strike Gundam" "NO" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Circuit" "SPST" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Switch Height" "2mm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Actuator Style" "Round Button" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Switch Width" "3mm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Contact Current" "50mA" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature" "-30°C~+80°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Mounting Style" "Brick nogging" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Insulation Resistance" "100MΩ" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Pin Style" "SMDSplicing" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "C720477" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Tactile Button, 160gf, 12V, 50mA, 4.0mm_0_1" + (polyline + (pts + (xy -2.54 2.54) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -2.54 -5.08) (xy 0 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.508 0.762) (xy -1.27 -2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0.762) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 0.508) + (radius 0.3175) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (circle + (center 0 -2.794) + (radius 0.3175) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy 0 -3.302) (xy 0 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (pin unspecified line + (at -5.08 2.54 0) + (length 2.54) + (name "A" + (effects + (font + (size 1 1) + ) + ) + ) + (number "1" + (effects + (font + (size 1 1) + ) + ) + ) + ) + (pin unspecified line + (at -5.08 -5.08 0) + (length 2.54) + (name "B" + (effects + (font + (size 1 1) + ) + ) + ) + (number "2" + (effects + (font + (size 1 1) + ) + ) + ) + ) + ) + (symbol "Tactile Button, 160gf, 12V, 50mA, 4.0mm_1_1" + (rectangle + (start -2.54 5.08) + (end 2.54 -7.62) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Crystals:Crystal, 16MHz, 9pF" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "X" + (at 0 6.096 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "X322516MLB4SI" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "PCM_JLCPCB:OSC-SMD_4P-L3.2-W2.5-BL" + (at 0 -10.16 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2403291504_YXC-Crystal-Oscillators-X322516MLB4SI_C13738.pdf" + (at -2.286 0.127 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "16MHz Surface Mount Crystal 9pF ±10ppm ±20ppm SMD3225-4P Crystals ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C13738" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "162087" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.068USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "4" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Crystals/Oscillators/Resonators,Crystals" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Yangxing Tech" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "X322516MLB4SI" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Frequency" "16MHz" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Frequency Stability" "±20ppm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature" "-40°C~+85°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Frequency Tolerance" "±10ppm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Crystal Type" "SMD Crystal Resonator" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Load Capacitance" "9pF" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Normal Temperature Frequency Tolerance" "±10ppm" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Surface Mount Crystal" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "C13738" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Crystal, 16MHz, 9pF_0_1" + (rectangle + (start -5.08 5.08) + (end 5.08 -5.08) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -5.08 -2.54) (xy -2.54 -2.54) (xy -2.54 0) (xy -1.524 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -1.016) (xy -1.27 1.016) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -1.778) (xy -1.27 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -0.762 -1.778) (xy -0.762 1.778) (xy 0.762 1.778) (xy 0.762 -1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 1.778) (xy 0.762 -1.778) (xy -0.762 -1.778) (xy -0.762 1.778) (xy 0.762 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.762 -1.778) (xy -0.762 -1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.016) (xy 1.27 1.016) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.778) (xy 1.27 1.778) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 2.54) (xy 2.54 2.54) (xy 2.54 0) (xy 1.524 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (pin unspecified line + (at -7.62 2.54 0) + (length 2.54) + (name "GND" + (effects + (font + (size 1 1) + ) + ) + ) + (number "4" + (effects + (font + (size 1 1) + ) + ) + ) + ) + (pin unspecified line + (at 7.62 -2.54 180) + (length 2.54) + (name "GND" + (effects + (font + (size 1 1) + ) + ) + ) + (number "2" + (effects + (font + (size 1 1) + ) + ) + ) + ) + ) + (symbol "Crystal, 16MHz, 9pF_1_1" + (pin unspecified line + (at -7.62 -2.54 0) + (length 2.54) + (name "OSC" + (effects + (font + (size 1 1) + ) + ) + ) + (number "1" + (effects + (font + (size 1 1) + ) + ) + ) + ) + (pin unspecified line + (at 7.62 2.54 180) + (length 2.54) + (name "OSC" + (effects + (font + (size 1 1) + ) + ) + ) + (number "3" + (effects + (font + (size 1 1) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Diode-Packages:Package, H5VUT1B" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 0 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "H5VUT1B" + (at 0 -2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:SOT-143-4_L2.9-W1.3-P1.90-LS2.4-BL-1" + (at 0 -10.16 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://wmsc.lcsc.com/wmsc/upload/file/pdf/v2/lcsc/2405091603_hongjiacheng-H5VUT1B_C22395520.pdf" + (at -2.286 0.127 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "5A 75W 15V 6V Bidirectional 5V SOT-143 ESD and Surge Protection (TVS/ESD) ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C22395520" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "10590" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.054USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "4" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Preferred Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Circuit Protection,ESD And Surge Protection (TVS/ESD)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "hongjiacheng" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "H5VUT1B" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "C22395520" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Package, H5VUT1B_0_1" + (rectangle + (start -7.62 6.35) + (end 7.62 -6.35) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -5.08 5.08) (xy 5.08 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 2.54) (xy -5.08 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 1.27) (xy -5.08 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -2.54) (xy -5.08 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -2.54) (xy -5.08 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -5.08 -5.08) (xy 5.08 -5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.302 1.778) (xy -3.81 1.27) (xy -6.35 1.27) (xy -6.858 0.762) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -3.302 -1.27) (xy -5.08 1.27) (xy -6.858 -1.27) (xy -3.302 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy 0 3.81) (xy 0 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 1.778 0) (xy 1.778 -0.762) (xy 2.54 -0.762) (xy 2.54 -4.572) (xy 3.048 -5.08) (xy 2.54 -5.588) + (xy 2.54 -6.35) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -1.27) (xy 0 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -5.08) (xy 0 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 3.81) (xy -1.27 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.27 -1.27) (xy -1.27 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 1.778 1.27) (xy 0 3.81) (xy -1.778 1.27) (xy 1.778 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy 1.778 -3.81) (xy 0 -1.27) (xy -1.778 -3.81) (xy 1.778 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy 5.08 3.81) (xy 5.08 5.08) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 0) (xy 5.08 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 0) (xy 2.54 0) (xy 2.54 4.572) (xy 2.032 5.08) (xy 2.54 5.588) (xy 2.54 6.35) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 -1.27) (xy 5.08 0) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 5.08 -5.08) (xy 5.08 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 3.81) (xy 3.81 3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.35 -1.27) (xy 3.81 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 6.858 1.27) (xy 5.08 3.81) (xy 3.302 1.27) (xy 6.858 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy 6.858 -3.81) (xy 5.08 -1.27) (xy 3.302 -3.81) (xy 6.858 -3.81) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + (pin unspecified line + (at -5.08 7.62 270) + (length 2.54) + (name "4" + (effects + (font + (size 1 1) + ) + ) + ) + (number "4" + (effects + (font + (size 1 1) + ) + ) + ) + ) + (pin unspecified line + (at -5.08 -7.62 90) + (length 2.54) + (name "1" + (effects + (font + (size 1 1) + ) + ) + ) + (number "1" + (effects + (font + (size 1 1) + ) + ) + ) + ) + (pin unspecified line + (at 2.54 7.62 270) + (length 1.27) + (name "3" + (effects + (font + (size 1 1) + ) + ) + ) + (number "3" + (effects + (font + (size 1 1) + ) + ) + ) + ) + (pin unspecified line + (at 2.54 -7.62 90) + (length 1.27) + (name "2" + (effects + (font + (size 1 1) + ) + ) + ) + (number "2" + (effects + (font + (size 1 1) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Diodes:LED,0805,Green" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 2.032 0.834 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Green" + (at 2.032 -1.2122 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:D_0805" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_1806151820_Hubei-KENTO-Elec-KT-0805G_C2297.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Emerald 0805 LED Indication - Discrete ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C2297" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "2062782" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.014USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Optoelectronics,Light Emitting Diodes (LED)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Hubei KENTO Elec" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "KT-0805G" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Emitted Color" "Emerald" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "D_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LED,0805,Green_0_1" + (polyline + (pts + (xy -1.905 0) (xy -3.429 1.524) (xy -3.429 1.016) (xy -3.429 1.524) (xy -2.921 1.524) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.905 -1.27) (xy -3.429 0.254) (xy -3.429 -0.254) (xy -3.429 0.254) (xy -2.921 0.254) + ) + (stroke + (width 0.127) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 1.27) (xy 0 -1.27) (xy 1.27 1.27) (xy -1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy -1.27 -1.27) (xy 1.27 -1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "LED,0805,Green_1_1" + (pin passive line + (at 0 3.81 270) + (length 3.81) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 3.81) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Diodes:Schottky,B0540WS" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "D" + (at 2.032 0.834 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "B0540WS" + (at 2.032 -1.2122 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:D_SOD-323" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://wmsc.lcsc.com/wmsc/upload/file/pdf/v2/lcsc/2308281514_hongjiacheng-B0540WS_C7420326.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "40V Independent Type 500mA 510mV@500mA SOD-323 Schottky Diodes ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C7420326" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "261810" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.018USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "6" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Preferred Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Diodes,Schottky Barrier Diodes (SBD)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "hongjiacheng" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "B0540WS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "D_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Schottky,B0540WS_0_1" + (polyline + (pts + (xy -1.27 1.27) (xy 0 -1.27) (xy 1.27 1.27) (xy -1.27 1.27) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0.635 -1.905) (xy 1.27 -1.905) (xy 1.27 -1.27) (xy -1.27 -1.27) (xy -1.27 -0.635) (xy -0.635 -0.635) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Schottky,B0540WS_1_1" + (pin passive line + (at 0 3.81 270) + (length 3.81) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -3.81 90) + (length 3.81) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Extended:Connector, USB-TYPE-C-16P" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "J" + (at 2.54 2.54 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Connector, USB-TYPE-C-16P" + (at 2.54 -1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "PCM_JLCPCB:TYPE-C-SMD_HX-TYPE-C-16PIN" + (at 0 -10.16 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20220920/0EF8F885FCCEA71F60E9E85152155021.pdf" + (at -2.286 0.127 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "3A 1 Horizontal attachment 16P Female -25℃~+85℃ Type-C SMD USB Connectors ROHS" + (at 2.54 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C2927039" + (at 2.54 1.27 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "C2927039" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "Connector, USB-TYPE-C-16P_0_0" + (rectangle + (start -0.254 -17.78) + (end 0.254 -16.764) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 15.494) + (end 9.144 14.986) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 10.414) + (end 9.144 9.906) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 7.874) + (end 9.144 7.366) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 2.794) + (end 9.144 2.286) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 0.254) + (end 9.144 -0.254) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -2.286) + (end 9.144 -2.794) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -4.826) + (end 9.144 -5.334) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -12.446) + (end 9.144 -12.954) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start 10.16 -14.986) + (end 9.144 -15.494) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "Connector, USB-TYPE-C-16P_0_1" + (rectangle + (start -10.16 17.78) + (end 10.16 -17.78) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + (polyline + (pts + (xy -8.89 -3.81) (xy -8.89 3.81) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (rectangle + (start -7.62 -3.81) + (end -6.35 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (arc + (start -7.62 3.81) + (mid -6.985 4.4423) + (end -6.35 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -7.62 3.81) + (mid -6.985 4.4423) + (end -6.35 3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (arc + (start -8.89 3.81) + (mid -6.985 5.7067) + (end -5.08 3.81) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -5.08 -3.81) + (mid -6.985 -5.7067) + (end -8.89 -3.81) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -6.35 -3.81) + (mid -6.985 -4.4423) + (end -7.62 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + (arc + (start -6.35 -3.81) + (mid -6.985 -4.4423) + (end -7.62 -3.81) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -5.08 3.81) (xy -5.08 -3.81) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center -2.54 1.143) + (radius 0.635) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy -1.27 4.318) (xy 0 6.858) (xy 1.27 4.318) (xy -1.27 4.318) + ) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + (polyline + (pts + (xy 0 -2.032) (xy 2.54 0.508) (xy 2.54 1.778) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -3.302) (xy -2.54 -0.762) (xy -2.54 0.508) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 -5.842) (xy 0 4.318) + ) + (stroke + (width 0.508) + (type default) + ) + (fill + (type none) + ) + ) + (circle + (center 0 -5.842) + (radius 1.27) + (stroke + (width 0) + (type default) + ) + (fill + (type outline) + ) + ) + (rectangle + (start 1.905 1.778) + (end 3.175 3.048) + (stroke + (width 0.254) + (type default) + ) + (fill + (type outline) + ) + ) + ) + (symbol "Connector, USB-TYPE-C-16P_1_1" + (pin passive line + (at -7.62 -22.86 90) + (length 5.08) + (name "SHIELD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "S1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 5.08) + (hide yes) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A12B1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -22.86 90) + (length 5.08) + (name "GND" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B12A1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 15.24 180) + (length 5.08) + (hide yes) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A9B4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 15.24 15.24 180) + (length 5.08) + (name "VBUS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B9A4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 10.16 180) + (length 5.08) + (name "CC1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 7.62 180) + (length 5.08) + (name "CC2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 2.54 180) + (length 5.08) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 0 180) + (length 5.08) + (name "D-" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -2.54 180) + (length 5.08) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -5.08 180) + (length 5.08) + (name "D+" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -12.7 180) + (length 5.08) + (name "SBU1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "A8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 15.24 -15.24 180) + (length 5.08) + (name "SBU2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "B8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-MCUs:STM32F103C8T6" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at -12.7 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "STM32F103C8T6" + (at 10.16 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:LQFP-48_7x7mm_P0.5mm" + (at -12.7 -35.56 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f103c8.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "32Bit, 72MHz, 64KB Flash, 20KB RAM, 2.0-3.6V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C8734" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "1.086USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "207004" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "1" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "0" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Preferred Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Embedded Processors & Controllers,ST Microelectronics" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "STMicroelectronics" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "STM32F103C8T6" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Adc (Bit)" "12bit" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Low-Voltage Detect" "Yes" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Universal Serial Bus" "Yes" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Direct Memory Access" "Yes" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Watchdog" "Yes" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Program Storage Size" "64KB" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Cpu Maximum Speed" "72MHz" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Gpio Ports Number" "37" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Internal Oscillator" "Yes" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Infrared Data Association" "Yes" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Voltage Range" "2V~3.6V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Ram Size" "20KB" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Cpu Core" "ARM-M3" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-40°C~+85°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Program Memory Type" "FLASH" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Peripheral/Function" "DMA;On-chip temperature sensor;WDT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Low Voltage Detection Threshold" "2V~3.6V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "Arm Cortex-M3 STM32F1 STM32F103" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "LQFP*7x7mm*P0.5mm*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "STM32F103C8T6_0_1" + (rectangle + (start -12.7 -35.56) + (end 15.24 38.1) + (stroke + (width 0.254) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "STM32F103C8T6_1_1" + (pin input line + (at -15.24 35.56 0) + (length 2.54) + (name "NRST" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin input line + (at -15.24 30.48 0) + (length 2.54) + (name "BOOT0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "44" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 25.4 0) + (length 2.54) + (name "PD0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "RCC_OSC_IN" bidirectional line) + ) + (pin bidirectional line + (at -15.24 22.86 0) + (length 2.54) + (name "PD1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "RCC_OSC_OUT" bidirectional line) + ) + (pin bidirectional line + (at -15.24 17.78 0) + (length 2.54) + (name "PC13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "RTC_OUT" bidirectional line) + (alternate "RTC_TAMPER" bidirectional line) + ) + (pin bidirectional line + (at -15.24 15.24 0) + (length 2.54) + (name "PC14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "RCC_OSC32_IN" bidirectional line) + ) + (pin bidirectional line + (at -15.24 12.7 0) + (length 2.54) + (name "PC15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_EXTI15" bidirectional line) + (alternate "ADC2_EXTI15" bidirectional line) + (alternate "RCC_OSC32_OUT" bidirectional line) + ) + (pin bidirectional line + (at -15.24 7.62 0) + (length 2.54) + (name "PB0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "18" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_IN8" bidirectional line) + (alternate "ADC2_IN8" bidirectional line) + (alternate "TIM1_CH2N" bidirectional line) + (alternate "TIM3_CH3" bidirectional line) + ) + (pin bidirectional line + (at -15.24 5.08 0) + (length 2.54) + (name "PB1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "19" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_IN9" bidirectional line) + (alternate "ADC2_IN9" bidirectional line) + (alternate "TIM1_CH3N" bidirectional line) + (alternate "TIM3_CH4" bidirectional line) + ) + (pin bidirectional line + (at -15.24 2.54 0) + (length 2.54) + (name "PB2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "20" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at -15.24 0 0) + (length 2.54) + (name "PB3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "39" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "SPI1_SCK" bidirectional line) + (alternate "SYS_JTDO-TRACESWO" bidirectional line) + (alternate "TIM2_CH2" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -2.54 0) + (length 2.54) + (name "PB4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "40" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "SPI1_MISO" bidirectional line) + (alternate "SYS_NJTRST" bidirectional line) + (alternate "TIM3_CH1" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -5.08 0) + (length 2.54) + (name "PB5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "41" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "I2C1_SMBA" bidirectional line) + (alternate "SPI1_MOSI" bidirectional line) + (alternate "TIM3_CH2" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -7.62 0) + (length 2.54) + (name "PB6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "42" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "I2C1_SCL" bidirectional line) + (alternate "TIM4_CH1" bidirectional line) + (alternate "USART1_TX" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -10.16 0) + (length 2.54) + (name "PB7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "43" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "I2C1_SDA" bidirectional line) + (alternate "TIM4_CH2" bidirectional line) + (alternate "USART1_RX" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -12.7 0) + (length 2.54) + (name "PB8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "45" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "CAN_RX" bidirectional line) + (alternate "I2C1_SCL" bidirectional line) + (alternate "TIM4_CH3" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -15.24 0) + (length 2.54) + (name "PB9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "46" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "CAN_TX" bidirectional line) + (alternate "I2C1_SDA" bidirectional line) + (alternate "TIM4_CH4" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -17.78 0) + (length 2.54) + (name "PB10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "21" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "I2C2_SCL" bidirectional line) + (alternate "TIM2_CH3" bidirectional line) + (alternate "USART3_TX" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -20.32 0) + (length 2.54) + (name "PB11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "22" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_EXTI11" bidirectional line) + (alternate "ADC2_EXTI11" bidirectional line) + (alternate "I2C2_SDA" bidirectional line) + (alternate "TIM2_CH4" bidirectional line) + (alternate "USART3_RX" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -22.86 0) + (length 2.54) + (name "PB12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "25" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "I2C2_SMBA" bidirectional line) + (alternate "SPI2_NSS" bidirectional line) + (alternate "TIM1_BKIN" bidirectional line) + (alternate "USART3_CK" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -25.4 0) + (length 2.54) + (name "PB13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "26" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "SPI2_SCK" bidirectional line) + (alternate "TIM1_CH1N" bidirectional line) + (alternate "USART3_CTS" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -27.94 0) + (length 2.54) + (name "PB14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "27" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "SPI2_MISO" bidirectional line) + (alternate "TIM1_CH2N" bidirectional line) + (alternate "USART3_RTS" bidirectional line) + ) + (pin bidirectional line + (at -15.24 -30.48 0) + (length 2.54) + (name "PB15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "28" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_EXTI15" bidirectional line) + (alternate "ADC2_EXTI15" bidirectional line) + (alternate "SPI2_MOSI" bidirectional line) + (alternate "TIM1_CH3N" bidirectional line) + ) + (pin power_in line + (at -2.54 40.64 270) + (length 2.54) + (name "VBAT" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 40.64 270) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "24" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 0 -38.1 90) + (length 2.54) + (name "VSS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "23" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -38.1 90) + (length 2.54) + (hide yes) + (name "VSS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "35" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin passive line + (at 0 -38.1 90) + (length 2.54) + (hide yes) + (name "VSS" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "47" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 40.64 270) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "36" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 2.54 -38.1 90) + (length 2.54) + (name "VSSA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 5.08 40.64 270) + (length 2.54) + (name "VDD" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "48" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin power_in line + (at 7.62 40.64 270) + (length 2.54) + (name "VDDA" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + (pin bidirectional line + (at 17.78 35.56 180) + (length 2.54) + (name "PA0" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_IN0" bidirectional line) + (alternate "ADC2_IN0" bidirectional line) + (alternate "SYS_WKUP" bidirectional line) + (alternate "TIM2_CH1" bidirectional line) + (alternate "TIM2_ETR" bidirectional line) + (alternate "USART2_CTS" bidirectional line) + ) + (pin bidirectional line + (at 17.78 33.02 180) + (length 2.54) + (name "PA1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_IN1" bidirectional line) + (alternate "ADC2_IN1" bidirectional line) + (alternate "TIM2_CH2" bidirectional line) + (alternate "USART2_RTS" bidirectional line) + ) + (pin bidirectional line + (at 17.78 30.48 180) + (length 2.54) + (name "PA2" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_IN2" bidirectional line) + (alternate "ADC2_IN2" bidirectional line) + (alternate "TIM2_CH3" bidirectional line) + (alternate "USART2_TX" bidirectional line) + ) + (pin bidirectional line + (at 17.78 27.94 180) + (length 2.54) + (name "PA3" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_IN3" bidirectional line) + (alternate "ADC2_IN3" bidirectional line) + (alternate "TIM2_CH4" bidirectional line) + (alternate "USART2_RX" bidirectional line) + ) + (pin bidirectional line + (at 17.78 25.4 180) + (length 2.54) + (name "PA4" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_IN4" bidirectional line) + (alternate "ADC2_IN4" bidirectional line) + (alternate "SPI1_NSS" bidirectional line) + (alternate "USART2_CK" bidirectional line) + ) + (pin bidirectional line + (at 17.78 22.86 180) + (length 2.54) + (name "PA5" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_IN5" bidirectional line) + (alternate "ADC2_IN5" bidirectional line) + (alternate "SPI1_SCK" bidirectional line) + ) + (pin bidirectional line + (at 17.78 20.32 180) + (length 2.54) + (name "PA6" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "16" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_IN6" bidirectional line) + (alternate "ADC2_IN6" bidirectional line) + (alternate "SPI1_MISO" bidirectional line) + (alternate "TIM1_BKIN" bidirectional line) + (alternate "TIM3_CH1" bidirectional line) + ) + (pin bidirectional line + (at 17.78 17.78 180) + (length 2.54) + (name "PA7" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "17" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_IN7" bidirectional line) + (alternate "ADC2_IN7" bidirectional line) + (alternate "SPI1_MOSI" bidirectional line) + (alternate "TIM1_CH1N" bidirectional line) + (alternate "TIM3_CH2" bidirectional line) + ) + (pin bidirectional line + (at 17.78 15.24 180) + (length 2.54) + (name "PA8" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "29" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "RCC_MCO" bidirectional line) + (alternate "TIM1_CH1" bidirectional line) + (alternate "USART1_CK" bidirectional line) + ) + (pin bidirectional line + (at 17.78 12.7 180) + (length 2.54) + (name "PA9" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "30" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "TIM1_CH2" bidirectional line) + (alternate "USART1_TX" bidirectional line) + ) + (pin bidirectional line + (at 17.78 10.16 180) + (length 2.54) + (name "PA10" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "31" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "TIM1_CH3" bidirectional line) + (alternate "USART1_RX" bidirectional line) + ) + (pin bidirectional line + (at 17.78 7.62 180) + (length 2.54) + (name "PA11" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "32" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_EXTI11" bidirectional line) + (alternate "ADC2_EXTI11" bidirectional line) + (alternate "CAN_RX" bidirectional line) + (alternate "TIM1_CH4" bidirectional line) + (alternate "USART1_CTS" bidirectional line) + (alternate "USB_DM" bidirectional line) + ) + (pin bidirectional line + (at 17.78 5.08 180) + (length 2.54) + (name "PA12" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "33" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "CAN_TX" bidirectional line) + (alternate "TIM1_ETR" bidirectional line) + (alternate "USART1_RTS" bidirectional line) + (alternate "USB_DP" bidirectional line) + ) + (pin bidirectional line + (at 17.78 2.54 180) + (length 2.54) + (name "PA13" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "34" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "SYS_JTMS-SWDIO" bidirectional line) + ) + (pin bidirectional line + (at 17.78 0 180) + (length 2.54) + (name "PA14" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "37" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "SYS_JTCK-SWCLK" bidirectional line) + ) + (pin bidirectional line + (at 17.78 -2.54 180) + (length 2.54) + (name "PA15" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "38" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (alternate "ADC1_EXTI15" bidirectional line) + (alternate "ADC2_EXTI15" bidirectional line) + (alternate "SPI1_NSS" bidirectional line) + (alternate "SYS_JTDI" bidirectional line) + (alternate "TIM2_CH1" bidirectional line) + (alternate "TIM2_ETR" bidirectional line) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Power:LDO, 3.3V, 0.2A" + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "U" + (at 0 8.89 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "XC6206P332MR" + (at 0 6.35 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:SOT-23-3_L2.9-W1.6-P1.90-LS2.8-BR" + (at 0 -10.16 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Torex-Semicon-XC6206P332MR-G_C5446.pdf" + (at -2.286 0.127 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "200mA Fixed 3.3V Positive electrode 6V SOT-23-3L Voltage Regulators - Linear, Low Drop Out (LDO) Regulators ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C5446" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "517770" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.103USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "5" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "2" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Power Management ICs,Linear Voltage Regulators (LDO)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Torex Semicon" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "XC6206P332MR-G" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Number Of Outputs" "1" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Output Voltage" "3.3V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Dropout Voltage" "680mV@(100mA)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Output Current" "200mA" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Output Type" "Fixed" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Maximum Input Voltage" "6V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Output Polarity" "Positive electrode" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Feature" "Low ESR;Overcurrent Protection(OCP)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_keywords" "C5446" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "LDO, 3.3V, 0.2A_0_1" + (rectangle + (start -5.08 5.08) + (end 5.08 -2.54) + (stroke + (width 0) + (type default) + ) + (fill + (type background) + ) + ) + ) + (symbol "LDO, 3.3V, 0.2A_1_1" + (pin unspecified line + (at -7.62 2.54 0) + (length 2.56) + (name "VIN" + (effects + (font + (size 1 1) + ) + ) + ) + (number "3" + (effects + (font + (size 1 1) + ) + ) + ) + ) + (pin unspecified line + (at 0 -5.08 90) + (length 2.56) + (name "GND" + (effects + (font + (size 1 1) + ) + ) + ) + (number "1" + (effects + (font + (size 1 1) + ) + ) + ) + ) + (pin unspecified line + (at 7.62 2.54 180) + (length 2.56) + (name "VOUT" + (effects + (font + (size 1 1) + ) + ) + ) + (number "2" + (effects + (font + (size 1 1) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Resistors:0402,1.5kΩ" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 1.778 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1.5kΩ" + (at 0 0 90) + (do_not_autoplace) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2206010045_UNI-ROYAL-Uniroyal-Elec-0402WGF1501TCE_C25867.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 1.5kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25867" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "1178558" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF1501TCE" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "1.5kΩ" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "0402,1.5kΩ_0_1" + (rectangle + (start -1.016 2.54) + (end 1.016 -2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "0402,1.5kΩ_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) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Resistors:0402,10kΩ" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 1.778 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10kΩ" + (at 0 0 90) + (do_not_autoplace) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2411221126_UNI-ROYAL-Uniroyal-Elec-0402WGF1002TCE_C25744.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 10kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25744" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "24372091" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF1002TCE" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "10kΩ" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "0402,10kΩ_0_1" + (rectangle + (start -1.016 2.54) + (end 1.016 -2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "0402,10kΩ_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) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Resistors:0402,150Ω" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 1.778 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "150Ω" + (at 0 0 90) + (do_not_autoplace) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2205311900_UNI-ROYAL-Uniroyal-Elec-0402WGF1500TCE_C25082.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 150Ω 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25082" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "487873" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Preferred Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF1500TCE" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "150Ω" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "0402,150Ω_0_1" + (rectangle + (start -1.016 2.54) + (end 1.016 -2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "0402,150Ω_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) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Resistors:0402,330Ω" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 1.778 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "330Ω" + (at 0 0 90) + (do_not_autoplace) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2205311900_UNI-ROYAL-Uniroyal-Elec-0402WGF3300TCE_C25104.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 330Ω 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25104" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "1159127" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF3300TCE" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "330Ω" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "0402,330Ω_0_1" + (rectangle + (start -1.016 2.54) + (end 1.016 -2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "0402,330Ω_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) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "PCM_JLCPCB-Resistors:0402,5.1kΩ" + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "R" + (at 1.778 0 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "5.1kΩ" + (at 0 0 90) + (do_not_autoplace) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at -1.778 0 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2206010045_UNI-ROYAL-Uniroyal-Elec-0402WGF5101TCE_C25905.pdf" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 5.1kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25905" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "3534773" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF5101TCE" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "5.1kΩ" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "ki_fp_filters" "R_*" + (at 0 0 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (symbol "0402,5.1kΩ_0_1" + (rectangle + (start -1.016 2.54) + (end 1.016 -2.54) + (stroke + (width 0.254) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "0402,5.1kΩ_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) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "power:+3.3V" + (power) + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 0 3.556 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 \"+3.3V\"" + (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 "+3.3V_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+3.3V_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "power:+5V" + (power) + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 0 3.556 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 \"+5V\"" + (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 "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "+5V_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "power:GND" + (power) + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + (hide yes) + ) + (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" "GND" + (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 \"GND\" , 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 "GND_0_1" + (polyline + (pts + (xy 0 0) (xy 0 -1.27) (xy 1.27 -1.27) (xy 0 -2.54) (xy -1.27 -1.27) (xy 0 -1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "GND_1_1" + (pin power_in line + (at 0 0 270) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + (symbol "power:VBUS" + (power) + (pin_numbers + (hide yes) + ) + (pin_names + (offset 0) + (hide yes) + ) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (property "Reference" "#PWR" + (at 0 -3.81 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VBUS" + (at 0 3.556 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 \"VBUS\"" + (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 "VBUS_0_1" + (polyline + (pts + (xy -0.762 1.27) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 2.54) (xy 0.762 1.27) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + (polyline + (pts + (xy 0 0) (xy 0 2.54) + ) + (stroke + (width 0) + (type default) + ) + (fill + (type none) + ) + ) + ) + (symbol "VBUS_1_1" + (pin power_in line + (at 0 0 90) + (length 0) + (name "~" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (number "1" + (effects + (font + (size 1.27 1.27) + ) + ) + ) + ) + ) + (embedded_fonts no) + ) + ) + (text "NJTRST - internet says do not use" + (exclude_from_sim no) + (at 212.344 98.298 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "0de98a85-2cf7-4432-8650-a2f6ff1bb2bd") + ) + (text "Unused GPIOs" + (exclude_from_sim no) + (at 192.786 95.504 0) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "51c5eb60-337e-43b4-95ae-026a33312373") + ) + (text "Reset" + (exclude_from_sim no) + (at 123.19 24.384 90) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "9a0703c5-db31-4511-9301-5a1903bf4966") + ) + (text "4.7uF must be placed at VDD3 (pin 48)\n100 nF at pins 1, 9, 24, 36, 48\n1uF must be placed at VDDA (pin 9)" + (exclude_from_sim no) + (at 200.152 23.114 0) + (effects + (font + (size 1.016 1.016) + ) + ) + (uuid "c7e8d18a-83ac-42b2-b506-7ba9b37b65f6") + ) + (text "16 MHz" + (exclude_from_sim no) + (at 129.54 45.212 90) + (effects + (font + (size 0.762 0.762) + ) + ) + (uuid "d70d4257-6159-4ffa-9b12-2196703641cd") + ) + (text "BOOT" + (exclude_from_sim no) + (at 83.566 64.77 90) + (effects + (font + (size 1.27 1.27) + ) + ) + (uuid "ff9fd2b2-9856-4537-9308-a463976340e4") + ) + (junction + (at 203.2 25.4) + (diameter 0) + (color 0 0 0 0) + (uuid "065d8a08-0cc0-4d88-93a7-88b3b725b494") + ) + (junction + (at 50.8 31.75) + (diameter 0) + (color 0 0 0 0) + (uuid "103c7078-b091-486c-9961-270d20c5fa4e") + ) + (junction + (at 105.41 54.61) + (diameter 0) + (color 0 0 0 0) + (uuid "15413b07-760e-4612-bdb9-0c7dc4b805d0") + ) + (junction + (at 213.36 25.4) + (diameter 0) + (color 0 0 0 0) + (uuid "1601b92f-71d9-4d86-992f-e61561130e14") + ) + (junction + (at 222.25 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "19a2cf5b-9725-4a3c-8b9f-e3c7c652bc31") + ) + (junction + (at 105.41 64.77) + (diameter 0) + (color 0 0 0 0) + (uuid "22183a79-352a-418e-9410-a081164910ab") + ) + (junction + (at 203.2 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "2256fbd7-88da-4f86-8f52-e23ea7cebfa7") + ) + (junction + (at 162.56 116.84) + (diameter 0) + (color 0 0 0 0) + (uuid "22ab1ee4-2596-4380-9289-7f99fefe9254") + ) + (junction + (at 138.43 22.86) + (diameter 0) + (color 0 0 0 0) + (uuid "3168e21e-0f18-4020-9e1f-501e6a239c70") + ) + (junction + (at 116.84 54.61) + (diameter 0) + (color 0 0 0 0) + (uuid "31dc9896-b36e-4eb4-8221-3d36e75247b5") + ) + (junction + (at 170.18 25.4) + (diameter 0) + (color 0 0 0 0) + (uuid "33557d0c-5f70-4546-b478-094749793f07") + ) + (junction + (at 60.96 24.13) + (diameter 0) + (color 0 0 0 0) + (uuid "39379791-c3bd-42da-9fb4-e87dd35b049b") + ) + (junction + (at 135.89 45.72) + (diameter 0) + (color 0 0 0 0) + (uuid "3bd1067e-9fd9-4086-965a-3281a748804c") + ) + (junction + (at 68.58 50.8) + (diameter 0) + (color 0 0 0 0) + (uuid "40f9cd4a-c934-47eb-b2ea-f151930eb46c") + ) + (junction + (at 185.42 25.4) + (diameter 0) + (color 0 0 0 0) + (uuid "421724ed-ba9d-40d5-ba96-d9a8c55a9714") + ) + (junction + (at 110.49 24.13) + (diameter 0) + (color 0 0 0 0) + (uuid "42ae7fa7-975c-4b9d-b61d-3b1757a0069f") + ) + (junction + (at 111.76 85.09) + (diameter 0) + (color 0 0 0 0) + (uuid "4d000e9b-0676-4130-8f84-9d575bbaad57") + ) + (junction + (at 97.79 34.29) + (diameter 0) + (color 0 0 0 0) + (uuid "620764c7-ce98-46b8-b03c-0dbce2e45af6") + ) + (junction + (at 167.64 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "66aac186-b291-4fe5-abe7-3a005b31ce99") + ) + (junction + (at 194.31 25.4) + (diameter 0) + (color 0 0 0 0) + (uuid "6725ce9c-ae8a-47d4-9e38-e905d0b3fd56") + ) + (junction + (at 87.63 24.13) + (diameter 0) + (color 0 0 0 0) + (uuid "6e235f37-832b-40f5-a0bf-3837196270f2") + ) + (junction + (at 194.31 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "77408af2-dee7-4b01-a160-e8b02254cd01") + ) + (junction + (at 185.42 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "7970cdca-f962-4fae-a2b9-79985e96f473") + ) + (junction + (at 138.43 33.02) + (diameter 0) + (color 0 0 0 0) + (uuid "8a7e82f3-8b14-42eb-be7f-be9905854acb") + ) + (junction + (at 41.91 44.45) + (diameter 0) + (color 0 0 0 0) + (uuid "8d4d15e1-4622-4cfe-b72c-4bf1da183c0d") + ) + (junction + (at 165.1 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "8ef48f3c-8372-4c96-90cc-688723088ee1") + ) + (junction + (at 162.56 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "a777e426-f8d4-4d8e-a435-9f441d9ef241") + ) + (junction + (at 41.91 36.83) + (diameter 0) + (color 0 0 0 0) + (uuid "b5ab0001-2136-4ab1-bc5c-218a0e327219") + ) + (junction + (at 115.57 64.77) + (diameter 0) + (color 0 0 0 0) + (uuid "b9cee908-3d90-4d61-9acc-17cc3c752272") + ) + (junction + (at 176.53 25.4) + (diameter 0) + (color 0 0 0 0) + (uuid "ba64f704-a023-4e84-b7c2-d42a5b748be0") + ) + (junction + (at 213.36 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "c4958850-2520-437e-aee3-6ff0c9affc38") + ) + (junction + (at 170.18 35.56) + (diameter 0) + (color 0 0 0 0) + (uuid "c899ae2f-4d41-4937-83b2-60035a1b6714") + ) + (junction + (at 204.47 72.39) + (diameter 0) + (color 0 0 0 0) + (uuid "d030c756-8d9e-47a4-b01d-db1461876246") + ) + (junction + (at 111.76 72.39) + (diameter 0) + (color 0 0 0 0) + (uuid "dd713638-8330-4d4e-9166-53531f6c61f5") + ) + (junction + (at 17.78 67.31) + (diameter 0) + (color 0 0 0 0) + (uuid "e7fa8d3e-ffba-42d6-be8b-be07b35b23f8") + ) + (junction + (at 222.25 25.4) + (diameter 0) + (color 0 0 0 0) + (uuid "f3a73adf-cd0b-42b8-83a3-441222f4b673") + ) + (junction + (at 68.58 33.02) + (diameter 0) + (color 0 0 0 0) + (uuid "ffcf2942-a867-4fb0-9195-2750b27e5bee") + ) + (no_connect + (at 194.31 99.06) + (uuid "2fd8e26c-4b23-4d9a-af38-2827c630dbcc") + ) + (no_connect + (at 40.64 54.61) + (uuid "61e97ce0-595b-4816-b242-ef03e6c1d88d") + ) + (no_connect + (at 40.64 52.07) + (uuid "e26ebe01-87ae-47ba-b97c-8ecb0eacd3b8") + ) + (wire + (pts + (xy 222.25 25.4) (xy 231.14 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0097b037-4430-45fb-946c-85f1fccc3d5c") + ) + (wire + (pts + (xy 134.62 22.86) (xy 138.43 22.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "01a399c0-6e15-4412-b830-f88338aed5c0") + ) + (wire + (pts + (xy 55.88 44.45) (xy 55.88 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "025f99fc-5cfb-481d-af4b-03cd703bb5eb") + ) + (wire + (pts + (xy 213.36 35.56) (xy 213.36 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0335a1b6-4505-4c65-aec4-b4419a7c90df") + ) + (wire + (pts + (xy 176.53 35.56) (xy 185.42 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "03b490e4-dd04-4143-a932-6702d34fa076") + ) + (wire + (pts + (xy 213.36 35.56) (xy 213.36 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "04d76157-c9e0-4f02-8ce2-0e6d5c6f2f8f") + ) + (wire + (pts + (xy 105.41 24.13) (xy 110.49 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0515086f-5e22-49a5-8cf4-bf8e1000405c") + ) + (wire + (pts + (xy 203.2 25.4) (xy 213.36 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "054c11d5-3d3c-4a03-aecc-6f4cf8aaead7") + ) + (wire + (pts + (xy 87.63 33.02) (xy 87.63 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "070387b7-ff1c-4274-a63e-8e3660f735e1") + ) + (wire + (pts + (xy 49.53 31.75) (xy 50.8 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "080f2a0c-6364-4bc3-9dbe-a067f2dfae67") + ) + (wire + (pts + (xy 87.63 34.29) (xy 97.79 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0916beaf-0094-4039-ab6a-f282d0a67c2e") + ) + (wire + (pts + (xy 97.79 34.29) (xy 97.79 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "09549a0d-a9e2-4c94-82cd-ab6ed0a441ae") + ) + (wire + (pts + (xy 203.2 35.56) (xy 213.36 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0959e677-dfa9-4599-8694-5c5972fb2803") + ) + (wire + (pts + (xy 105.41 64.77) (xy 115.57 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0a416143-23ac-4545-8eef-ae880ecaf102") + ) + (wire + (pts + (xy 116.84 50.8) (xy 116.84 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0bbe351f-858d-4703-9800-dfa250a21279") + ) + (wire + (pts + (xy 180.34 69.85) (xy 205.74 69.85) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0c716ca3-2f56-4720-b4fb-38ed53141421") + ) + (wire + (pts + (xy 170.18 25.4) (xy 170.18 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "0dc1b9f6-fd19-4414-bbc7-a91b4ad0c94b") + ) + (wire + (pts + (xy 162.56 116.84) (xy 165.1 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1130cc5e-8c8f-4bba-8f88-734b69ea4242") + ) + (wire + (pts + (xy 40.64 36.83) (xy 41.91 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "12413652-0b9f-4790-a2a4-29086e8028a6") + ) + (wire + (pts + (xy 77.47 33.02) (xy 77.47 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1267a572-437c-4566-901f-822f6affe4ba") + ) + (wire + (pts + (xy 185.42 25.4) (xy 185.42 26.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "13c4b3f7-53e7-4d41-bcbc-cab04e3563b1") + ) + (wire + (pts + (xy 134.62 33.02) (xy 138.43 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "170ad039-596f-4980-8d32-15cf9b269ed2") + ) + (wire + (pts + (xy 194.31 34.29) (xy 194.31 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "182e5232-0c66-4c2a-b93d-96a3c0e83063") + ) + (wire + (pts + (xy 180.34 62.23) (xy 220.98 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "199197cb-5c7d-4b75-a7f4-03731f27ec87") + ) + (wire + (pts + (xy 49.53 29.21) (xy 50.8 29.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1b92e1a4-a62e-4999-bf30-81ac6f03a045") + ) + (wire + (pts + (xy 68.58 49.53) (xy 68.58 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1c618875-916e-4473-b51f-fbc7fb6be22e") + ) + (wire + (pts + (xy 170.18 25.4) (xy 176.53 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1d39a21f-7fb8-40b4-a13a-05bc329a7dfe") + ) + (wire + (pts + (xy 110.49 19.05) (xy 110.49 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1e84ca28-2ec2-4e4e-82ca-93dce779b195") + ) + (wire + (pts + (xy 17.78 62.23) (xy 17.78 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "1f7b27e2-730c-4e88-b93d-8646c59b1bf4") + ) + (wire + (pts + (xy 31.75 116.84) (xy 46.99 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "212f67e9-6148-4350-97ab-ac8bf9b0c148") + ) + (wire + (pts + (xy 176.53 25.4) (xy 185.42 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "21ff2cbd-ece2-4314-af13-f0b02aefb6b3") + ) + (wire + (pts + (xy 185.42 34.29) (xy 185.42 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "223195bf-982a-47bf-b7a1-05cafeb5433d") + ) + (wire + (pts + (xy 194.31 74.93) (xy 194.31 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "258b7637-24cf-44b1-944f-558602ab9940") + ) + (wire + (pts + (xy 106.68 41.91) (xy 105.41 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2940b18d-0e4b-44f8-a084-c9f4a533d28b") + ) + (wire + (pts + (xy 180.34 74.93) (xy 194.31 74.93) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2c503e6f-8d32-46eb-ab74-8d2fc071f6a6") + ) + (wire + (pts + (xy 41.91 36.83) (xy 55.88 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2cabf226-415f-4a5f-911f-fc9459423348") + ) + (wire + (pts + (xy 40.64 29.21) (xy 41.91 29.21) + ) + (stroke + (width 0) + (type default) + ) + (uuid "2ec23ed1-7b31-4876-9b3e-68d82f31f9a1") + ) + (wire + (pts + (xy 204.47 72.39) (xy 205.74 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "30ec33a5-b646-405b-978c-70c5609ceeb1") + ) + (wire + (pts + (xy 40.64 24.13) (xy 60.96 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3187461c-d0a8-464d-98eb-213fcea72b62") + ) + (wire + (pts + (xy 191.77 99.06) (xy 194.31 99.06) + ) + (stroke + (width 0) + (type default) + ) + (uuid "32236a9c-30d4-42a8-8fa6-3ef673c95b64") + ) + (wire + (pts + (xy 105.41 66.04) (xy 105.41 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3455cfc2-b98b-4e08-93da-14d84a0d30da") + ) + (wire + (pts + (xy 162.56 116.84) (xy 162.56 118.11) + ) + (stroke + (width 0) + (type default) + ) + (uuid "345ad477-02fa-4d31-9efe-bcc6f2559e7c") + ) + (wire + (pts + (xy 203.2 34.29) (xy 203.2 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "348ba0ac-8c92-4d0a-acb7-ec44b778b247") + ) + (wire + (pts + (xy 134.62 24.13) (xy 134.62 22.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "364ed3ba-985f-4b25-a7e7-32aa150174dc") + ) + (wire + (pts + (xy 220.98 80.01) (xy 220.98 81.28) + ) + (stroke + (width 0) + (type default) + ) + (uuid "371470ff-1404-48bd-9243-660b7f58cbe8") + ) + (wire + (pts + (xy 55.88 33.02) (xy 68.58 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "37d82733-bf15-4813-a930-80c99bd97352") + ) + (wire + (pts + (xy 114.3 111.76) (xy 99.06 111.76) + ) + (stroke + (width 0) + (type default) + ) + (uuid "385beb60-4fe4-4cd3-948b-867d317a9935") + ) + (wire + (pts + (xy 170.18 35.56) (xy 170.18 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3be7f800-4021-4a45-a761-a596f8f144aa") + ) + (wire + (pts + (xy 220.98 71.12) (xy 220.98 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "3f809cb4-0527-489a-9dac-70c3ca52fa9a") + ) + (wire + (pts + (xy 25.4 67.31) (xy 25.4 62.23) + ) + (stroke + (width 0) + (type default) + ) + (uuid "40f8939b-0785-4ada-a543-c82c5669a1b1") + ) + (wire + (pts + (xy 111.76 72.39) (xy 138.43 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "434f09b7-54f7-441e-8876-c781ee887611") + ) + (wire + (pts + (xy 55.88 36.83) (xy 55.88 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "46f8deeb-caad-4424-9499-0c11808603cb") + ) + (wire + (pts + (xy 147.32 46.99) (xy 138.43 46.99) + ) + (stroke + (width 0) + (type default) + ) + (uuid "476d73e8-0433-4fa3-a3da-b352adea2c0d") + ) + (wire + (pts + (xy 213.36 35.56) (xy 222.25 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "49a21735-870a-4e5f-85a5-bb8c80248446") + ) + (wire + (pts + (xy 111.76 72.39) (xy 111.76 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "4d00e364-1bd6-4eb7-9eae-4dffd132e4ef") + ) + (wire + (pts + (xy 110.49 34.29) (xy 97.79 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "51cf0bf4-f4e0-4c33-b39d-a40ffee22c2d") + ) + (wire + (pts + (xy 96.52 63.5) (xy 96.52 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5207621d-c25b-4b36-9b52-4e922fda3dbe") + ) + (wire + (pts + (xy 133.35 45.72) (xy 135.89 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "55ec3e1f-eaf9-48d7-984d-4fbcc3489f73") + ) + (wire + (pts + (xy 105.41 64.77) (xy 105.41 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "56ced05a-af91-4822-a88e-1fd969b3db06") + ) + (wire + (pts + (xy 114.3 54.61) (xy 116.84 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5926bfd7-bb33-4c3f-b86a-0d6a379dfaf6") + ) + (wire + (pts + (xy 194.31 25.4) (xy 185.42 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "593e1593-5ba3-4e65-aed3-72d4ab1e5b71") + ) + (wire + (pts + (xy 114.3 116.84) (xy 99.06 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "593e2651-fdab-40bc-a01e-0ce3da57d4f5") + ) + (wire + (pts + (xy 68.58 33.02) (xy 77.47 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5b97d234-e498-4d8b-80c5-25087c37c863") + ) + (wire + (pts + (xy 60.96 20.32) (xy 60.96 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "5f5bc9cd-f563-4fad-be54-78bdab75c228") + ) + (wire + (pts + (xy 213.36 25.4) (xy 222.25 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6083a791-9ce7-4fd8-816c-837580603d6b") + ) + (wire + (pts + (xy 165.1 35.56) (xy 165.1 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "60847e99-495e-4112-880b-f814aee5838f") + ) + (wire + (pts + (xy 114.3 154.94) (xy 99.06 154.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "60ec02ad-8b01-40dd-bd3c-76b4f7e4c1d4") + ) + (wire + (pts + (xy 110.49 33.02) (xy 110.49 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "625a30e7-9564-47a8-8c9f-7208fbb65b67") + ) + (wire + (pts + (xy 176.53 25.4) (xy 176.53 26.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "62cf9b78-46d6-488c-ae7a-113b09b3d341") + ) + (wire + (pts + (xy 40.64 41.91) (xy 41.91 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "643bbc9e-2b05-4175-8968-57a98c401ed5") + ) + (wire + (pts + (xy 114.3 129.54) (xy 99.06 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6449dbc7-12a0-4677-984d-6f0b63ee6f63") + ) + (wire + (pts + (xy 165.1 35.56) (xy 167.64 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6476b196-d7e0-4527-8a59-ede3b00abf97") + ) + (wire + (pts + (xy 162.56 35.56) (xy 165.1 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "68a14b13-3827-47ec-99e2-c6962b022a67") + ) + (wire + (pts + (xy 222.25 35.56) (xy 231.14 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6c658b45-4020-4105-963e-b3676651ba6d") + ) + (wire + (pts + (xy 204.47 50.8) (xy 204.47 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "6f456bcd-5d4d-471d-8e13-4ead500dc0d5") + ) + (wire + (pts + (xy 111.76 83.82) (xy 111.76 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "71e95f9f-6ec9-4d5a-876a-9f73ed21d449") + ) + (wire + (pts + (xy 115.57 64.77) (xy 134.62 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "73e47769-26b0-4b08-8758-a472b76152f9") + ) + (wire + (pts + (xy 222.25 25.4) (xy 222.25 26.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "794ab667-c11b-4dfa-a362-8da8bdbce002") + ) + (wire + (pts + (xy 146.05 41.91) (xy 147.32 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7a0c1037-10fe-4d94-80a9-a067a8220228") + ) + (wire + (pts + (xy 165.1 116.84) (xy 165.1 115.57) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7a45c7c6-fe16-4faf-b666-de1a35a6741c") + ) + (wire + (pts + (xy 194.31 25.4) (xy 194.31 26.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7c22b9eb-d6e1-429e-ad7e-66f60c5a577c") + ) + (wire + (pts + (xy 41.91 36.83) (xy 41.91 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "7c9eec9e-c747-4d50-8381-d15948de8d34") + ) + (wire + (pts + (xy 138.43 46.99) (xy 138.43 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "81d8f5c0-f239-4e87-82db-54a04d48fd56") + ) + (wire + (pts + (xy 134.62 33.02) (xy 134.62 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "85ce16ca-c2c7-43e9-b757-17791e05c255") + ) + (wire + (pts + (xy 87.63 24.13) (xy 87.63 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "88784411-f0ff-47fc-8395-fc5b74e6deca") + ) + (wire + (pts + (xy 134.62 50.8) (xy 134.62 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "88ec6734-e02f-4e96-8eef-7909f2a95585") + ) + (wire + (pts + (xy 106.68 54.61) (xy 105.41 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "89425256-6e23-45aa-861d-09d30ab10d1a") + ) + (wire + (pts + (xy 96.52 64.77) (xy 95.25 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8ab917fe-0a88-41e1-8227-5db2998ccc87") + ) + (wire + (pts + (xy 50.8 31.75) (xy 50.8 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8ac1172b-49cf-4729-82d7-4c44a1317776") + ) + (wire + (pts + (xy 162.56 35.56) (xy 162.56 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8b61a8ee-9183-4762-a892-38f93772fb54") + ) + (wire + (pts + (xy 160.02 35.56) (xy 162.56 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8cd46e7a-1013-439f-bf84-de2ebe9b4d59") + ) + (wire + (pts + (xy 68.58 33.02) (xy 68.58 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8eec735f-fd3f-4c75-a448-09687b31c790") + ) + (wire + (pts + (xy 180.34 72.39) (xy 204.47 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8f783960-9575-487d-b5df-a8b4e4c07913") + ) + (wire + (pts + (xy 50.8 29.21) (xy 50.8 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "8f8fd213-4471-4323-b070-8d637ffd645e") + ) + (wire + (pts + (xy 77.47 24.13) (xy 87.63 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "91c8da10-ccea-456b-ac64-1f17854e80c6") + ) + (wire + (pts + (xy 111.76 85.09) (xy 111.76 86.36) + ) + (stroke + (width 0) + (type default) + ) + (uuid "91e6f490-4c2c-40fa-bb65-7b33ff67c893") + ) + (wire + (pts + (xy 138.43 33.02) (xy 138.43 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "957be608-b024-4b9f-9954-bdcfeea0a048") + ) + (wire + (pts + (xy 114.3 41.91) (xy 135.89 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9610f41a-174e-4b23-a50b-78ec3609df28") + ) + (wire + (pts + (xy 176.53 34.29) (xy 176.53 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9a03175a-7f65-4cd6-a3d7-9ac4bd3ef52a") + ) + (wire + (pts + (xy 118.11 45.72) (xy 115.57 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9e301703-c39c-4c36-926f-9978f197300b") + ) + (wire + (pts + (xy 60.96 24.13) (xy 60.96 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9ece7b7b-3ce5-4614-8889-d228f80a72de") + ) + (wire + (pts + (xy 170.18 24.13) (xy 170.18 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "9f94deb8-f3e5-4fd5-bcb6-627f38bb2e8a") + ) + (wire + (pts + (xy 99.06 119.38) (xy 114.3 119.38) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a1ff2e65-29cd-4bff-8467-8448f3a52a47") + ) + (wire + (pts + (xy 231.14 25.4) (xy 231.14 26.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a53ff22a-13d9-4ec1-9ac8-0f70cb53e0ef") + ) + (wire + (pts + (xy 114.3 114.3) (xy 99.06 114.3) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a6e5fe24-7338-4132-ab2e-e15765defd5a") + ) + (wire + (pts + (xy 146.05 22.86) (xy 146.05 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a7ac0b92-8565-471f-8b72-b30223f713d6") + ) + (wire + (pts + (xy 204.47 59.69) (xy 204.47 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a832cf45-ef5d-4e25-a7df-75b2dd1aa2cc") + ) + (wire + (pts + (xy 105.41 54.61) (xy 105.41 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "a92bc40f-0094-4c69-899a-49a6dae6b7ae") + ) + (wire + (pts + (xy 17.78 67.31) (xy 17.78 68.58) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aa408401-686e-4243-92a8-8ca2f34ad7eb") + ) + (wire + (pts + (xy 135.89 45.72) (xy 135.89 41.91) + ) + (stroke + (width 0) + (type default) + ) + (uuid "aad93ab5-c463-4c2b-ba4c-75c4d8ecbae9") + ) + (wire + (pts + (xy 77.47 36.83) (xy 78.74 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "abd2cdd9-7019-4ba9-8830-0aa21b520789") + ) + (wire + (pts + (xy 31.75 129.54) (xy 46.99 129.54) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ac809e06-9f7e-4404-ac2f-24c6f4e46ed7") + ) + (wire + (pts + (xy 194.31 35.56) (xy 203.2 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b28a9049-19e9-4276-824a-2c282c5a92db") + ) + (wire + (pts + (xy 185.42 35.56) (xy 194.31 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b4392472-d169-41d6-bce0-df269c3cba02") + ) + (wire + (pts + (xy 87.63 19.05) (xy 87.63 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b4b17d82-abed-43a0-b91b-ac4a5ab9120a") + ) + (wire + (pts + (xy 95.25 72.39) (xy 111.76 72.39) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b53c2633-43a0-4d31-b497-3305b05e9b37") + ) + (wire + (pts + (xy 133.35 50.8) (xy 134.62 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b84f4aad-639d-4cd9-9484-9add37f0da39") + ) + (wire + (pts + (xy 213.36 26.67) (xy 213.36 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b8e813b3-9a73-4495-a4f5-7d912f53d029") + ) + (wire + (pts + (xy 97.79 36.83) (xy 97.79 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "b911981b-d832-4ba3-870a-6bbb71fd1e81") + ) + (wire + (pts + (xy 17.78 67.31) (xy 25.4 67.31) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bbcde3bb-2163-496b-90f4-7391bebea132") + ) + (wire + (pts + (xy 135.89 52.07) (xy 135.89 45.72) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bcdc975d-2a05-474b-9281-d30664d6a32a") + ) + (wire + (pts + (xy 55.88 50.8) (xy 68.58 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "bda5570b-be94-4dfd-ab66-ab9d7e222b0d") + ) + (wire + (pts + (xy 222.25 35.56) (xy 222.25 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c08427e8-30af-47ba-8bfa-50669b208c8d") + ) + (wire + (pts + (xy 220.98 62.23) (xy 220.98 63.5) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c261f353-d894-411c-8c3c-87aee846fcfe") + ) + (wire + (pts + (xy 114.3 142.24) (xy 99.06 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c3a628f3-16ca-4308-9705-79b7f122d855") + ) + (wire + (pts + (xy 203.2 25.4) (xy 203.2 26.67) + ) + (stroke + (width 0) + (type default) + ) + (uuid "c4ae7d83-7d30-4083-badd-d0aa6cef50df") + ) + (wire + (pts + (xy 231.14 35.56) (xy 231.14 34.29) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cad572a1-cb74-4f77-b9c0-03354eb3dffe") + ) + (wire + (pts + (xy 41.91 44.45) (xy 55.88 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cbc13e4c-fcbf-40b2-b1a8-e3714e13d23d") + ) + (wire + (pts + (xy 118.11 50.8) (xy 116.84 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ccecd900-073f-4773-a29b-1b61d488bf7c") + ) + (wire + (pts + (xy 180.34 77.47) (xy 205.74 77.47) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ccf5e18a-82a2-456d-9450-1445b5b6b262") + ) + (wire + (pts + (xy 41.91 44.45) (xy 40.64 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cd63c8ec-6db2-4644-bdfb-262952751cbe") + ) + (wire + (pts + (xy 115.57 45.72) (xy 115.57 64.77) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ce687da7-98af-4c59-ad7d-9c69fad581f8") + ) + (wire + (pts + (xy 119.38 74.93) (xy 119.38 76.2) + ) + (stroke + (width 0) + (type default) + ) + (uuid "cf01be22-ce92-4358-a866-436b24180ea6") + ) + (wire + (pts + (xy 138.43 22.86) (xy 138.43 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d0700500-0ac5-416c-9910-6c382a25a5aa") + ) + (wire + (pts + (xy 41.91 41.91) (xy 41.91 44.45) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d243768d-fd8b-47cd-9c66-8b796ecc7af4") + ) + (wire + (pts + (xy 119.38 85.09) (xy 111.76 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d31b2331-be5d-4da2-98d5-9e1c7e6015e7") + ) + (wire + (pts + (xy 138.43 31.75) (xy 138.43 33.02) + ) + (stroke + (width 0) + (type default) + ) + (uuid "d58a7961-c19e-4d6b-93e4-51d15cb2f897") + ) + (wire + (pts + (xy 68.58 50.8) (xy 78.74 50.8) + ) + (stroke + (width 0) + (type default) + ) + (uuid "da0e1a54-9a5d-41ea-88d2-a8022bfbf05b") + ) + (wire + (pts + (xy 203.2 25.4) (xy 194.31 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dc4c8322-4e08-4699-930d-aefe289960a9") + ) + (wire + (pts + (xy 167.64 35.56) (xy 167.64 36.83) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dd644320-aa92-43fd-9a1d-407aebae1c0d") + ) + (wire + (pts + (xy 116.84 54.61) (xy 121.92 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dfc26c7c-5d31-44f9-862b-fa3c0f51d30e") + ) + (wire + (pts + (xy 138.43 22.86) (xy 146.05 22.86) + ) + (stroke + (width 0) + (type default) + ) + (uuid "dfecdc3b-d928-4656-b199-3a801ee6b24c") + ) + (wire + (pts + (xy 31.75 142.24) (xy 46.99 142.24) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e114854d-6eb6-42bd-90c6-dbbc56ccc3bb") + ) + (wire + (pts + (xy 119.38 83.82) (xy 119.38 85.09) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e212ea57-fab4-4d88-a1fe-1f332db27fb8") + ) + (wire + (pts + (xy 60.96 52.07) (xy 60.96 49.53) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e24775dd-26c1-4f80-87a4-7199ba0f2b94") + ) + (wire + (pts + (xy 31.75 154.94) (xy 46.99 154.94) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e31f93e9-25a0-4632-b863-201e22e9f81e") + ) + (wire + (pts + (xy 90.17 24.13) (xy 87.63 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "e4e8e543-bdce-4170-a9ce-419be1e80151") + ) + (wire + (pts + (xy 160.02 36.83) (xy 160.02 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ec7fa9b0-5c01-4be7-af4b-308aca42352c") + ) + (wire + (pts + (xy 129.54 54.61) (xy 147.32 54.61) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ee29edf1-7f56-4b93-b27e-af9556f9182b") + ) + (wire + (pts + (xy 167.64 35.56) (xy 170.18 35.56) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f0fb9528-74d1-43ca-bfeb-1e20920bfa15") + ) + (wire + (pts + (xy 40.64 31.75) (xy 41.91 31.75) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f1a378cd-1ca7-4a7c-8449-d8409179f850") + ) + (wire + (pts + (xy 194.31 82.55) (xy 205.74 82.55) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f3922ef8-1800-4e38-b275-82396769a203") + ) + (wire + (pts + (xy 147.32 52.07) (xy 135.89 52.07) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f415b1e7-4f02-4fbd-a7ee-4a35220f5130") + ) + (wire + (pts + (xy 119.38 74.93) (xy 147.32 74.93) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f66c4c7a-6bf9-4ad2-8c65-ad88a1d6238a") + ) + (wire + (pts + (xy 162.56 115.57) (xy 162.56 116.84) + ) + (stroke + (width 0) + (type default) + ) + (uuid "f717693e-b495-45d4-af38-8cb0f6f736c5") + ) + (wire + (pts + (xy 60.96 24.13) (xy 69.85 24.13) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fae724b7-23fc-4999-85c5-cf2101f567d1") + ) + (wire + (pts + (xy 41.91 39.37) (xy 40.64 39.37) + ) + (stroke + (width 0) + (type default) + ) + (uuid "fecc5ca3-1654-4752-aef7-f07b775f1952") + ) + (wire + (pts + (xy 110.49 24.13) (xy 110.49 25.4) + ) + (stroke + (width 0) + (type default) + ) + (uuid "ffb6efc4-9bf4-483c-a5b7-70f6b29a36a8") + ) + (label "PA7" + (at 99.06 149.86 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "016f47f2-9cf5-4a7e-8485-008e52bd1695") + ) + (label "PA4" + (at 180.34 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "09dbc308-893a-4de3-9c80-8b589a607183") + ) + (label "PA14_SWCLK" + (at 180.34 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0a7e8888-2a95-44f5-b56f-717cf2ddc9f9") + ) + (label "PA4" + (at 99.06 160.02 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "0b4a2324-493e-4d32-8ed1-ddadb9659a8a") + ) + (label "PB13" + (at 99.06 132.08 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "115c8441-585e-4315-a988-ae40a61706d1") + ) + (label "PA9_USART1TX" + (at 180.34 64.77 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "13eddada-b3a7-4201-b04a-c8015d7fe7f2") + ) + (label "PC14" + (at 46.99 144.78 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "18950470-ca14-41e5-8823-07c61bd3d9e4") + ) + (label "PB12" + (at 99.06 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "190ffa6b-552e-4b2b-a925-51727f9f392d") + ) + (label "PA15" + (at 46.99 119.38 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "22131c70-aa5f-4b69-8880-c236cce3ade6") + ) + (label "PB8" + (at 46.99 134.62 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "256aca9a-3040-4f66-8d7e-924ecd5ca8e9") + ) + (label "PB11" + (at 147.32 97.79 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "27553a63-7916-48fc-afe8-60e1f8015555") + ) + (label "PB10" + (at 147.32 95.25 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "27553a63-7916-48fc-afe8-60e1f8015556") + ) + (label "PB12" + (at 147.32 100.33 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "27553a63-7916-48fc-afe8-60e1f8015557") + ) + (label "PB14" + (at 147.32 105.41 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "27553a63-7916-48fc-afe8-60e1f8015558") + ) + (label "PB15" + (at 147.32 107.95 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "27553a63-7916-48fc-afe8-60e1f8015559") + ) + (label "PB13" + (at 147.32 102.87 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "27553a63-7916-48fc-afe8-60e1f801555a") + ) + (label "PB11" + (at 99.06 137.16 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "28deb565-b209-479d-98ff-9a9a473df453") + ) + (label "PA8" + (at 180.34 62.23 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2d97c37a-4c7d-4faf-a3fd-9e27583024a5") + ) + (label "PA0" + (at 180.34 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "2fd57dca-aab0-4ed6-8e0b-b352c2a13da8") + ) + (label "PA7" + (at 180.34 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "34da2a65-633b-492e-aabf-78ea66c0b47e") + ) + (label "PB7" + (at 46.99 132.08 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "38521991-1a46-44f9-b703-03fa905f5b10") + ) + (label "PB4" + (at 147.32 80.01 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "41ddf293-4262-4bb3-ba26-2b3c0a6cd886") + ) + (label "PC15" + (at 46.99 147.32 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "424960f9-e67a-464e-be48-7eb9ecd020ce") + ) + (label "PB5" + (at 147.32 82.55 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "43a451fe-9973-42a9-822d-4b5c2685d3b9") + ) + (label "PB6" + (at 147.32 85.09 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4521efec-88db-4a5c-882a-5c6e8c5450bc") + ) + (label "PB7" + (at 147.32 87.63 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4521efec-88db-4a5c-882a-5c6e8c5450bd") + ) + (label "PB8" + (at 147.32 90.17 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4521efec-88db-4a5c-882a-5c6e8c5450be") + ) + (label "PB9" + (at 147.32 92.71 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "4521efec-88db-4a5c-882a-5c6e8c5450bf") + ) + (label "PB0" + (at 99.06 147.32 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4c7c1b68-f77e-449e-9b21-687bf0b7123a") + ) + (label "PB2_BOOT1" + (at 135.89 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "4cb66486-a92c-4545-9ee9-4ce2f3e6047e") + ) + (label "PB14" + (at 99.06 127 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "52f96504-7cd0-4f19-aac3-43f53f93a307") + ) + (label "USB_D_P" + (at 180.34 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "57e576a6-83a7-4bb0-8d29-fe19d95f2b36") + ) + (label "PA1" + (at 46.99 152.4 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "58a4ee43-8df4-42fd-9e42-20edc0b19b96") + ) + (label "PA0" + (at 46.99 149.86 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "6c1e6bff-bb7d-414d-a5ed-dd5bbb83a12c") + ) + (label "PA3" + (at 46.99 160.02 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "6d7a0a69-ed3b-47b1-aa5a-4803b15b95aa") + ) + (label "PA6" + (at 180.34 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6e1cc4e7-453c-4203-a6e7-75608072d8d1") + ) + (label "PA13_SWDIO" + (at 180.34 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "6e6103e1-93a2-49fe-b7e1-5997b29d0ce3") + ) + (label "PC14" + (at 147.32 62.23 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "701f8089-726b-48b1-95d4-9f7e78e0d02f") + ) + (label "PC15" + (at 147.32 64.77 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "701f8089-726b-48b1-95d4-9f7e78e0d030") + ) + (label "PC13" + (at 147.32 59.69 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "701f8089-726b-48b1-95d4-9f7e78e0d031") + ) + (label "PA7" + (at 180.34 59.69 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "7957cc3b-2b11-4ff8-838c-2ed1ad80f024") + ) + (label "PA5" + (at 180.34 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "7bc86c99-a349-4cee-89f5-8a21a264905c") + ) + (label "PB1" + (at 99.06 144.78 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "82f1db31-18aa-4050-9ec7-f4ed30a9c3b9") + ) + (label "PA6" + (at 99.06 152.4 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "873019b4-7455-44d2-b5a9-f378e95558f3") + ) + (label "PA4" + (at 180.34 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "898590d6-d98f-403b-a427-a7aec08c47ec") + ) + (label "PC13" + (at 46.99 139.7 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "9a305364-2653-4b86-ae75-ef34cbe49269") + ) + (label "PB3" + (at 46.99 121.92 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "9bf8280b-7d87-4780-8170-4f46351d4d71") + ) + (label "PB3" + (at 147.32 77.47 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "9ca8278b-5d47-4260-bddf-7708515aee8a") + ) + (label "USB_D_N" + (at 180.34 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a21abf2c-9da6-4327-85a3-578d98558488") + ) + (label "nRST" + (at 99.06 121.92 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "a4541513-7935-4ac3-b505-091212a404f2") + ) + (label "PA2" + (at 46.99 157.48 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "a4e2df1a-5401-4109-9a3b-41cc1cf8173c") + ) + (label "BOOT0" + (at 132.08 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "b9da0c35-6cfe-45fb-b61e-af316fa22731") + ) + (label "PA2" + (at 180.34 46.99 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "bebc0066-dbd7-4b9d-a353-543a52072f83") + ) + (label "PB4" + (at 191.77 99.06 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c1071514-fec9-4bd7-b78f-2c86faf8e5a3") + ) + (label "PB9" + (at 46.99 137.16 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c19639dd-d115-4d7b-b742-833f963d792a") + ) + (label "PA9_USART1TX" + (at 46.99 111.76 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "c24eb958-d76d-4393-b03a-5b3d7b9ff9ce") + ) + (label "PB15" + (at 99.06 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "cbf66645-c0e9-454a-b288-50274ab2edfb") + ) + (label "PA1" + (at 180.34 44.45 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "cca83d0b-4954-4ee6-8f63-3a074cddf99c") + ) + (label "nRST" + (at 140.97 22.86 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d46a94e7-05a5-4eac-81b8-f01c083187c7") + ) + (label "PA5" + (at 180.34 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "d72d0149-bf61-4e8e-a8cd-4daa33965095") + ) + (label "PA10_USART1RX" + (at 46.99 114.3 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "e12d5254-013f-4796-84f2-f4eccf67f8fd") + ) + (label "PA5" + (at 99.06 157.48 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "e7743bad-1184-4e01-b521-087f74582099") + ) + (label "PB6" + (at 46.99 127 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "e887d597-43e9-4ebe-b7ab-ddb6413259c7") + ) + (label "PA3" + (at 180.34 49.53 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "ef5a7aa7-6f4f-4e00-b6dd-b92937f2f46a") + ) + (label "PB5" + (at 46.99 124.46 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "f1587efb-0eb3-4291-89a6-4bf8289620a5") + ) + (label "PA10_USART1RX" + (at 180.34 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "f3b615c1-7870-46d2-b9c4-84c3307c2648") + ) + (label "PA6" + (at 180.34 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fa2c7cae-5534-42e5-9a5f-ea0341d1aafb") + ) + (label "PB1" + (at 147.32 72.39 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "fb09ebf6-7894-415f-b061-4940de681412") + ) + (label "PB0" + (at 147.32 69.85 180) + (effects + (font + (size 1.27 1.27) + ) + (justify right bottom) + ) + (uuid "fb09ebf6-7894-415f-b061-4940de681413") + ) + (label "PB10" + (at 99.06 139.7 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fc096d90-7dc3-4725-a651-5389c70a9e7b") + ) + (label "PA15" + (at 180.34 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left bottom) + ) + (uuid "fcc5b66d-42d0-4a58-b76d-1c92e3e15e85") + ) + (hierarchical_label "USB_D_N" + (shape bidirectional) + (at 205.74 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "56ea433f-985f-4196-949b-b9cc0e0b4913") + ) + (hierarchical_label "USB_D_N" + (shape bidirectional) + (at 78.74 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "a5b0743a-27b2-4f7b-82ba-f61a94cd9343") + ) + (hierarchical_label "USB_D_P" + (shape bidirectional) + (at 78.74 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "ad0c54b8-886d-4c19-8362-117b2c8d4639") + ) + (hierarchical_label "USB_D_P" + (shape bidirectional) + (at 205.74 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + (uuid "fe9681ef-66d5-4e06-be0e-9adabb6d7eb7") + ) + (symbol + (lib_id "PCM_JLCPCB-Diodes:Schottky,B0540WS") + (at 73.66 24.13 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "001cced7-9698-42ee-8973-f17f55532bc9") + (property "Reference" "D2" + (at 73.9775 17.78 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "B0540WS" + (at 73.9775 20.32 90) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:D_SOD-323" + (at 73.66 25.908 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://wmsc.lcsc.com/wmsc/upload/file/pdf/v2/lcsc/2308281514_hongjiacheng-B0540WS_C7420326.pdf" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "40V Independent Type 500mA 510mV@500mA SOD-323 Schottky Diodes ROHS" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C7420326" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "261810" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.018USD" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "6" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Preferred Component" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Diodes,Schottky Barrier Diodes (SBD)" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "hongjiacheng" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "B0540WS" + (at 73.66 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "ef77a966-4603-4621-a288-6466a099b14b") + ) + (pin "1" + (uuid "dfbbf68a-643e-46a5-8d84-731d6f7dc068") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "D2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,10pF") + (at 110.49 54.61 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "09f9b246-e654-45aa-ac19-20d3e8911708") + (property "Reference" "C10" + (at 110.49 63.5 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10pF" + (at 110.8682 56.642 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 110.49 52.832 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05C100JB5NNNC_C32949.pdf" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "50V 10pF C0G ±5% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C32949" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "564575" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.007USD" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05C100JB5NNNC" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "50V" + (at 112.5362 56.642 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±5%" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "10pF" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "C0G" + (at 110.49 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "2516cf8a-170d-41a1-bbe7-05c89b855aca") + ) + (pin "1" + (uuid "245ebada-6a8e-48b8-9f38-5ba2163b9c1a") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C10") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,100nF") + (at 222.25 30.48 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "0e347212-8c47-4b33-8ec3-e5561d84a4a8") + (property "Reference" "C11" + (at 224.79 27.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 224.79 30.48 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 220.472 30.48 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C1525" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "20208285" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "16V" + (at 224.79 33.02 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "100nF" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 222.25 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "c4cd4f76-9db2-48c5-a9c8-f3c745a0ff93") + ) + (pin "2" + (uuid "73d8cf0f-0286-4e1d-8b2a-14ddd716b8d3") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C11") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 162.56 118.11 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "10088fb7-f38e-438d-8267-eccbf590504c") + (property "Reference" "#PWR06" + (at 162.56 124.46 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 162.56 123.19 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 162.56 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 162.56 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 162.56 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "32fd717b-bbab-43ee-92c0-3e0f4a5c10dd") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR06") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 50.8 33.02 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "1f9f0a40-537b-4ddb-a940-96eebbe6748f") + (property "Reference" "#PWR05" + (at 50.8 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 53.34 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 50.8 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 50.8 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 50.8 33.02 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "413593ed-fe1a-48dc-a4bc-e0a2486f93c1") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR05") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 87.63 19.05 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "27c39744-c74d-4f55-82b6-b14b3fe1a09c") + (property "Reference" "#PWR015" + (at 87.63 22.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 87.63 13.97 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 87.63 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 87.63 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 87.63 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "5cf3b72c-59ba-4c75-ba11-d7a07b39d6e9") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR015") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 213.36 36.83 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "2bdf561e-2d93-461e-9998-ab90a3a86350") + (property "Reference" "#PWR08" + (at 213.36 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 213.36 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 213.36 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 213.36 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 213.36 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fa981cb4-6365-421f-b2e8-92f4f4a3bcaf") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR08") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 114.3 154.94 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "385d3ee4-9783-4a57-8937-a096d1640bae") + (property "Reference" "#PWR021" + (at 120.65 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 118.11 154.9399 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 114.3 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 114.3 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1111bb12-1101-4834-9c6a-bbdecf409b9e") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR021") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 220.98 81.28 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3f58868b-1aa4-4008-8691-f94dfb9689d3") + (property "Reference" "#PWR028" + (at 220.98 87.63 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 220.98 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 220.98 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 220.98 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 220.98 81.28 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1ba3677d-e31b-474b-96ff-0071b945308b") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR028") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 31.75 116.84 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "3fd33cb5-9aab-483f-af1f-61ce8a80ee37") + (property "Reference" "#PWR026" + (at 25.4 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 27.94 116.8399 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 31.75 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 31.75 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 31.75 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "80fbcd2f-e7e1-45f4-bfc5-3debe9d6352b") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR026") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x20_Socket") + (at 93.98 134.62 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "4265689d-8b0e-492b-b28a-4ee4f8c54ca4") + (property "Reference" "J4" + (at 92.71 134.6199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_Right" + (at 92.71 137.1599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x20_P2.54mm_Vertical" + (at 93.98 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 93.98 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x20, script generated" + (at 93.98 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "17" + (uuid "add93b38-4b49-4d43-8e86-165463dc0744") + ) + (pin "18" + (uuid "77e37a7c-c934-4dd7-8cce-7606f1804536") + ) + (pin "16" + (uuid "cfa7797c-0d89-47af-afbf-f5d4fca2eba5") + ) + (pin "11" + (uuid "709e60f2-7d42-4935-aed7-45b0d4ec0c63") + ) + (pin "12" + (uuid "d629c3e5-8837-4fc8-bfda-30f0860a7854") + ) + (pin "20" + (uuid "a16cf6bb-9a80-46d1-9785-d5c6b46d1f5d") + ) + (pin "14" + (uuid "41ecb5ba-b7b4-46b3-bb87-afbf1b496821") + ) + (pin "2" + (uuid "08a8553a-2b90-4e3b-a0f4-a9b345a00ddb") + ) + (pin "15" + (uuid "faed33b7-651d-4d87-ad90-1c9682c419ce") + ) + (pin "6" + (uuid "d5e49d2b-28ce-44f0-9750-18f1366bf964") + ) + (pin "3" + (uuid "cd67dbfe-d516-4069-b07b-a894a7a297e8") + ) + (pin "4" + (uuid "67c8cf6f-63fe-4246-bac1-2eef9f7b29ce") + ) + (pin "13" + (uuid "8a141754-03b3-4f6d-a0e0-babd733b49c3") + ) + (pin "19" + (uuid "9d2e300c-d75a-4764-bc8b-a7dc97d68bd9") + ) + (pin "9" + (uuid "8169a179-df0f-4f05-92bf-4a8d060cea9a") + ) + (pin "8" + (uuid "754af221-b8f4-4974-b951-f74ced181140") + ) + (pin "5" + (uuid "7c99d96e-8e43-4960-9e78-64ea4b7ccb6b") + ) + (pin "10" + (uuid "3f1d6277-fa77-459f-906f-8da3e03fc215") + ) + (pin "7" + (uuid "54535a1b-c966-4da8-97b3-e8767196c505") + ) + (pin "1" + (uuid "c01877ab-9179-4f0d-b36f-99a284fc7b1e") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "J4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 105.41 66.04 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "478e3b9a-32e1-422e-944e-7f6338a132c2") + (property "Reference" "#PWR010" + (at 105.41 72.39 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 105.41 71.12 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 105.41 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 105.41 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 105.41 66.04 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "bc38db24-b6e4-468f-b30e-ebe1a6c1d70b") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR010") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,1uF") + (at 110.49 29.21 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "48691ab3-0bb5-42e6-b001-3ff9117c3078") + (property "Reference" "C2" + (at 107.95 26.6699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1uF" + (at 107.95 29.21 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 112.268 29.21 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05A105KA5NQNC_C52923.pdf" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "25V 1uF X5R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C52923" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "7021828" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.006USD" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05A105KA5NQNC" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "25V" + (at 107.95 31.75 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "1uF" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X5R" + (at 110.49 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "4f87f4fd-6003-4f07-bedc-33763ca045dc") + ) + (pin "1" + (uuid "2255b7b5-a5cb-46a1-a02f-802a4b18878b") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,100nF") + (at 176.53 30.48 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "59122927-71c3-4f2a-8f13-1a16ec89fe54") + (property "Reference" "C3" + (at 179.07 27.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 179.07 30.48 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 174.752 30.48 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C1525" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "20208285" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "16V" + (at 179.07 33.02 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "100nF" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 176.53 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d4ae9e9f-ef4c-49de-8c1c-06c378049089") + ) + (pin "2" + (uuid "ee4b8a96-f7ab-4e80-b789-c4ea7b43dbb4") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Resistors:0402,5.1kΩ") + (at 45.72 29.21 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "593b032d-d4d4-42ca-881e-9736033a93b6") + (property "Reference" "R1" + (at 45.72 25.4 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "5.1kΩ" + (at 45.72 29.21 90) + (do_not_autoplace yes) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at 45.72 30.988 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2206010045_UNI-ROYAL-Uniroyal-Elec-0402WGF5101TCE_C25905.pdf" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 5.1kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25905" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "3534773" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF5101TCE" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "5.1kΩ" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 45.72 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "228f96a8-ef69-48e2-ab6d-a290b1d119cc") + ) + (pin "1" + (uuid "cea66b95-e450-44fe-a61e-3845878399e1") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "R1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Resistors:0402,5.1kΩ") + (at 45.72 31.75 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "5e61580c-d450-419f-94cf-0c924368e6da") + (property "Reference" "R2" + (at 45.72 35.56 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "5.1kΩ" + (at 45.72 31.75 90) + (do_not_autoplace yes) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at 45.72 29.972 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2206010045_UNI-ROYAL-Uniroyal-Elec-0402WGF5101TCE_C25905.pdf" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 5.1kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25905" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "3534773" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF5101TCE" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "5.1kΩ" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 45.72 31.75 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "a2a25237-0075-45cb-94d8-d7c4b308a516") + ) + (pin "1" + (uuid "e75dbf77-65ef-44f2-875f-3bcd2ddaa282") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "R2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Resistors:0402,1.5kΩ") + (at 204.47 55.88 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "60774f59-4c12-41de-a6f4-9056b53db2b4") + (property "Reference" "R7" + (at 207.01 55.8799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1.5kΩ" + (at 204.47 55.88 90) + (do_not_autoplace yes) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at 202.692 55.88 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2206010045_UNI-ROYAL-Uniroyal-Elec-0402WGF1501TCE_C25867.pdf" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 1.5kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25867" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "1178558" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF1501TCE" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "1.5kΩ" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 204.47 55.88 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "1d7d1558-2f11-4cca-8506-e9d32ff80323") + ) + (pin "1" + (uuid "90899535-3061-4512-8c24-1120716349b7") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "R7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-MCUs:STM32F103C8T6") + (at 162.56 77.47 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "6231ac83-0920-4199-b7ec-0ad75afa1b04") + (property "Reference" "U1" + (at 167.2433 115.57 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "STM32F103C8T6" + (at 167.2433 118.11 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:LQFP-48_7x7mm_P0.5mm" + (at 149.86 113.03 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + (hide yes) + ) + ) + (property "Datasheet" "https://www.st.com/resource/en/datasheet/stm32f103c8.pdf" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "32Bit, 72MHz, 64KB Flash, 20KB RAM, 2.0-3.6V" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C8734" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "1.086USD" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "207004" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "1" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "0" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Preferred Component" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Embedded Processors & Controllers,ST Microelectronics" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "STMicroelectronics" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "STM32F103C8T6" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Adc (Bit)" "12bit" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Low-Voltage Detect" "Yes" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Universal Serial Bus" "Yes" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Direct Memory Access" "Yes" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Watchdog" "Yes" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Program Storage Size" "64KB" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Cpu Maximum Speed" "72MHz" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Gpio Ports Number" "37" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Internal Oscillator" "Yes" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Infrared Data Association" "Yes" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Voltage Range" "2V~3.6V" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Ram Size" "20KB" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Cpu Core" "ARM-M3" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-40°C~+85°C" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Program Memory Type" "FLASH" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Peripheral/Function" "DMA;On-chip temperature sensor;WDT" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Low Voltage Detection Threshold" "2V~3.6V" + (at 162.56 77.47 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "11" + (uuid "e9676012-e45d-4c83-8326-64c48e0e83d6") + ) + (pin "15" + (uuid "469bc9cd-461e-4128-8e32-9973363bb981") + ) + (pin "25" + (uuid "4dd3e4cc-7f70-4135-8102-d98be1dd45b3") + ) + (pin "47" + (uuid "bf55bf81-7f9d-48fb-8a9f-fc0bfb4a7586") + ) + (pin "24" + (uuid "8e904591-48f1-4bb4-a4f1-b70cacd27b11") + ) + (pin "12" + (uuid "4af30997-4cee-4907-b1d4-d3d7596f3102") + ) + (pin "37" + (uuid "0121eeaf-e3c7-46da-a091-eb22add3cd5d") + ) + (pin "16" + (uuid "223874ba-a1fe-4726-9d04-2ae8d1a6c7e4") + ) + (pin "4" + (uuid "3aff8728-d789-4075-a53c-60faa8e6b420") + ) + (pin "17" + (uuid "68b7319a-b956-4b47-a015-fb243a744b89") + ) + (pin "10" + (uuid "e4f5aa24-28f6-472a-9072-f5c55fc394f8") + ) + (pin "31" + (uuid "bb9ead76-e82f-4ac6-8c64-0d1b02f2c63e") + ) + (pin "43" + (uuid "e731d107-215c-40ed-9f58-40f0eea5f9e5") + ) + (pin "32" + (uuid "f8a5fc17-a384-47cb-892e-684bf28475d4") + ) + (pin "35" + (uuid "e998c2f5-8520-4d9f-a00a-35dae4b214ef") + ) + (pin "9" + (uuid "50310c76-2c25-4038-9ce3-e5e6512e461a") + ) + (pin "30" + (uuid "10035fc2-b2dd-4cee-9544-aef939ab0868") + ) + (pin "14" + (uuid "443a1f0d-0dc9-4be0-932f-e9880bf6723e") + ) + (pin "18" + (uuid "c61b4d13-5750-4edf-8438-b1518dfd2724") + ) + (pin "39" + (uuid "1e6f1aa3-4e1b-470c-8020-e94664f31fe9") + ) + (pin "33" + (uuid "94d465c6-f703-4012-b09c-81083e25f778") + ) + (pin "45" + (uuid "e61dd073-c599-44a3-b7fe-e7044960131b") + ) + (pin "41" + (uuid "6662d8ec-b5c9-461a-b3cf-6c74059c5187") + ) + (pin "34" + (uuid "09815e17-7175-4261-96d4-ba3c3de144ca") + ) + (pin "38" + (uuid "f63d634a-1373-470c-9085-2a863b63af69") + ) + (pin "36" + (uuid "eb831ac5-13c7-4387-87cf-5b0fa5b9dab1") + ) + (pin "8" + (uuid "2e0cf5ce-ba8b-475c-94b6-e517ee51d816") + ) + (pin "28" + (uuid "cc048097-3ee0-4a1b-a491-e093a2b2e618") + ) + (pin "48" + (uuid "d424d14f-6989-4be6-b8f4-89f6539df16b") + ) + (pin "40" + (uuid "36b10bb5-6301-4ddd-8e61-1f6081943034") + ) + (pin "20" + (uuid "df27a29e-7298-46ff-a58d-d3ea3bb22820") + ) + (pin "23" + (uuid "d846cc2b-4e15-4213-a38a-e90601c17a9c") + ) + (pin "1" + (uuid "6fe7d6c4-b0f9-40e3-9055-4498281d8957") + ) + (pin "21" + (uuid "326d8f92-4aca-481c-9b46-c3b810c11e16") + ) + (pin "42" + (uuid "f50ccd5b-7d78-4423-a04d-df897514e3a1") + ) + (pin "13" + (uuid "c4e194f7-5ab0-4146-b103-4e2fe05f2ba2") + ) + (pin "22" + (uuid "00f35133-9997-4deb-82f7-167bf94dfe58") + ) + (pin "29" + (uuid "9b25a41b-6c72-469b-a56c-e4d7a9898a13") + ) + (pin "5" + (uuid "56485154-8a5d-4ec4-b120-6a251b11ca1d") + ) + (pin "6" + (uuid "2c33404e-7b8f-4fff-821b-39c25b19c7a7") + ) + (pin "2" + (uuid "247e5bbb-8e4f-4070-90ae-a1312ca18363") + ) + (pin "3" + (uuid "dc876021-dd6b-4971-aefe-38455b302ac1") + ) + (pin "46" + (uuid "60f7447a-6115-4d51-bff1-99f33785f1b8") + ) + (pin "19" + (uuid "6d7f70d8-5fb4-4001-901c-1e83284238d8") + ) + (pin "26" + (uuid "758c108c-c20b-46dc-b001-6ec82293f563") + ) + (pin "27" + (uuid "4106a175-4f17-4126-b3b0-ad070894ce90") + ) + (pin "44" + (uuid "fc5d9279-91cb-408b-b232-cac5d65cf275") + ) + (pin "7" + (uuid "cc4e104e-1df5-4b44-a90b-366404fa0618") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "U1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,4.7uF") + (at 213.36 30.48 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "6741f408-43c0-4bab-bcf5-b222df19f09e") + (property "Reference" "C7" + (at 215.9 27.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "4.7uF" + (at 215.9 30.48 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 211.582 30.48 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05A475MP5NRNC_C23733.pdf" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "10V 4.7uF X5R ±20% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C23733" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "4366811" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.008USD" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05A475MP5NRNC" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "10V" + (at 215.9 33.02 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±20%" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "4.7uF" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X5R" + (at 213.36 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "5f3b704f-3821-40ee-ad88-0e9fa471db6e") + ) + (pin "1" + (uuid "ef828d2e-b688-4c5d-9881-ea16426790f1") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C7") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 31.75 154.94 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "67e47128-3ed7-47b0-b913-35fb36a1a8b9") + (property "Reference" "#PWR024" + (at 25.4 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 27.94 154.9399 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 31.75 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 31.75 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 31.75 154.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "7f8fb68f-1921-46f8-8045-d76536dc2ba1") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR024") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Power:LDO, 3.3V, 0.2A") + (at 97.79 26.67 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "711d344f-fc2d-45d4-b461-15df617579af") + (property "Reference" "U2" + (at 97.79 16.51 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "XC6206P332MR" + (at 97.79 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:SOT-23-3_L2.9-W1.6-P1.90-LS2.8-BR" + (at 97.79 36.83 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Torex-Semicon-XC6206P332MR-G_C5446.pdf" + (at 95.504 26.543 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "200mA Fixed 3.3V Positive electrode 6V SOT-23-3L Voltage Regulators - Linear, Low Drop Out (LDO) Regulators ROHS" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C5446" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "517770" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.103USD" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "5" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "2" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Power Management ICs,Linear Voltage Regulators (LDO)" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Torex Semicon" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "XC6206P332MR-G" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Number Of Outputs" "1" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Output Voltage" "3.3V" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Dropout Voltage" "680mV@(100mA)" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Output Current" "200mA" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Output Type" "Fixed" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Maximum Input Voltage" "6V" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Output Polarity" "Positive electrode" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Feature" "Low ESR;Overcurrent Protection(OCP)" + (at 97.79 26.67 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "ddaa68e5-0498-483c-91c7-2a10edf57708") + ) + (pin "1" + (uuid "e7102983-7e36-487c-ae51-dd318fdd9ac6") + ) + (pin "3" + (uuid "4c371c4d-8b68-4238-9105-8fb26c4c90af") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "U2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,100nF") + (at 203.2 30.48 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "77c6cee7-eede-4140-8c90-0efaacacf376") + (property "Reference" "C6" + (at 205.74 27.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 205.74 30.48 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 201.422 30.48 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C1525" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "20208285" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "16V" + (at 205.74 33.02 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "100nF" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 203.2 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "83c92790-f176-40d2-a705-488ad18f2306") + ) + (pin "2" + (uuid "27501c08-441c-4f37-b28e-dd582070e6f8") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C6") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,1uF") + (at 87.63 29.21 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7ae92b4c-5f3f-420c-a83e-c32bd8dfc9e5") + (property "Reference" "C1" + (at 90.17 26.6699 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1uF" + (at 90.17 29.21 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 85.852 29.21 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05A105KA5NQNC_C52923.pdf" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "25V 1uF X5R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C52923" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "7021828" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.006USD" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05A105KA5NQNC" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "25V" + (at 90.17 31.75 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "1uF" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X5R" + (at 87.63 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "8106f50f-9918-4514-9384-2547d415500d") + ) + (pin "1" + (uuid "dbbc724f-d424-4322-a7a2-84bdf821a16d") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,100nF") + (at 185.42 30.48 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "7ca74afc-96fe-4a4e-97ad-30ffaedf100b") + (property "Reference" "C4" + (at 187.96 27.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 187.96 30.48 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 183.642 30.48 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C1525" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "20208285" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "16V" + (at 187.96 33.02 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "100nF" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 185.42 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "18c37714-9033-447f-8367-f36ad8fd9071") + ) + (pin "2" + (uuid "a08a2339-4992-4802-a60d-f7d2f11c8943") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 110.49 19.05 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "801a3f7e-150d-4f2a-bd5e-df927db83b8f") + (property "Reference" "#PWR04" + (at 110.49 22.86 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 110.49 13.97 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 110.49 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 110.49 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 110.49 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "714657b7-8eb3-43ce-883e-d93861d03c18") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR04") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x20_Socket") + (at 52.07 134.62 0) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp no) + (uuid "81a393dc-75dd-4fcc-84ef-b0e2f3bad71a") + (property "Reference" "J3" + (at 53.34 134.6199 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "Conn_Left" + (at 53.34 137.1599 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x20_P2.54mm_Vertical" + (at 52.07 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 52.07 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x20, script generated" + (at 52.07 134.62 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "17" + (uuid "4946bc0a-cd5e-4c02-829d-d050956527d5") + ) + (pin "18" + (uuid "c3b600d3-d725-46c3-a340-b9cf97637c58") + ) + (pin "16" + (uuid "a2a63069-e8a8-4873-8a2e-344266b35996") + ) + (pin "11" + (uuid "1bb65df1-b4f1-493e-9e96-5a2401d9b692") + ) + (pin "12" + (uuid "78542a5b-f83f-4b7a-b186-9cc07c155795") + ) + (pin "20" + (uuid "3be1e299-a142-4911-ab9d-22d2541aeb73") + ) + (pin "14" + (uuid "b6754e53-b069-4629-bc05-ecac86992b42") + ) + (pin "2" + (uuid "37a78d07-d9bd-41f0-ab8d-ab39b1c4d8c0") + ) + (pin "15" + (uuid "00fc94a3-fd93-4c77-bb02-aa9a4f3c454e") + ) + (pin "6" + (uuid "d067d78b-91fd-412a-9558-83601b292784") + ) + (pin "3" + (uuid "b0f16056-db6c-454d-a754-436348e82ed5") + ) + (pin "4" + (uuid "bb50d4ed-2fd0-4703-a1c5-07e050eadc34") + ) + (pin "13" + (uuid "7a8efb63-eee7-4053-867b-35426f6e37ea") + ) + (pin "19" + (uuid "15377264-4d88-4c90-9880-8ad9347592d9") + ) + (pin "9" + (uuid "36ac052c-bd1e-4b3f-8b8b-d1d36b7863f1") + ) + (pin "8" + (uuid "95148315-c20f-4b81-b0d0-29186f83004f") + ) + (pin "5" + (uuid "0cf165cc-7b10-466a-8736-3b14b7c9fcd8") + ) + (pin "10" + (uuid "ef5f99d2-f1c1-45d7-8652-33ba50b3e5f7") + ) + (pin "7" + (uuid "e52fbd93-3042-4d44-bafb-d15db12f200a") + ) + (pin "1" + (uuid "87420a4f-cb0e-4090-9c0c-6efb03f2f937") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "J3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,100nF") + (at 138.43 27.94 0) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "85ea1aed-eb15-4012-8afc-7d047feb39ea") + (property "Reference" "C8" + (at 140.97 30.4801 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 140.97 27.94 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 136.652 27.94 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C1525" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "20208285" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "16V" + (at 140.97 25.4 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "100nF" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 138.43 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2e90a685-6670-4e2a-a05c-7d421c98c2eb") + ) + (pin "2" + (uuid "f0e83783-5394-441e-96fe-cafd9522f741") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 31.75 142.24 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "91f3e067-9ce6-4b58-9ee0-75a93f9439ed") + (property "Reference" "#PWR023" + (at 25.4 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 27.94 142.2399 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 31.75 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 31.75 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 31.75 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "d578e8b1-033a-41c1-b8f1-773364a2c74c") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR023") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Diodes:LED,0805,Green") + (at 220.98 67.31 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9a05a4a7-86c6-49e6-8643-735ccf34a49b") + (property "Reference" "D1" + (at 226.06 65.9446 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "Green" + (at 226.06 68.4847 0) + (effects + (font + (size 0.8 0.8) + ) + (justify right) + ) + ) + (property "Footprint" "PCM_JLCPCB:D_0805" + (at 222.758 67.31 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_1806151820_Hubei-KENTO-Elec-KT-0805G_C2297.pdf" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Emerald 0805 LED Indication - Discrete ROHS" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C2297" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "2062782" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.014USD" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Optoelectronics,Light Emitting Diodes (LED)" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Hubei KENTO Elec" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "KT-0805G" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Emitted Color" "Emerald" + (at 220.98 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2b4c351f-7407-4833-a61f-c359476f86a4") + ) + (pin "2" + (uuid "aa2bacc1-92c8-4a08-bfb5-ee0bcba6e548") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "D1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "Connector:Conn_01x03_Pin") + (at 210.82 80.01 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom no) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "9a40e419-520e-41ff-a3cb-b6a82cbf5ce9") + (property "Reference" "J5" + (at 212.09 78.7399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "SWD" + (at 212.09 81.2799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" + (at 210.82 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "~" + (at 210.82 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Generic connector, single row, 01x03, script generated" + (at 210.82 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "9392421d-c05d-4b9c-9fb9-cb01b1138bef") + ) + (pin "1" + (uuid "4d733879-1ebc-4865-b19c-35867d63c7d1") + ) + (pin "3" + (uuid "cdb50420-cb38-42b4-a622-a4c574d04921") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "J5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Connectors_Buttons:Tactile Button, 160gf, 12V, 50mA, 4.0mm") + (at 129.54 29.21 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "a722ba06-74f2-40cf-ac03-00e350a33c0f") + (property "Reference" "S1" + (at 123.1899 34.544 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "Tactile Button, 160gf" + (at 125.73 34.544 90) + (effects + (font + (size 0.8 0.8) + ) + (justify right) + ) + ) + (property "Footprint" "PCM_JLCPCB:SW_TS-1088-AR02016" + (at 129.54 19.05 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_XUNPU-TS-1088-AR02016_C720477.pdf" + (at 131.826 29.337 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "Without 50mA 4mm 100MΩ 100000 Times 12V 160gf 3mm 2mm Round Button Standing paste SPST SMD Tactile Switches ROHS" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C720477" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "346801" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.044USD" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "5" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "4" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Switches,Tactile Switches" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "XUNPU" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "TS-1088-AR02016" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Switch Length" "4mm" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rating (Dc)" "12V" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "With Lamp" "No" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Force" "160gf@±50gf" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Actuator/Cap Color" "Black" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Mechanical Life" "100000 Times" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Strike Gundam" "NO" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Circuit" "SPST" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Switch Height" "2mm" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Actuator Style" "Round Button" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Switch Width" "3mm" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Contact Current" "50mA" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature" "-30°C~+80°C" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Mounting Style" "Brick nogging" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Insulation Resistance" "100MΩ" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Pin Style" "SMDSplicing" + (at 129.54 29.21 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "655b057c-9dc7-4960-96c9-8c5d621ffad0") + ) + (pin "2" + (uuid "e1c8e471-98b7-4ffb-bf59-243d93ba2c6d") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "S1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 138.43 34.29 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "a9ef8a1e-ba26-4217-921d-546b5cc16912") + (property "Reference" "#PWR09" + (at 138.43 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 138.43 39.37 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 138.43 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 138.43 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 138.43 34.29 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "f9a3ac0c-3e79-4409-a8aa-e978eba0cbeb") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR09") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,1uF") + (at 231.14 30.48 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "bcbe8f1a-5af6-4292-a2d4-2486a90849d1") + (property "Reference" "C12" + (at 233.68 27.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "1uF" + (at 233.68 30.48 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 229.362 30.48 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05A105KA5NQNC_C52923.pdf" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "25V 1uF X5R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C52923" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "7021828" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.006USD" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05A105KA5NQNC" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "25V" + (at 233.68 33.02 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "1uF" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X5R" + (at 231.14 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "62716ae1-e232-4088-a25c-2b2e82d2d1a1") + ) + (pin "1" + (uuid "a7e7a11a-93fb-4acd-b8ad-5474031e83b0") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C12") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 114.3 116.84 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "bd54788e-e585-43a9-bac1-d465211bbaa6") + (property "Reference" "#PWR018" + (at 120.65 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 118.11 116.8399 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 114.3 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 114.3 116.84 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a50fcf50-e714-4c16-b281-fb60c24f98f2") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR018") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,10pF") + (at 110.49 41.91 90) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "bea934d7-479b-4bb2-9a6b-ba14e635406a") + (property "Reference" "C9" + (at 110.49 50.8 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "10pF" + (at 110.8682 43.942 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 110.49 40.132 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05C100JB5NNNC_C32949.pdf" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "50V 10pF C0G ±5% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C32949" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "564575" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.007USD" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05C100JB5NNNC" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "50V" + (at 112.5362 43.942 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±5%" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "10pF" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "C0G" + (at 110.49 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "e5ad9e53-5aaa-4be8-a86b-9c5d85b9114d") + ) + (pin "1" + (uuid "7361793f-2dd2-482f-b00e-506b420e330d") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Resistors:0402,10kΩ") + (at 119.38 80.01 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c0595355-ac0c-41de-927b-d94f40e55e7b") + (property "Reference" "R8" + (at 121.92 80.0099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10kΩ" + (at 119.38 80.01 90) + (do_not_autoplace yes) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at 117.602 80.01 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2411221126_UNI-ROYAL-Uniroyal-Elec-0402WGF1002TCE_C25744.pdf" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 10kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25744" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "24372091" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF1002TCE" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "10kΩ" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 119.38 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2a1ef918-a304-4332-80ac-97c2911a32cc") + ) + (pin "2" + (uuid "1a82e04f-9b3b-4a98-b81c-fc0bcbf4c749") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "R8") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+5V") + (at 114.3 114.3 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c1933782-680b-4bbb-b708-cd021cd6645b") + (property "Reference" "#PWR017" + (at 110.49 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+5V" + (at 118.11 114.2999 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 114.3 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+5V\"" + (at 114.3 114.3 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "9d51e13e-c9f7-43c3-bf95-1a501950c38d") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR017") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 114.3 129.54 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c1f95246-80d4-4041-9c36-568b4d61fe85") + (property "Reference" "#PWR027" + (at 120.65 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 118.11 129.5399 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 114.3 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 114.3 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "fa7b9d5b-07d1-4ffa-aded-15e89f3dd459") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR027") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VBUS") + (at 60.96 20.32 0) + (mirror y) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c24bc8da-3398-4bdb-991d-f9839f7bc90b") + (property "Reference" "#PWR03" + (at 60.96 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VBUS" + (at 60.96 15.24 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 60.96 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 60.96 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VBUS\"" + (at 60.96 20.32 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "20ce47ba-030d-4ef5-809e-3fd63159ee33") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR03") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 17.78 68.58 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c4278c35-cfe6-4684-b3fd-46c415ea8863") + (property "Reference" "#PWR01" + (at 17.78 74.93 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 17.78 73.66 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 17.78 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 17.78 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 17.78 68.58 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "1cfb65bf-43e0-4755-ba29-a383933852bd") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR01") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Connectors_Buttons:Tactile Button, 160gf, 12V, 50mA, 4.0mm") + (at 90.17 69.85 180) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "c72c8a08-fec4-4da3-a8c5-b4ac3bb8e51b") + (property "Reference" "S2" + (at 83.8199 75.184 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Value" "Tactile Button, 160gf" + (at 86.36 75.184 90) + (effects + (font + (size 0.8 0.8) + ) + (justify right) + ) + ) + (property "Footprint" "PCM_JLCPCB:SW_TS-1088-AR02016" + (at 90.17 59.69 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_XUNPU-TS-1088-AR02016_C720477.pdf" + (at 92.456 69.977 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "Without 50mA 4mm 100MΩ 100000 Times 12V 160gf 3mm 2mm Round Button Standing paste SPST SMD Tactile Switches ROHS" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C720477" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "346801" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.044USD" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "5" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "4" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Switches,Tactile Switches" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "XUNPU" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "TS-1088-AR02016" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Switch Length" "4mm" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rating (Dc)" "12V" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "With Lamp" "No" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Force" "160gf@±50gf" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Actuator/Cap Color" "Black" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Mechanical Life" "100000 Times" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Strike Gundam" "NO" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Circuit" "SPST" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Switch Height" "2mm" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Actuator Style" "Round Button" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Switch Width" "3mm" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Contact Current" "50mA" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature" "-30°C~+80°C" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Mounting Style" "Brick nogging" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Insulation Resistance" "100MΩ" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Pin Style" "SMDSplicing" + (at 90.17 69.85 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "a3de7f12-63f9-43a9-aee2-e2ae06c28aa9") + ) + (pin "2" + (uuid "9301f3d9-c5c4-4c83-93a5-292da8b19896") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "S2") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 204.47 50.8 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c9373cd1-c0a5-42e5-b19e-ef27417cae26") + (property "Reference" "#PWR014" + (at 204.47 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 204.47 45.72 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 204.47 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 204.47 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 204.47 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "2a89b161-afdc-4c8f-b272-8a7438900671") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR014") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Capacitors:0402,100nF") + (at 194.31 30.48 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "c94686e7-a4a3-46ff-acd2-d9336694218a") + (property "Reference" "C5" + (at 196.85 27.9399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "100nF" + (at 196.85 30.48 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:C_0402" + (at 192.532 30.48 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2304140030_Samsung-Electro-Mechanics-CL05B104KO5NNNC_C1525.pdf" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "16V 100nF X7R ±10% 0402 Multilayer Ceramic Capacitors MLCC - SMD/SMT ROHS" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C1525" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "20208285" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Capacitors,Multilayer Ceramic Capacitors MLCC - SMD/SMT" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Samsung Electro-Mechanics" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "CL05B104KO5NNNC" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Voltage Rated" "16V" + (at 196.85 33.02 0) + (effects + (font + (size 0.8 0.8) + ) + (justify left) + ) + ) + (property "Tolerance" "±10%" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Capacitance" "100nF" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "X7R" + (at 194.31 30.48 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b12fef16-34b2-4c23-8d1a-3b9221aacb61") + ) + (pin "2" + (uuid "21c987b4-bad0-44d5-be1a-31ff321cb219") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "C5") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 31.75 129.54 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cb133587-f83c-4d70-be3c-0d7c3d02b796") + (property "Reference" "#PWR025" + (at 25.4 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 27.94 129.5399 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 31.75 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 31.75 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 31.75 129.54 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "39310378-4de4-4e63-aeb0-0f6a0a89bca6") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR025") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 97.79 36.83 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cc559859-1c00-43f4-bfcf-b0e0f104bdcb") + (property "Reference" "#PWR02" + (at 97.79 43.18 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 97.79 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 97.79 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 97.79 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 97.79 36.83 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "347a41b0-5cb7-4fce-9c45-ea40a7b21265") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR02") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 96.52 63.5 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "cde1fb4a-d126-4242-ac6a-a37fc858fa3e") + (property "Reference" "#PWR012" + (at 96.52 67.31 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 96.52 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 96.52 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 96.52 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 96.52 63.5 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "543862b3-22c8-4ca1-97e9-7c9dcafe10c6") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR012") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 60.96 52.07 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d03d0abb-fc54-423d-a96d-f8d667dc7e92") + (property "Reference" "#PWR011" + (at 60.96 58.42 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 60.96 57.15 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 60.96 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 60.96 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 60.96 52.07 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "b29e4f93-bd37-4948-b549-30b54307e54d") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR011") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Resistors:0402,330Ω") + (at 125.73 54.61 270) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "d049b135-eff4-453b-a00b-9412484f45c7") + (property "Reference" "R4" + (at 125.73 58.42 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "330Ω" + (at 125.73 54.61 90) + (do_not_autoplace yes) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at 125.73 56.388 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2205311900_UNI-ROYAL-Uniroyal-Elec-0402WGF3300TCE_C25104.pdf" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 330Ω 0402 Chip Resistor - Surface Mount ROHS" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25104" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "1159127" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF3300TCE" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "330Ω" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 125.73 54.61 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "2" + (uuid "5ad5f356-b95c-41d8-a65f-d0141f1bf640") + ) + (pin "1" + (uuid "d4f716cf-10dc-4854-ba53-0034df22f875") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "R4") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Extended:Connector, USB-TYPE-C-16P") + (at 25.4 39.37 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d080791b-a954-4c61-b00f-85e5588e23e2") + (property "Reference" "J1" + (at 25.4 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "Connector, USB-TYPE-C-16P" + (at 27.94 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "PCM_JLCPCB:TYPE-C-SMD_HX-TYPE-C-16PIN" + (at 25.4 49.53 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://atta.szlcsc.com/upload/public/pdf/source/20220920/0EF8F885FCCEA71F60E9E85152155021.pdf" + (at 23.114 39.243 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "3A 1 Horizontal attachment 16P Female -25℃~+85℃ Type-C SMD USB Connectors ROHS" + (at 27.94 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C2927039" + (at 27.94 38.1 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "B6" + (uuid "a8602dfa-e0fc-4958-a625-c099db33157a") + ) + (pin "B5" + (uuid "a6e35f24-f22a-449a-9a7a-f704cc6e13f7") + ) + (pin "B8" + (uuid "db6515f7-07dc-446f-8161-66ede1cd18db") + ) + (pin "A7" + (uuid "d72e5dbb-c475-4bbd-9fe2-a4e7e8168644") + ) + (pin "S1" + (uuid "5429c679-200a-4f28-90f9-98a6a31c4eea") + ) + (pin "A5" + (uuid "aa2cbffb-91a6-4131-87b4-413dec153449") + ) + (pin "B12A1" + (uuid "4b884dcf-7cc9-42d0-aa83-659a034efe3c") + ) + (pin "A9B4" + (uuid "e22ae76b-adac-46d2-ac95-cdffb7a4fddb") + ) + (pin "A8" + (uuid "aefeffb0-a1b6-456b-95e1-9788ea640441") + ) + (pin "B9A4" + (uuid "828d7306-ce76-44e5-a530-f7f1a8ab7f9d") + ) + (pin "A6" + (uuid "d7ebd10a-35e5-482c-8d00-1fdfed98d6ba") + ) + (pin "A12B1" + (uuid "6756a24c-61d3-42fb-b61b-8c9554df91df") + ) + (pin "B7" + (uuid "e85f2423-5eec-4a2a-befb-bdc0ab14c56c") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "J1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Diode-Packages:Package, H5VUT1B") + (at 66.04 41.91 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d140b889-6492-4bb2-82a2-50ab7e0cb11e") + (property "Reference" "D3" + (at 74.93 40.6399 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "H5VUT1B" + (at 74.93 43.1799 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "PCM_JLCPCB:SOT-143-4_L2.9-W1.3-P1.90-LS2.4-BL-1" + (at 66.04 52.07 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://wmsc.lcsc.com/wmsc/upload/file/pdf/v2/lcsc/2405091603_hongjiacheng-H5VUT1B_C22395520.pdf" + (at 63.754 41.783 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "5A 75W 15V 6V Bidirectional 5V SOT-143 ESD and Surge Protection (TVS/ESD) ROHS" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C22395520" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "10590" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.054USD" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "5" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "4" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Preferred Component" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Circuit Protection,ESD And Surge Protection (TVS/ESD)" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "hongjiacheng" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "H5VUT1B" + (at 66.04 41.91 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "0870d14c-cf15-4af0-99f0-35d9a39931c5") + ) + (pin "1" + (uuid "2ce890d2-118c-4178-90b1-19870f1630c7") + ) + (pin "2" + (uuid "84601992-60e4-4c2c-a025-3f3657a0d057") + ) + (pin "3" + (uuid "7ddefb24-a7bb-4e05-9c37-72ee168f0a09") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "D3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Resistors:0402,10kΩ") + (at 111.76 80.01 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d1d19b8d-2c92-468c-953b-7507654198ff") + (property "Reference" "R9" + (at 114.3 80.0099 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "10kΩ" + (at 111.76 80.01 90) + (do_not_autoplace yes) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at 109.982 80.01 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2411221126_UNI-ROYAL-Uniroyal-Elec-0402WGF1002TCE_C25744.pdf" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 10kΩ 0402 Chip Resistor - Surface Mount ROHS" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25744" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "24372091" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF1002TCE" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "10kΩ" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 111.76 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "890108ac-c4f3-40ed-8ecf-9314c094e31f") + ) + (pin "2" + (uuid "0f82daee-c5a6-4e57-9aaf-2e3753f5b670") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "R9") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Resistors:0402,150Ω") + (at 220.98 76.2 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d43f48d3-dab1-4541-9308-2edba287c78f") + (property "Reference" "R3" + (at 223.52 76.1999 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Value" "150Ω" + (at 220.98 76.2 90) + (do_not_autoplace yes) + (effects + (font + (size 0.8 0.8) + ) + ) + ) + (property "Footprint" "PCM_JLCPCB:R_0402" + (at 219.202 76.2 90) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2205311900_UNI-ROYAL-Uniroyal-Elec-0402WGF1500TCE_C25082.pdf" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "62.5mW Thick Film Resistors 50V ±100ppm/°C ±1% 150Ω 0402 Chip Resistor - Surface Mount ROHS" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C25082" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "487873" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.004USD" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "20" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "10" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Preferred Component" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Resistors,Chip Resistor - Surface Mount" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "UNI-ROYAL(Uniroyal Elec)" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "0402WGF1500TCE" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Resistance" "150Ω" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Power(Watts)" "62.5mW" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Thick Film Resistors" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Overload Voltage (Max)" "50V" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature Range" "-55°C~+155°C" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Tolerance" "±1%" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Temperature Coefficient" "±100ppm/°C" + (at 220.98 76.2 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "955bf0f8-7bdf-4ce0-ab1e-df1551fd6c8e") + ) + (pin "2" + (uuid "ee9f2b5f-183a-49ab-b24f-b836387473d6") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "R3") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 114.3 119.38 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "d508969e-14e2-4e4c-a539-eff5bef1127a") + (property "Reference" "#PWR019" + (at 110.49 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 118.11 119.3799 90) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + ) + ) + (property "Footprint" "" + (at 114.3 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 114.3 119.38 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3770db1f-8aed-453d-81d3-f66ff6a2c379") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR019") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 111.76 86.36 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "e34b24dd-3771-4ab9-819e-e0e9ef45a4d9") + (property "Reference" "#PWR013" + (at 111.76 92.71 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 111.76 91.44 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 111.76 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 111.76 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 111.76 86.36 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "456cf7b2-d7eb-4c81-b138-5298ea701aae") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR013") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "PCM_JLCPCB-Crystals:Crystal, 16MHz, 9pF") + (at 125.73 48.26 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "e8d42cda-b3c4-49fb-ab68-91c6a54c0052") + (property "Reference" "X1" + (at 125.73 40.64 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Value" "X322516MLB4SI" + (at 125.73 50.8 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Footprint" "PCM_JLCPCB:OSC-SMD_4P-L3.2-W2.5-BL" + (at 125.73 58.42 0) + (effects + (font + (size 1.27 1.27) + (italic yes) + ) + (hide yes) + ) + ) + (property "Datasheet" "https://www.lcsc.com/datasheet/lcsc_datasheet_2403291504_YXC-Crystal-Oscillators-X322516MLB4SI_C13738.pdf" + (at 123.444 48.133 0) + (effects + (font + (size 1.27 1.27) + ) + (justify left) + (hide yes) + ) + ) + (property "Description" "16MHz Surface Mount Crystal 9pF ±10ppm ±20ppm SMD3225-4P Crystals ROHS" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "LCSC" "C13738" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Stock" "162087" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Price" "0.068USD" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Process" "SMT" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Minimum Qty" "5" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Attrition Qty" "4" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Class" "Basic Component" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Category" "Crystals/Oscillators/Resonators,Crystals" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Manufacturer" "Yangxing Tech" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Part" "X322516MLB4SI" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Frequency" "16MHz" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Frequency Stability" "±20ppm" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Operating Temperature" "-40°C~+85°C" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Frequency Tolerance" "±10ppm" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Crystal Type" "SMD Crystal Resonator" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Load Capacitance" "9pF" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Normal Temperature Frequency Tolerance" "±10ppm" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Type" "Surface Mount Crystal" + (at 125.73 48.26 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "4" + (uuid "95f46cab-6d7f-4b69-a8cc-6835ec904b93") + ) + (pin "1" + (uuid "44c2844c-a99d-4d21-b3db-adda77aaf097") + ) + (pin "2" + (uuid "1a4b2de1-69ef-4922-995c-94aedbf3542e") + ) + (pin "3" + (uuid "cae1fe91-c354-467b-bdd7-4664d743a6f2") + ) + (instances + (project "" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "X1") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 114.3 142.24 90) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "eb43f5eb-7880-4509-9651-0bea177e43e5") + (property "Reference" "#PWR022" + (at 120.65 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 118.11 142.2399 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 114.3 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 114.3 142.24 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "3cb3df7b-20ac-4a59-9ae0-a3a809d70db9") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR022") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:VBUS") + (at 114.3 111.76 270) + (mirror x) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (uuid "ef5cc2f0-7f42-43e9-a787-c62998df6fe8") + (property "Reference" "#PWR016" + (at 110.49 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "VBUS" + (at 119.38 111.76 90) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 114.3 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 114.3 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"VBUS\"" + (at 114.3 111.76 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "df569f3a-3a57-44a3-86fe-b04f841fe095") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR016") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:GND") + (at 205.74 80.01 270) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "f9664378-cb20-4e3f-99ce-84c900ab6081") + (property "Reference" "#PWR020" + (at 199.39 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "GND" + (at 201.93 80.0099 90) + (effects + (font + (size 1.27 1.27) + ) + (justify right) + ) + ) + (property "Footprint" "" + (at 205.74 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 205.74 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"GND\" , ground" + (at 205.74 80.01 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "737099c2-d10c-4984-9b6d-bb8260dad7fc") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR020") + (unit 1) + ) + ) + ) + ) + (symbol + (lib_id "power:+3.3V") + (at 170.18 24.13 0) + (unit 1) + (exclude_from_sim no) + (in_bom yes) + (on_board yes) + (dnp no) + (fields_autoplaced yes) + (uuid "fb450350-6e8e-4859-9b9e-8c56da1a9f96") + (property "Reference" "#PWR07" + (at 170.18 27.94 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Value" "+3.3V" + (at 170.18 19.05 0) + (effects + (font + (size 1.27 1.27) + ) + ) + ) + (property "Footprint" "" + (at 170.18 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Datasheet" "" + (at 170.18 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (property "Description" "Power symbol creates a global label with name \"+3.3V\"" + (at 170.18 24.13 0) + (effects + (font + (size 1.27 1.27) + ) + (hide yes) + ) + ) + (pin "1" + (uuid "846518f4-aa70-4bf3-80dc-3a017d0c7e1d") + ) + (instances + (project "mini-stm-board" + (path "/bca8bde7-1b71-423e-908f-8c2dd8a84df5" + (reference "#PWR07") + (unit 1) + ) + ) + ) + ) + (sheet_instances + (path "/" + (page "1") + ) + ) + (embedded_fonts no) +)