diff --git a/Docs/ATTiny84-ATTiny44-pinout.png b/Docs/ATTiny84-ATTiny44-pinout.png new file mode 100644 index 0000000..1fef8c1 Binary files /dev/null and b/Docs/ATTiny84-ATTiny44-pinout.png differ diff --git a/Firmware/TREM_test/TREM_test.ino b/Firmware/TREM_test/TREM_test.ino new file mode 100644 index 0000000..30c58e0 --- /dev/null +++ b/Firmware/TREM_test/TREM_test.ino @@ -0,0 +1,149 @@ +/* + * Tap Tremelo Pedal Firmware + * V1 by Dennis Gunia + * + * 2022/07 + * + */ + +#define lmicros() ((long)micros()) + +//Lookup Tables +static const uint8_t sineLUT[256] PROGMEM = { + 0x80, 0x83, 0x86, 0x89, 0x8c, 0x8f, 0x92, 0x95, 0x98, 0x9b, 0x9e, 0xa2, 0xa5, 0xa7, 0xaa, 0xad, + 0xb0, 0xb3, 0xb6, 0xb9, 0xbc, 0xbe, 0xc1, 0xc4, 0xc6, 0xc9, 0xcb, 0xce, 0xd0, 0xd3, 0xd5, 0xd7, + 0xda, 0xdc, 0xde, 0xe0, 0xe2, 0xe4, 0xe6, 0xe8, 0xea, 0xeb, 0xed, 0xee, 0xf0, 0xf1, 0xf3, 0xf4, + 0xf5, 0xf6, 0xf8, 0xf9, 0xfa, 0xfa, 0xfb, 0xfc, 0xfd, 0xfd, 0xfe, 0xfe, 0xfe, 0xff, 0xff, 0xff, + 0xff, 0xff, 0xff, 0xff, 0xfe, 0xfe, 0xfe, 0xfd, 0xfd, 0xfc, 0xfb, 0xfa, 0xfa, 0xf9, 0xf8, 0xf6, + 0xf5, 0xf4, 0xf3, 0xf1, 0xf0, 0xee, 0xed, 0xeb, 0xea, 0xe8, 0xe6, 0xe4, 0xe2, 0xe0, 0xde, 0xdc, + 0xda, 0xd7, 0xd5, 0xd3, 0xd0, 0xce, 0xcb, 0xc9, 0xc6, 0xc4, 0xc1, 0xbe, 0xbc, 0xb9, 0xb6, 0xb3, + 0xb0, 0xad, 0xaa, 0xa7, 0xa5, 0xa2, 0x9e, 0x9b, 0x98, 0x95, 0x92, 0x8f, 0x8c, 0x89, 0x86, 0x83, + 0x80, 0x7c, 0x79, 0x76, 0x73, 0x70, 0x6d, 0x6a, 0x67, 0x64, 0x61, 0x5d, 0x5a, 0x58, 0x55, 0x52, + 0x4f, 0x4c, 0x49, 0x46, 0x43, 0x41, 0x3e, 0x3b, 0x39, 0x36, 0x34, 0x31, 0x2f, 0x2c, 0x2a, 0x28, + 0x25, 0x23, 0x21, 0x1f, 0x1d, 0x1b, 0x19, 0x17, 0x15, 0x14, 0x12, 0x11, 0xf, 0xe, 0xc, 0xb, + 0xa, 0x9, 0x7, 0x6, 0x5, 0x5, 0x4, 0x3, 0x2, 0x2, 0x1, 0x1, 0x1, 0x0, 0x0, 0x0, + 0x0, 0x0, 0x0, 0x0, 0x1, 0x1, 0x1, 0x2, 0x2, 0x3, 0x4, 0x5, 0x5, 0x6, 0x7, 0x9, + 0xa, 0xb, 0xc, 0xe, 0xf, 0x11, 0x12, 0x14, 0x15, 0x17, 0x19, 0x1b, 0x1d, 0x1f, 0x21, 0x23, + 0x25, 0x28, 0x2a, 0x2c, 0x2f, 0x31, 0x34, 0x36, 0x39, 0x3b, 0x3e, 0x41, 0x43, 0x46, 0x49, 0x4c, + 0x4f, 0x52, 0x55, 0x58, 0x5a, 0x5d, 0x61, 0x64, 0x67, 0x6a, 0x6d, 0x70, 0x73, 0x76, 0x79, 0x7c +}; + +static const uint8_t bumpLUT[256] PROGMEM = { + 0, 4, 7, 10, 13, 16, 19, 22, 25, 29, 32, 35, 38, 41, 44, 47, + 50, 53, 56, 59, 62, 65, 69, 72, 75, 78, 80, 83, 86, 89, 92, 95, + 98, 101, 104, 107, 110, 112, 115, 118, 121, 123, 126, 129, 132, 134, 137, 140, + 142, 145, 147, 150, 152, 155, 157, 160, 162, 165, 167, 169, 172, 174, 176, 179, + 181, 183, 185, 187, 189, 192, 194, 196, 198, 200, 202, 203, 205, 207, 209, 211, + 213, 214, 216, 218, 219, 221, 222, 224, 225, 227, 228, 230, 231, 232, 234, 235, + 236, 237, 238, 240, 241, 242, 243, 244, 245, 245, 246, 247, 248, 249, 249, 250, + 251, 251, 252, 252, 253, 253, 254, 254, 254, 255, 255, 255, 255, 255, 255, 255, + 255, 255, 255, 255, 255, 255, 255, 255, 254, 254, 254, 253, 253, 252, 252, 251, + 251, 250, 249, 249, 248, 247, 246, 245, 245, 244, 243, 242, 241, 240, 238, 237, + 236, 235, 234, 232, 231, 230, 228, 227, 225, 224, 222, 221, 219, 218, 216, 214, + 213, 211, 209, 207, 205, 203, 202, 200, 198, 196, 194, 192, 189, 187, 185, 183, + 181, 179, 176, 174, 172, 169, 167, 165, 162, 160, 157, 155, 152, 150, 147, 145, + 142, 140, 137, 134, 132, 129, 126, 123, 121, 118, 115, 112, 110, 107, 104, 101, + 98, 95, 92, 89, 86, 83, 80, 78, 75, 72, 69, 65, 62, 59, 56, 53, + 50, 47, 44, 41, 38, 35, 32, 29, 25, 22, 19, 16, 13, 10, 7, 4 +}; + +//Waveform Constants +#define WF_SAW 1 +#define WF_SINE 2 +#define WF_SQUARE 4 + +int depth = 0; +unsigned long delayTime = 1; +uint8_t waveform = WF_SINE; + +uint8_t symetry = 127; +uint16_t wfStep = 0; + +unsigned long lastStep = millis(); +unsigned long lastTest = millis(); + +//IO Pin Definition +#define PIN_A_RATE A1 //Pot Rate +#define PIN_A_DEPTH A2 //Pot Depth +#define PIN_A_SHAPE A0 //Pot Shape +#define PIN_A_MUL A3 //Pot Clock-Modifier + +#define PIN_D_WF1 7 //Waveform Switch Pole 1 +#define PIN_D_WF2 10 //Waveform Switch Pole 2 +#define PIN_D_TAP 9 //Tap Tempo Push button +#define PIN_D_MOD 8 //Tempo Modulation Switch + +#define PIN_PWM A5 + +void setup() { + // setup Timer 1 to 31.2kHz @ 8 Bit + TCCR1B &= 0b11100000; + TCCR1B |= 0b00001001; + TCCR1A &= 0b11111100; + TCCR1A |= 0b00000001; + + //Set input pins to pullup + pinMode(PIN_D_WF1, INPUT_PULLUP); + pinMode(PIN_D_WF2, INPUT_PULLUP); + pinMode(PIN_D_TAP, INPUT_PULLUP); + pinMode(PIN_D_MOD, INPUT_PULLUP); +} + +//Read pots and switch state +void getInput() { + depth = analogRead(PIN_A_DEPTH) / 4; + //delayTime = map(analogRead(A1),0,1023,5000,20000); + delayTime = map(analogRead(PIN_A_RATE), 0, 1023, 0, 40000); ; + symetry = map(analogRead(PIN_A_SHAPE), 0, 1023, 4, 251); ; + + waveform = WF_SINE; + if (digitalRead(PIN_D_WF1) == LOW) { + waveform = WF_SQUARE; + } + if (digitalRead(PIN_D_WF2) == LOW) { + waveform = WF_SAW; + } +} + +void loop() { + unsigned long millisNow = lmicros() / 8; //Timestamp NOW + + if (lastTest + 100 < millisNow) { //Get panel state every 100ms + lastTest = millisNow; + getInput(); + } + + if (lastStep < millisNow - delayTime) { //do waveform stuff + wfStep ++; + if (wfStep > 255) wfStep = 0; + lastStep = millisNow; + + + if ( waveform == WF_SAW ) { + // SAW/TRI + if (wfStep < symetry) { + analogWrite(PIN_PWM, map(wfStep, 0, symetry, depth, 255)); + } else { + analogWrite(PIN_PWM, map(wfStep, 255, symetry, depth, 255)); + } + } else if ( waveform == WF_SINE ) { + // SINE/BUMP + if ( symetry >= 63 && symetry <= 191){ + uint8_t val = pgm_read_word_near(sineLUT + (wfStep)); + analogWrite(PIN_PWM, map(val, 0, 255, depth, 255)); + }else{ + uint8_t val = pgm_read_word_near(bumpLUT + (wfStep)); + if (symetry > 127){val = 255-val;} + analogWrite(PIN_PWM, map(val, 0, 255, depth, 255)); + } + } else { + // SQUARE/PWM + if (wfStep < symetry) { + analogWrite(PIN_PWM, depth); + } else { + analogWrite(PIN_PWM, 255); + } + } + + } +} diff --git a/Front-Panel/partlist.md b/Front-Panel/partlist.md index ef56e32..08f2c21 100644 --- a/Front-Panel/partlist.md +++ b/Front-Panel/partlist.md @@ -1,48 +1,48 @@ -# Partlist -## Case -* 1x Box Type BB (https://www.musikding.de/Alu-Gehaeuse-Typ-BB) -* 2x 3PDT Footswitch (https://www.musikding.de/3PDT-Fussschalter) -* 1x Carling 1PST Footswitch (https://www.musikding.de/Carling-1PST-Fussschalter) -* 3x LED-Bezel 5mm chrome (https://www.musikding.de/LED-Fassung-5mm-Chrom-Innenreflektor) -* 3x 5mm LED -* 1x Alpha Potentiometer 16mm 50k log (https://www.musikding.de/Alpha-Potentiometer-16mm-50k-log) -* 4x Alpha Potentiometer 16mm 10k lin (https://www.musikding.de/Alpha-Potentiometer-16mm-10k-lin) -* 1x Toggleswitch 1 pole ON-OFF-ON (https://www.musikding.de/Kippschalter-1polig-ON-OFF-ON) - -## Circuit -### ICs -* 1x TL072 (https://www.reichelt.de/j-fet-operationsverstaerker-2-fach-16-v-s-4-mhz-dip-8-tl-072-dip-p21556.html?&trstct=pos_5&nbc=1) -* 1x LM13700 (https://www.reichelt.de/transkonduktanzverstaerker-2-fach-dip-16-lm-13700-dil-p10394.html?&trstct=pos_0&nbc=1) -* 1x Attiny (https://www.reichelt.de/8-bit-attiny-avr-risc-mikrocontroller-4-kb-10-mhz-dip-14-attiny-44v-10pu-p119689.html?&trstct=pos_1&nbc=1) -* 1x L7805 (https://www.reichelt.de/spannungsregler-fest-5-v-1-5a-4-to-220-l-7805-cv-p200897.html?&trstct=pos_0&nbc=1) -* 1x 2N4401 (https://www.reichelt.de/bipolartransistor-npn-40v-0-6a-0-25w-to-92-2n-4401-p219074.html?&trstct=pos_0&nbc=1) - -### Polarized Capacitor -* 1x 100uF 25V (https://www.reichelt.de/elko-radial-100-uf-25-v-105-c-low-esr-fm-a-100u-25-p200027.html?&trstct=pos_4&nbc=1) -* 5x 1uF (https://www.reichelt.de/elko-radial-1-0-f-250-v-rm-2-5-85-c-2000h-20--m-a-1-0u-250-p199804.html?&trstct=pol_3&nbc=1) -* 1x 47uF 16V (https://www.reichelt.de/elko-radial-47-f-16-v-rm-2-0-85-c-2000h-20--rad-47-16-p15142.html?&trstct=pol_0&nbc=1) - -### Film Capacitors -* 3x 100nF (https://www.reichelt.de/mks2-pet-kondensator-100-nf-10-63-vdc-rm-5-mks2-63-100n-p12349.html?&trstct=pos_1&nbc=1) -* 1x 330nF (https://www.reichelt.de/mks2-pet-kondensator-330-nf-5-63-vdc-rm-5-mks2-63-330n-p12355.html?&trstct=pol_0&nbc=1) - -### Resistors -* 1x 220R 5% -* 2x 1k 1% -* 2x 2k2 1% -* 1x 4k7 1% -* 2x 10k 5% -* 1x 20k 1% -* 1x 20k TRIM -* 3x 100k 1% -* 1x 120k 1% -* 1x 160k 1% -* 1x 330k 1% -* 1x 1M 1% - -### Diode -* 1x 1N5817 (Can be jumpered if required) - - -## Programming -* 1x ISP Programmer for AVR (https://www.fischl.de/usbasp/) +# Partlist +## Case +* 1x Box Type BB (https://www.musikding.de/Alu-Gehaeuse-Typ-BB) +* 2x 3PDT Footswitch (https://www.musikding.de/3PDT-Fussschalter) +* 1x Carling 1PST Footswitch (https://www.musikding.de/Carling-1PST-Fussschalter) +* 3x LED-Bezel 5mm chrome (https://www.musikding.de/LED-Fassung-5mm-Chrom-Innenreflektor) +* 3x 5mm LED +* 1x Alpha Potentiometer 16mm 50k log (https://www.musikding.de/Alpha-Potentiometer-16mm-50k-log) +* 4x Alpha Potentiometer 16mm 10k lin (https://www.musikding.de/Alpha-Potentiometer-16mm-10k-lin) +* 1x Toggleswitch 1 pole ON-OFF-ON (https://www.musikding.de/Kippschalter-1polig-ON-OFF-ON) + +## Circuit +### ICs +* 1x TL072 (https://www.reichelt.de/j-fet-operationsverstaerker-2-fach-16-v-s-4-mhz-dip-8-tl-072-dip-p21556.html?&trstct=pos_5&nbc=1) +* 1x LM13700 (https://www.reichelt.de/transkonduktanzverstaerker-2-fach-dip-16-lm-13700-dil-p10394.html?&trstct=pos_0&nbc=1) +* 1x Attiny (https://www.reichelt.de/8-bit-attiny-avr-risc-mikrocontroller-4-kb-10-mhz-dip-14-attiny-44v-10pu-p119689.html?&trstct=pos_1&nbc=1) +* 1x L7805 (https://www.reichelt.de/spannungsregler-fest-5-v-1-5a-4-to-220-l-7805-cv-p200897.html?&trstct=pos_0&nbc=1) +* 1x 2N4401 (https://www.reichelt.de/bipolartransistor-npn-40v-0-6a-0-25w-to-92-2n-4401-p219074.html?&trstct=pos_0&nbc=1) + +### Polarized Capacitor +* 1x 100uF 25V (https://www.reichelt.de/elko-radial-100-uf-25-v-105-c-low-esr-fm-a-100u-25-p200027.html?&trstct=pos_4&nbc=1) +* 5x 1uF (https://www.reichelt.de/elko-radial-1-0-f-250-v-rm-2-5-85-c-2000h-20--m-a-1-0u-250-p199804.html?&trstct=pol_3&nbc=1) +* 1x 47uF 16V (https://www.reichelt.de/elko-radial-47-f-16-v-rm-2-0-85-c-2000h-20--rad-47-16-p15142.html?&trstct=pol_0&nbc=1) + +### Film Capacitors +* 3x 100nF (https://www.reichelt.de/mks2-pet-kondensator-100-nf-10-63-vdc-rm-5-mks2-63-100n-p12349.html?&trstct=pos_1&nbc=1) +* 1x 330nF (https://www.reichelt.de/mks2-pet-kondensator-330-nf-5-63-vdc-rm-5-mks2-63-330n-p12355.html?&trstct=pol_0&nbc=1) + +### Resistors +* 1x 220R 5% +* 2x 1k 1% +* 2x 2k2 1% +* 1x 4k7 1% +* 2x 10k 5% +* 1x 20k 1% +* 1x 20k TRIM +* 3x 100k 1% +* 1x 120k 1% +* 1x 160k 1% +* 1x 330k 1% +* 1x 1M 1% + +### Diode +* 1x 1N5817 (Can be jumpered if required) + + +## Programming +* 1x ISP Programmer for AVR (https://www.fischl.de/usbasp/) diff --git a/Front-Panel/pedal_tornado.svg b/Front-Panel/pedal_tornado.svg index 9a6bacf..e3ef680 100644 --- a/Front-Panel/pedal_tornado.svg +++ b/Front-Panel/pedal_tornado.svg @@ -7,7 +7,7 @@ viewBox="0 0 1122.5197 793.70081" version="1.1" id="svg5" - inkscape:version="1.2 (dc2aedaf03, 2022-05-15)" + inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)" sodipodi:docname="pedal_tornado.svg" xml:space="preserve" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" @@ -24,16 +24,18 @@ inkscape:deskcolor="#d1d1d1" inkscape:document-units="mm" showgrid="true" - showguides="true" - inkscape:zoom="2.0000001" - inkscape:cx="94.999997" - inkscape:cy="237.99999" + showguides="false" + inkscape:zoom="1" + inkscape:cx="28.499999" + inkscape:cy="112" inkscape:window-width="1920" - inkscape:window-height="1027" - inkscape:window-x="1042" - inkscape:window-y="-8" + inkscape:window-height="956" + inkscape:window-x="1050" + inkscape:window-y="299" inkscape:window-maximized="1" - inkscape:current-layer="g3790">GUNIALABSRATERATEVOLUMEVOLUMEWAVEFORMWAVEFORMTIME-MODTIME-MODDEPTHDEPTHSHAPESHAPEMODMODTEMPOTEMPOBYPASSBYPASSTORNADOGUNIALABS + id="tspan8868-62-9-8-9-7-4" + x="168.67932" + y="280.20657" + style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:64px;font-family:Stormfaze;-inkscape-font-specification:Stormfaze;text-align:center;text-anchor:middle;fill:#000000;fill-opacity:0.97182447;stroke-width:0.670767">VIBES diff --git a/Front-Panel/rescources/Outrun future Bold Italic.otf b/Front-Panel/rescources/Outrun future Bold Italic.otf new file mode 100644 index 0000000..c629421 Binary files /dev/null and b/Front-Panel/rescources/Outrun future Bold Italic.otf differ diff --git a/Front-Panel/rescources/Outrun future Bold.otf b/Front-Panel/rescources/Outrun future Bold.otf new file mode 100644 index 0000000..4eaf5f0 Binary files /dev/null and b/Front-Panel/rescources/Outrun future Bold.otf differ diff --git a/Front-Panel/rescources/Outrun future.otf b/Front-Panel/rescources/Outrun future.otf new file mode 100644 index 0000000..c2b9193 Binary files /dev/null and b/Front-Panel/rescources/Outrun future.otf differ diff --git a/Front-Panel/rescources/stormfaze.ttf b/Front-Panel/rescources/stormfaze.ttf new file mode 100644 index 0000000..f2713cd Binary files /dev/null and b/Front-Panel/rescources/stormfaze.ttf differ diff --git a/Schematics/Trem.kicad_pcb b/Schematics/Trem.kicad_pcb index 0f024c8..57ee448 100644 --- a/Schematics/Trem.kicad_pcb +++ b/Schematics/Trem.kicad_pcb @@ -1,3219 +1,3219 @@ -(kicad_pcb (version 20211014) (generator pcbnew) - - (general - (thickness 1.6) - ) - - (paper "A4") - (layers - (0 "F.Cu" signal) - (31 "B.Cu" signal) - (32 "B.Adhes" user "B.Adhesive") - (33 "F.Adhes" user "F.Adhesive") - (34 "B.Paste" user) - (35 "F.Paste" user) - (36 "B.SilkS" user "B.Silkscreen") - (37 "F.SilkS" user "F.Silkscreen") - (38 "B.Mask" user) - (39 "F.Mask" user) - (40 "Dwgs.User" user "User.Drawings") - (41 "Cmts.User" user "User.Comments") - (42 "Eco1.User" user "User.Eco1") - (43 "Eco2.User" user "User.Eco2") - (44 "Edge.Cuts" user) - (45 "Margin" user) - (46 "B.CrtYd" user "B.Courtyard") - (47 "F.CrtYd" user "F.Courtyard") - (48 "B.Fab" user) - (49 "F.Fab" user) - (50 "User.1" user) - (51 "User.2" user) - (52 "User.3" user) - (53 "User.4" user) - (54 "User.5" user) - (55 "User.6" user) - (56 "User.7" user) - (57 "User.8" user) - (58 "User.9" user) - ) - - (setup - (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.51) (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")) - (layer "B.SilkS" (type "Bottom Silk Screen")) - (copper_finish "None") - (dielectric_constraints no) - ) - (pad_to_mask_clearance 0) - (pcbplotparams - (layerselection 0x00010fc_ffffffff) - (disableapertmacros false) - (usegerberextensions false) - (usegerberattributes true) - (usegerberadvancedattributes true) - (creategerberjobfile true) - (svguseinch false) - (svgprecision 6) - (excludeedgelayer true) - (plotframeref false) - (viasonmask false) - (mode 1) - (useauxorigin false) - (hpglpennumber 1) - (hpglpenspeed 20) - (hpglpendiameter 15.000000) - (dxfpolygonmode true) - (dxfimperialunits true) - (dxfusepcbnewfont true) - (psnegative false) - (psa4output false) - (plotreference true) - (plotvalue true) - (plotinvisibletext false) - (sketchpadsonfab false) - (subtractmaskfromsilk false) - (outputformat 1) - (mirror false) - (drillshape 1) - (scaleselection 1) - (outputdirectory "") - ) - ) - - (net 0 "") - (net 1 "Net-(C1-Pad1)") - (net 2 "Net-(C1-Pad2)") - (net 3 "+9V") - (net 4 "GND") - (net 5 "/VREF") - (net 6 "+5V") - (net 7 "Net-(C7-Pad1)") - (net 8 "Net-(C7-Pad2)") - (net 9 "Net-(C10-Pad2)") - (net 10 "Net-(C12-Pad1)") - (net 11 "Net-(C12-Pad2)") - (net 12 "Net-(C13-Pad1)") - (net 13 "Net-(C13-Pad2)") - (net 14 "Net-(D1-Pad2)") - (net 15 "Net-(D2-Pad2)") - (net 16 "Net-(D3-Pad1)") - (net 17 "Net-(Q1-Pad2)") - (net 18 "Net-(R2-Pad2)") - (net 19 "Net-(R7-Pad2)") - (net 20 "Net-(R9-Pad1)") - (net 21 "Net-(R10-Pad2)") - (net 22 "Net-(R11-Pad2)") - (net 23 "Net-(R12-Pad1)") - (net 24 "Net-(RV1-Pad2)") - (net 25 "Net-(RV2-Pad2)") - (net 26 "Net-(RV3-Pad2)") - (net 27 "Net-(J3-PadT)") - (net 28 "Net-(RV5-Pad2)") - (net 29 "Net-(SW1-Pad1)") - (net 30 "Net-(SW1-Pad3)") - (net 31 "Net-(SW2-Pad1)") - (net 32 "Net-(U2-Pad10)") - (net 33 "unconnected-(U2-Pad15)") - (net 34 "unconnected-(U4-Pad2)") - (net 35 "unconnected-(U4-Pad7)") - (net 36 "unconnected-(U4-Pad9)") - (net 37 "unconnected-(U4-Pad5)") - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp 05e9f488-d98f-4bff-b9c6-8c3f864a7672) - (at 97.9424 106.934) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/497a3aba-0f0c-436e-9543-aa7c20ad968e") - (attr through_hole) - (fp_text reference "R3" (at 9.6012 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1e588fe6-d889-44aa-bb74-5390d59bc688) - ) - (fp_text value "2k2" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 46dfd281-b32d-4a8e-8251-cef41db42a05) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 7828a4c7-1e0c-445a-8b2c-29c737fd4e7c) - ) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 5e18305f-c817-4549-85df-76301fe01d43)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 96ab58bf-6f92-44a4-af94-c8756a24f7ac)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 9c4b8242-0057-4c25-b195-329d5841b9a6)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp a5a8e6c8-c0ef-4f44-8841-8e7470fdce39)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp b435b6f4-0734-4692-adf6-282cdbc143c4)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp c23a315c-211f-49e4-8579-3520f0884fed)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 1c395c0b-7483-4900-a09e-688c50191497)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 552235b3-e219-4494-b879-9d1de2047a11)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 6245b202-aefb-4253-9f55-72b5ba9ec7fa)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp d37c2d0d-38d9-4ffa-83ad-33dc93bee583)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 3ef92aab-8dcd-46e4-8209-d6aacda55bd8)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 578b562f-58b8-4603-9d3d-3ca112d9a75c)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 65ffc231-5375-40ec-96d9-856045f82a80)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp ac87653a-92e6-4432-a75c-9d2285312777)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp c620c6da-2c21-476e-b0ff-eb4d6668663f)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp d5fe484c-dbba-4c77-ba9d-efb9feb9385f)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 3 "+9V") (pintype "passive") (tstamp 347b0674-10cc-4190-9cb5-b9daf925c427)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 5 "/VREF") (pintype "passive") (tstamp 952ed099-351f-4274-8aae-7fad298dc875)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp 17882404-3ab2-43ac-8dc5-ca2599064037) - (at 93.218 91.948 180) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/59e71b82-fd2c-4d50-9aac-2d0df67acc80") - (attr through_hole) - (fp_text reference "R12" (at 10.16 0 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7682a6a3-368f-41bf-b3ff-ce35ba2e6143) - ) - (fp_text value "20k" (at 3.81 1.92 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 9effcb07-2ded-4e39-9f9b-c65e4d99891a) - ) - (fp_text user "${REFERENCE}" (at 3.81 0 180) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp fa235e93-bae4-466a-a281-8ac2950a3146) - ) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 16566028-0ed0-4935-b8f1-979d8f067090)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 2869b137-776b-48ff-85c2-ac73eb96b330)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 50dc37d9-d46d-43cb-95c3-e91bcbb358c7)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 9b31db2d-0554-42ba-a301-82e4143b9675)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 9e179446-9863-4cc8-a0d5-4367254f4d3e)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp e3494af7-0737-4355-8bee-b96a79e0cb27)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 1c2c5682-b984-4c0c-861d-095434eeba36)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2056259b-15a4-4625-a432-a755e17fe30b)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2e8a5ee4-a4b9-42d5-936b-657a3099bbdb)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 42b72fe8-9e97-479d-ac14-742fcc9ad3b5)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 06c519e1-cd38-4f62-a7e3-fdd27aeb04d2)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 1e77c073-f58a-4ed3-884f-bc73f367a983)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 7d186cb8-c672-43f2-bf81-b7780ae7d261)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp ce906568-9c18-484d-aeb6-d223d2ccb6b4)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp d0f5cfe2-5c6d-44c9-978b-141d5e1283da)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp f3e4aaa5-7c09-4a02-991b-6f0eb687594d)) - (pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 23 "Net-(R12-Pad1)") (pintype "passive") (tstamp c5159d68-a04d-42cf-bce9-ad5c6735c58d)) - (pad "2" thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 9 "Net-(C10-Pad2)") (pintype "passive") (tstamp 66271930-4c4c-4f57-9325-c41acfe8c68f)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp 1ea1a0e9-52bb-4959-820c-e56c5c992d58) - (at 107.379888 88.646) - (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") - (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/b1bf0a93-94b7-4ad4-93ae-35edc64006ad") - (attr through_hole) - (fp_text reference "C1" (at -2.350888 -2.286) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 04b59968-7a05-4d69-bb25-b546d73a2e96) - ) - (fp_text value "1uF" (at 1.25 3.75) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3e593406-16aa-4be8-a83c-5de6b749b0d3) - ) - (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 86e0952e-8053-4907-bc9d-2d40531ecc9f) - ) - (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0108fbbd-bb2f-4247-9e7c-8ed949a2604f)) - (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 017b17bc-e4b2-45e0-abc8-b321a15699c3)) - (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 02339e38-867e-41a4-b7bd-204e487cb47a)) - (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp 044e60fb-da14-4b3f-b1e9-7c8812529026)) - (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 04bddc04-2393-4d89-9124-143043c5026d)) - (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 05f66506-ba12-4236-906d-a52285d17a0b)) - (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 09a4a3c7-4cfe-4d09-9dae-c7b8cb635e58)) - (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 0bfaa013-c5fc-4356-ad40-c80414bb0177)) - (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0fd8f2c4-697a-421a-99d2-4cff4356d6d4)) - (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 1090b6c4-98b1-4d1a-8b63-643e298f09a7)) - (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 11ce4cb9-82d7-429c-8d84-58a54849ed3a)) - (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 123d1d55-670a-447f-8e1b-e9aad6940438)) - (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 13369876-4d9d-4d99-85a1-06718375ca94)) - (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp 14e39f89-6c6e-4964-a30e-d63a2bff82dd)) - (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 1b1011cc-0ab2-4dbc-8461-a3cfdb4e9a2a)) - (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 1faa5b2c-b56b-4d51-9747-807bb12a6e52)) - (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 214a1006-416b-43fb-b057-a97bf828db3d)) - (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 22b393f0-b870-4935-a183-9419a51280a3)) - (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 249d46ef-861c-41d3-a19e-4af23226d63f)) - (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp 25f87129-bc6c-473b-9eb2-a9428503eb19)) - (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 262fecdf-f8c2-4b86-8165-e1d32e400927)) - (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2630bbbc-cfb4-4378-b9d3-ad73d8b6db54)) - (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 2e59bc65-8cde-46ee-b3c8-45611cfae18f)) - (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 302c5429-499b-44bb-974c-ac10a1de8214)) - (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 3046e951-947d-4208-83ed-e245302e14fb)) - (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 30e5a02a-58fc-435b-836c-f9ffcf16afad)) - (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 36317816-6847-4f5f-bf2a-106b23966aab)) - (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3772d108-fd10-4b9a-bd21-4380cb52f7d7)) - (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 39ae9528-0f4b-4e05-a22d-13f4a188c9aa)) - (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 3c523127-6787-4e07-ad09-6a6d476b6d02)) - (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 3e253691-4cfd-49d2-be81-9a6a0404a9e8)) - (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 3f9fa5f2-bcb9-40e7-88b5-9643866c2c09)) - (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3fdea1ab-4495-4a61-973b-a10754bf026b)) - (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 427d1fb2-164c-4d12-a129-b5289c6b2339)) - (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 42cb703a-4f0c-4f12-9c9c-b09dc7dd13c3)) - (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 43cc49f1-c2a6-4956-8598-cbb4dda38751)) - (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 46698ca7-3e6b-478d-b6fb-21a0f8138d38)) - (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 47508f5d-4e81-473f-b7e3-c7bf09eececf)) - (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp 4aafa072-c887-47ef-bbac-055d04952018)) - (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 4cf6a2b5-b92b-4c3b-bd97-cada6c7c2633)) - (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d72d9d3-3aa2-4416-9651-8bee7474657e)) - (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4f857da1-2902-49b0-bc96-8bf9ef66c2f7)) - (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 4fc4ca97-8f81-47d7-a6ff-8672915793cd)) - (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 502d44c0-099f-462e-b753-1196d4c7dd3b)) - (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 51fdd3a6-ec2b-41c9-890d-0c9d2352bc7e)) - (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 52d8fe88-fbf9-4a37-9e3b-924471e03a0f)) - (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 57ed4cec-0e2e-4af2-9e8a-60cd43d71f10)) - (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 5a5308a8-de53-472a-bf50-f08a2913ff9c)) - (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp 5c980244-6080-42b6-8ab6-bb8e9af847bb)) - (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 601ffb90-e272-4a6c-8729-358580445233)) - (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 638a2fc4-8c8f-458a-a963-e5b0e7edae40)) - (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp 67078537-ba9e-45e8-acd4-c803024508fd)) - (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp 6728366e-7c51-410e-9ce3-c2a2b2378084)) - (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 6761093e-23cb-4dd3-ac6c-ebbbd02826e8)) - (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6ce4df8c-410e-449c-a330-5a7c1ea7384e)) - (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 6e5be734-6700-47c1-b188-06ba6c057572)) - (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp 77a5ba23-133d-4f05-9523-53a4211f31f6)) - (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7bcbad32-174d-4336-8bd0-87727c28e580)) - (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp 8462c63a-b75a-4320-ac23-895e304b9488)) - (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp 8677718c-2fe4-4a7d-ae47-d63481eddf49)) - (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 87c348cc-f455-4292-a1ae-809282c9d698)) - (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 887ddace-23b0-43fe-b223-583fc8397a3f)) - (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 89098874-0f3d-4ffe-bd57-3c70416a59de)) - (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 89d1f92b-0c73-4af1-8349-329540534088)) - (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8a799bb5-2789-4fff-8150-f0a3dd931134)) - (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8cbd42d9-0716-4f47-a883-7ec472eef810)) - (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8db920dc-6c09-47ff-88bd-022f65597813)) - (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 9347c119-fc25-4285-add7-e9ff18ed009d)) - (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9433f0b1-17b1-417c-85f5-5d84dc4c34c8)) - (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 94ccd7e2-b9ad-4060-94d4-ec9d4ed47469)) - (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 95d7c7a6-7b10-4883-9eba-b02bf3f981c2)) - (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 9baf89b2-a5dd-41f1-814c-8c49ca50efff)) - (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9be3bdb5-ec21-47f3-bb0c-4f615e790339)) - (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp 9ccf7bf5-a564-47e1-a7eb-2f21d9509e0e)) - (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9e5fb38d-144e-4235-8681-b1bc7b0e4423)) - (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp a0287907-b531-4992-b122-e5d9aa2c7bf3)) - (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp a9691652-7919-4908-a85d-a3a1a4f67bf6)) - (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp aa0ea344-2276-4d54-88d3-0bd703e0a0a3)) - (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ab3a36a6-ea02-49dc-9d26-83f79070d4e5)) - (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp abf708e6-b733-496f-ada4-786f9e609fa1)) - (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp ae77e898-f313-4d8e-89d3-0f14e9f27538)) - (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp aeb62c25-5933-436f-9556-92ff61c6f96f)) - (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp af794a52-23e9-426a-93de-965014499fe5)) - (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp b117f5ac-d6c7-44b3-b127-ba4ebb130538)) - (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp b70c2097-3810-4749-8465-7d88634dcbd6)) - (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp b772bd7f-ed29-4f47-ac94-3e4d642b2843)) - (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b7f22e7d-45b7-4c19-b41d-bac1830c8807)) - (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp b8000dc8-0017-4011-82a9-a9b0b8d5a520)) - (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp b8947bff-7a95-4ea6-8d84-392193a0cabe)) - (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp ba557d87-1065-438c-953b-fef53fcba0f7)) - (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bc0f280f-8f7c-4b4c-a721-081d0c9b8ab3)) - (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp bfba1d27-ea4b-47cc-906c-ae0a122ca6d4)) - (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c4241693-558d-448b-8ac1-1207cb310561)) - (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c6b33335-cee7-4b8b-a461-bd4e24096417)) - (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp c90cebbd-c19b-4f56-8411-f757bbd27c34)) - (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp ca815669-7de9-4dbd-9580-e40033f02e04)) - (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp caad1ff8-2025-4ce6-a27e-a3c396d1eaa7)) - (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp cadac883-be79-4b51-a172-23d53cd51750)) - (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cb59ce31-1c5e-4dbc-b5ae-762c5ee500c3)) - (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp cb9c5b32-36ba-4c04-808d-2f3df25c85ac)) - (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp cc8f95e0-5c20-4437-a825-2fef84ac5cc7)) - (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp ce6d68c5-ce13-4e0b-96aa-729a039c9b3a)) - (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cf3bbb53-7114-4d94-b5e1-dbe976014894)) - (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cf5860c5-f7df-43c8-b812-8451d838ced6)) - (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d14f40de-6d81-48a2-a810-f96fb92ab1e6)) - (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d834d174-7533-432e-a863-658d7e4f208a)) - (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dbea2a22-5c4a-4139-ab42-46ca2eaf9e9e)) - (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dc0f35f8-d513-4a16-8c45-2c416762db8c)) - (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp dd031c2f-2c2f-4b40-9de6-8718642c041d)) - (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp df59c25b-f7ba-488c-89cb-f7894f627453)) - (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e2b27fb8-853c-4b7f-b30d-7f8909fd54ae)) - (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp e605659d-f34a-4826-87e9-fce8f3898d88)) - (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp e79271d9-9c14-4fc0-9f20-7a482daa8dd8)) - (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp ec0f99e4-854f-4426-afe3-acf5026cc500)) - (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp ef2aca1b-b9aa-405f-b78b-0d0f9fbd0322)) - (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f16375ec-716c-4232-9de7-b320a5adc528)) - (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp f7f3599d-4ec8-4b4d-94d9-5b91f01299f2)) - (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f88450c3-531d-4c27-81a0-d78e9b6dfc18)) - (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp fd9568df-cf05-4d00-a2e1-7970d39961bf)) - (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fed7e07c-d418-42b6-9a15-ee8744e02a35)) - (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 080fbdc3-8355-4fbc-95f2-09b8a9739433)) - (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b22101ec-c6a7-401e-a8ad-e051c70fb5f6)) - (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 5d4375d5-cdae-48a3-9322-4ef5b423d210)) - (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 829e6606-09e3-4c7f-83b0-fb553f9a91ea)) - (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp ef3ff475-b81a-4cd9-ac87-fa93345c8cc1)) - (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp 57bc708a-9b7d-4a9c-8e89-a188ff304059)) - (pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 2 "Net-(C1-Pad2)") (pintype "passive") (tstamp 7da992e9-9141-4eaa-aa2e-90ce0028041d)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp 23f55bc5-218f-4c81-bcc4-297aa64fa0b2) - (at 105.5624 109.0676 180) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/02d1e0a8-bf20-455f-b69e-845f84f2ba41") - (attr through_hole) - (fp_text reference "R4" (at -1.9812 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8c6168dc-23b5-49cb-ba74-fc4d02afb57a) - ) - (fp_text value "2k2" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7b32ff3b-6778-4f80-a92c-715cc331dee2) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp d0c37a91-8441-4208-b973-e75623f190a4) - ) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 56988e68-95f0-4ef9-a284-b1aa16da465d)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 5ecb95b2-cab6-47ec-a875-e71f86b750b4)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp b2465dfc-774b-407c-bce9-430813613e8c)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp cf76f21c-9b76-4b39-91ed-d3e953e5027f)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp e0755fce-e262-4042-96c2-db73e6c3e272)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp f5470066-90fd-4711-87c0-1de3eeca1e0f)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 1a4d19ef-b470-4372-baaa-89ac51aac223)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 375db310-c8c4-401b-9f40-3c5f76ed4a26)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 3801d23a-e9db-4562-9db1-ad2dd42ad23e)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 696bdbdc-0b54-41ec-b7b3-03eb2f12773a)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 44f39aa8-4b40-43cc-93d5-c566bbad4255)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 67017086-1b5b-4a48-bb8d-eadf83eaa186)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 8979c795-c6a1-4c77-be90-664daa6d86c3)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp b24da2f9-6f79-452f-a823-baee29c0c3a7)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp c5ee13d1-46e8-48aa-94a3-10d478e81291)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp ecc5b51d-af5c-48bf-9891-1beb425c8c7e)) - (pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 5 "/VREF") (pintype "passive") (tstamp 5833bc76-722f-41da-b652-c79d4754c3ec)) - (pad "2" thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp 1f6ffd5d-6389-42e1-8084-d445c2297a0d)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp 27c4978a-2231-4bb7-bb35-e9301b587623) - (at 90.852 94.996 180) - (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor") - (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/457f42c3-5be7-4c16-bf1a-e05a256ab5fe") - (attr through_hole) - (fp_text reference "C9" (at 7.286 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a48ae0b2-c976-4889-ab47-b1519ca8e568) - ) - (fp_text value "330nF" (at 2.5 3) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6d00df8e-5b3a-4ae1-be17-f24d170bc6a2) - ) - (fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f06d2129-236e-4b65-8683-cddb5521a2e0) - ) - (fp_line (start -1.12 1.87) (end 6.12 1.87) (layer "F.SilkS") (width 0.12) (tstamp 0ed5f7d3-71ac-42f5-b4a1-b173cdbffd29)) - (fp_line (start 6.12 -1.87) (end 6.12 1.87) (layer "F.SilkS") (width 0.12) (tstamp 42e096e2-1418-44d7-9e44-2cc0d8beee1c)) - (fp_line (start -1.12 -1.87) (end 6.12 -1.87) (layer "F.SilkS") (width 0.12) (tstamp 778a352c-253d-4551-bbab-44ffd34e2c17)) - (fp_line (start -1.12 -1.87) (end -1.12 1.87) (layer "F.SilkS") (width 0.12) (tstamp d4b90baf-67fb-4d09-a065-be123eec1112)) - (fp_line (start -1.25 -2) (end -1.25 2) (layer "F.CrtYd") (width 0.05) (tstamp 0dea6b87-ad04-46f3-8e63-d09f40b9efa3)) - (fp_line (start -1.25 2) (end 6.25 2) (layer "F.CrtYd") (width 0.05) (tstamp 637b567c-842e-4a94-9cd0-68f62d1f396a)) - (fp_line (start 6.25 2) (end 6.25 -2) (layer "F.CrtYd") (width 0.05) (tstamp a369cc91-bd9d-40b8-a16a-9f1d93adc625)) - (fp_line (start 6.25 -2) (end -1.25 -2) (layer "F.CrtYd") (width 0.05) (tstamp e367f95d-8621-4b5e-9075-f2ddeda37800)) - (fp_line (start 6 1.75) (end 6 -1.75) (layer "F.Fab") (width 0.1) (tstamp 16aea064-869a-4a44-8bd7-98ede3ea13a2)) - (fp_line (start 6 -1.75) (end -1 -1.75) (layer "F.Fab") (width 0.1) (tstamp 216b0b06-0160-43cf-96ec-cec8901b87ec)) - (fp_line (start -1 -1.75) (end -1 1.75) (layer "F.Fab") (width 0.1) (tstamp 74d0ff4c-195e-4424-8ac5-fdc868decf45)) - (fp_line (start -1 1.75) (end 6 1.75) (layer "F.Fab") (width 0.1) (tstamp b01117c2-5a90-46d0-87b6-5f6b6c8c8bff)) - (pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp aca6779d-cfd0-45d0-b17d-60dd6bd00311)) - (pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 9 "Net-(C10-Pad2)") (pintype "passive") (tstamp e6c36d63-a6d1-4f8d-a470-576dac6030cb)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W3.5mm_P5.00mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal" (layer "F.Cu") - (tedit 5AE50CD5) (tstamp 2a0f7467-556a-4ff6-88de-7b6a760ae3c5) - (at 95.377 106.934 180) - (descr "Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf") - (tags "Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/c9a434a4-34aa-480b-bad1-26f71e1cc532") - (attr through_hole) - (fp_text reference "D1" (at 12.446 -0.127) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 27f73be5-5b6d-4dcd-9c2b-08178b3c0f10) - ) - (fp_text value "1N5817" (at 5.08 2.47) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bd3347d9-9a3d-4c9a-bd6e-b32c11e47f96) - ) - (fp_text user "K" (at 0 -2.1) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5e807c14-eb72-4699-ac5c-0e22b3b90689) - ) - (fp_text user "${REFERENCE}" (at 5.47 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8b56e564-caf5-4ced-b984-0a39ed1eebf8) - ) - (fp_text user "K" (at 0 -2.1) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e830d834-92c8-4727-8cea-5594534f3119) - ) - (fp_line (start 7.8 -1.47) (end 2.36 -1.47) (layer "F.SilkS") (width 0.12) (tstamp 156d07b6-f60e-459b-b98a-29b8c699efdc)) - (fp_line (start 1.34 0) (end 2.36 0) (layer "F.SilkS") (width 0.12) (tstamp 3532cddf-acb9-4e3a-8232-d14fb89c468b)) - (fp_line (start 3.38 -1.47) (end 3.38 1.47) (layer "F.SilkS") (width 0.12) (tstamp 59f58cc4-3f08-4913-804c-7831fc56d6da)) - (fp_line (start 2.36 1.47) (end 7.8 1.47) (layer "F.SilkS") (width 0.12) (tstamp 75ca23a8-e4ab-47d3-ac44-aa53a82245e4)) - (fp_line (start 2.36 -1.47) (end 2.36 1.47) (layer "F.SilkS") (width 0.12) (tstamp a03c10d8-cc69-4b0a-a144-2d35498b043f)) - (fp_line (start 3.26 -1.47) (end 3.26 1.47) (layer "F.SilkS") (width 0.12) (tstamp cf89459e-fd92-4e68-9587-f252ddcdb6a3)) - (fp_line (start 8.82 0) (end 7.8 0) (layer "F.SilkS") (width 0.12) (tstamp e7ff49ea-668b-4288-a4de-6d15f9f54984)) - (fp_line (start 3.14 -1.47) (end 3.14 1.47) (layer "F.SilkS") (width 0.12) (tstamp e9319d85-1dac-4df9-b9dc-43725fc1b1c0)) - (fp_line (start 7.8 1.47) (end 7.8 -1.47) (layer "F.SilkS") (width 0.12) (tstamp ef02d8bd-f5ed-4c60-b031-608f2959fcf9)) - (fp_line (start 11.51 -1.6) (end -1.35 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 87b3ed9b-f3c1-4821-b4d5-c674b4d2515e)) - (fp_line (start -1.35 1.6) (end 11.51 1.6) (layer "F.CrtYd") (width 0.05) (tstamp e29749e1-57cf-4247-9200-dd1d45f68485)) - (fp_line (start -1.35 -1.6) (end -1.35 1.6) (layer "F.CrtYd") (width 0.05) (tstamp e8427703-debe-4022-822d-163d4fc97756)) - (fp_line (start 11.51 1.6) (end 11.51 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp fbf5d368-584d-48e0-99db-d16acdb2f83d)) - (fp_line (start 0 0) (end 2.48 0) (layer "F.Fab") (width 0.1) (tstamp 0a8b24fc-e6a0-48d2-b167-0aa01fd481d4)) - (fp_line (start 7.68 -1.35) (end 2.48 -1.35) (layer "F.Fab") (width 0.1) (tstamp 3943dade-79a5-4aa1-bcfa-29a8489f1e33)) - (fp_line (start 7.68 1.35) (end 7.68 -1.35) (layer "F.Fab") (width 0.1) (tstamp 436f812d-909c-4e3f-a49b-dcc6cd7e3bb4)) - (fp_line (start 3.36 -1.35) (end 3.36 1.35) (layer "F.Fab") (width 0.1) (tstamp 43797be8-9d42-485f-bc6b-0544d45927b2)) - (fp_line (start 2.48 1.35) (end 7.68 1.35) (layer "F.Fab") (width 0.1) (tstamp 43b01be6-aa77-480b-b7b5-19275cecd379)) - (fp_line (start 3.16 -1.35) (end 3.16 1.35) (layer "F.Fab") (width 0.1) (tstamp 66072000-fd82-40b3-9a6d-05a242a146f5)) - (fp_line (start 10.16 0) (end 7.68 0) (layer "F.Fab") (width 0.1) (tstamp 7ce9a615-ce61-4432-a3e5-0f41fb589826)) - (fp_line (start 2.48 -1.35) (end 2.48 1.35) (layer "F.Fab") (width 0.1) (tstamp 7db778c0-e0fa-45c4-a549-e062652f4eaa)) - (fp_line (start 3.26 -1.35) (end 3.26 1.35) (layer "F.Fab") (width 0.1) (tstamp cb3bfe3f-4ce5-447c-b68a-f0b9a64fb392)) - (pad "1" thru_hole rect (at 0 0 180) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask) - (net 3 "+9V") (pinfunction "K") (pintype "passive") (tstamp 3f9a155b-ff8a-4cf2-8a3d-a6361ab24ec5)) - (pad "2" thru_hole oval (at 10.16 0 180) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask) - (net 14 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 276b13d7-0a57-419c-8da2-e837b16f8ff4)) - (model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-41_SOD81_P10.16mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") - (tedit 59FED5CC) (tstamp 2c67684a-7a8c-4bc8-a2f8-710700e3d61b) - (at 204.530225 48.766) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/8b2457b3-127c-4286-b842-66ceb413ea89") - (attr through_hole) - (fp_text reference "J2" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ffd83d0d-24f0-4f90-903b-296191ef921e) - ) - (fp_text value "AudioJack2" (at 0 4.87) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 16d74262-8635-4a64-9f97-17014fb25562) - ) - (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d621368f-b1d3-448f-9ccc-2003d43ab1d4) - ) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 29d26dd1-1c9b-4097-8348-63ab0c86a559)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3949f8f3-4972-460a-90a0-6906b5d7ca76)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 46605a33-9342-4627-adea-08a0c3dd1775)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 9be4dac3-29bf-435c-b143-f925eed2bc97)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d3424baf-1ad2-4b36-adba-984ee9d2885e)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp e3eefb2c-367e-42ae-ab55-468b9c80597b)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1b0ee7de-247a-45f1-b936-8568c530e001)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 78111d72-c00e-4afe-82c8-d2e093258dae)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 8e93778c-9f35-46dc-94f2-2dd1aa508a24)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d5b027fb-197d-4d7c-8fed-24b58086c9a1)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 1f5d8d4c-52db-4d4d-99bb-fd209dbbc195)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 540f78d0-e8b9-460c-9142-467f76fb56b5)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 64d7714a-7974-44e3-aea4-f93dec72bbab)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp c33ef308-25bc-47b2-ac28-0110605d9c15)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp fe01aa44-ff8d-4666-88bd-3cf15ec20e21)) - (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 4151bc46-891f-4121-8be3-22bb8c87ce45)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 19e24aa0-439f-4991-a889-ce0db8e4a854)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Potentiometer_THT:Potentiometer_Bourns_3299W_Vertical" (layer "F.Cu") - (tedit 5A3D4994) (tstamp 2db2a178-64e5-43fc-91c6-f6bb623ee10e) - (at 130.284 89.418 -90) - (descr "Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf") - (tags "Potentiometer vertical Bourns 3299W") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/f8e949a0-9d2b-4ae1-bcf4-fa22f53685b8") - (attr through_hole) - (fp_text reference "RV5" (at -2.54 -3.16 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 73884063-53ac-4945-9da0-0154e86cb156) - ) - (fp_text value "20k" (at -2.54 5.44 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 318e2232-f227-48be-bc7e-28bc039cbe1a) - ) - (fp_text user "${REFERENCE}" (at -3.175 1.14 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6734d642-1332-41b0-95a1-bc63619b364b) - ) - (fp_line (start -7.425 -2.03) (end 2.345 -2.03) (layer "F.SilkS") (width 0.12) (tstamp 6fa8145f-4c86-431d-a94b-57494552123b)) - (fp_line (start 2.345 -2.03) (end 2.345 4.31) (layer "F.SilkS") (width 0.12) (tstamp 9e3df369-56c8-45d2-96f0-0e687bfa505c)) - (fp_line (start -7.425 4.31) (end 2.345 4.31) (layer "F.SilkS") (width 0.12) (tstamp bd3cf858-166c-49d6-9961-8b94a1acf2d3)) - (fp_line (start -7.425 -2.03) (end -7.425 4.31) (layer "F.SilkS") (width 0.12) (tstamp cd00c827-3c4d-43d4-88a0-7254d92da593)) - (fp_line (start -7.6 -2.2) (end -7.6 4.45) (layer "F.CrtYd") (width 0.05) (tstamp 063eeb66-f3b2-457c-bab8-c0de47cd7eb0)) - (fp_line (start 2.5 4.45) (end 2.5 -2.2) (layer "F.CrtYd") (width 0.05) (tstamp 184867bf-791c-4155-9944-970056e9456c)) - (fp_line (start -7.6 4.45) (end 2.5 4.45) (layer "F.CrtYd") (width 0.05) (tstamp 6685d33d-3967-4149-aacf-8f23426169c8)) - (fp_line (start 2.5 -2.2) (end -7.6 -2.2) (layer "F.CrtYd") (width 0.05) (tstamp d618a2f4-ad88-44dc-943e-5f205b2a2f1b)) - (fp_line (start 0.955 4.005) (end 0.956 1.836) (layer "F.Fab") (width 0.1) (tstamp 1c4a967a-d9ff-4163-bb2a-95ccc3501bb3)) - (fp_line (start -7.305 4.19) (end 2.225 4.19) (layer "F.Fab") (width 0.1) (tstamp 75ebcaaf-8f91-4bce-95da-35daf284b36b)) - (fp_line (start -7.305 -1.91) (end -7.305 4.19) (layer "F.Fab") (width 0.1) (tstamp a5af9987-9977-4e07-84ae-8a7f052d8e4a)) - (fp_line (start 0.955 4.005) (end 0.956 1.836) (layer "F.Fab") (width 0.1) (tstamp bea2cf6d-d15b-4b74-9fb4-8f3be204ce3d)) - (fp_line (start 2.225 4.19) (end 2.225 -1.91) (layer "F.Fab") (width 0.1) (tstamp c693e6be-e81e-4dab-b2cd-37c227982b91)) - (fp_line (start 2.225 -1.91) (end -7.305 -1.91) (layer "F.Fab") (width 0.1) (tstamp f1d5f4cb-54cb-4ce5-8f0e-7cc3879c9207)) - (fp_circle (center 0.955 2.92) (end 2.05 2.92) (layer "F.Fab") (width 0.1) (fill none) (tstamp 302f10e7-ea11-468e-a7b2-970a5fb4f69e)) - (pad "1" thru_hole circle (at 0 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "1") (pintype "passive") (tstamp 881ba6c1-962a-43e8-acdf-1c75a4cb2656)) - (pad "2" thru_hole circle (at -2.54 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask) - (net 28 "Net-(RV5-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 14fc2305-fea3-47d6-9a37-84bcd115322e)) - (pad "3" thru_hole circle (at -5.08 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask) - (net 13 "Net-(C13-Pad2)") (pinfunction "3") (pintype "passive") (tstamp 8d91fba1-8886-4a37-831b-de5af95353f4)) - (model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Bourns_3299W_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp 2f3e546a-59ec-4b91-83a9-127f9ebbeb30) - (at 90.852 98.552 180) - (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor") - (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/f5a1eb5d-e013-46e5-be3e-30f1e81f1c14") - (attr through_hole) - (fp_text reference "C10" (at 7.794 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp cdccd26b-7b7d-497b-979d-3455097005a1) - ) - (fp_text value "100nF" (at 2.5 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ae6e4baf-527e-4a8b-bef9-c2ff1f6f4b70) - ) - (fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b1bb5126-2f4d-48a1-95fa-1212cd328890) - ) - (fp_line (start -1.12 -1.37) (end -1.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 28e91582-e8fc-4115-9c06-90bd8a934d2d)) - (fp_line (start -1.12 -1.37) (end 6.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 6b0ef497-8e7d-4f23-801d-8ef6433a9947)) - (fp_line (start -1.12 1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 80133a1c-f812-48b5-abc3-17e961d14abb)) - (fp_line (start 6.12 -1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp bc7f0745-c909-4887-aed4-7a9522266445)) - (fp_line (start 6.25 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1fe20705-4cbc-49b3-b915-ba3860c21876)) - (fp_line (start -1.25 -1.5) (end -1.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3957454a-c8ee-4c8f-a049-4b8a768f1a61)) - (fp_line (start -1.25 1.5) (end 6.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 542fa860-f0d0-4b8e-ae8c-0d5e8cb83778)) - (fp_line (start 6.25 1.5) (end 6.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ce7be239-d9f8-461a-89e7-f9b05ab6de4e)) - (fp_line (start -1 -1.25) (end -1 1.25) (layer "F.Fab") (width 0.1) (tstamp 258e3672-542a-49ca-adf3-2bf1e99e1d64)) - (fp_line (start 6 1.25) (end 6 -1.25) (layer "F.Fab") (width 0.1) (tstamp 4ad9dd43-279a-491a-a1b6-6c5bde60a56d)) - (fp_line (start -1 1.25) (end 6 1.25) (layer "F.Fab") (width 0.1) (tstamp 586665a1-1c11-469a-a55b-a8bca3bf4a61)) - (fp_line (start 6 -1.25) (end -1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7185ebc1-3110-409c-aeb9-5531889373a5)) - (pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp 15819a65-73f1-4900-9fd3-6080b76286ea)) - (pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 9 "Net-(C10-Pad2)") (pintype "passive") (tstamp 9b38a7fb-f77a-46e4-bb40-36a7dd42322b)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp 3e1879c6-c2f1-4955-97c5-57e7745a210d) - (at 85.598 101.092) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/8a434250-e9ef-407d-91c4-2bbe591e0528") - (attr through_hole) - (fp_text reference "R11" (at -2.54 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 44efe958-95c0-4e7e-997e-e01acda110a8) - ) - (fp_text value "120k" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 146a0b4d-c607-4e5a-8d82-22d3a66c92aa) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 577d8b53-0c15-462b-a0fa-a038f8ba916f) - ) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 171a499b-d721-41b3-8d3c-d876635d5c27)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 44a2374b-27b7-47c9-90a0-20ef0f1d736c)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 49f0e93c-13fb-4087-a56c-c4acfc824672)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 68db9b79-1ec5-4b41-9908-5f1885041ec0)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 79a93309-cbe3-49ca-9afb-3300778f4b05)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 8b0f3b9e-a186-4c19-939f-4fc2950a760e)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 458dbda1-b0ea-4035-bda7-59a788497c21)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 7a73d090-5634-4771-b447-270625dbd9e2)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp ccb24f0e-f6d0-4a7a-b8d6-f86a7a227ce0)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp f847ca67-acb3-4b39-af05-2ea24c0d006a)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 206ca5e7-7bb9-42e7-a419-ad754efa7edb)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 65705d11-de68-4c00-aa0a-e8ee689bd0c0)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 6920b634-7783-4f90-85d8-09fe3dc53b95)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 96f2d770-3dd3-4aa5-9769-5733ecbb5ceb)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9c487c06-f48f-4aa6-b09c-39c4b47d4a0e)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp ec5c70c7-0c41-4d8d-931d-9c0d8c59ddae)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 9 "Net-(C10-Pad2)") (pintype "passive") (tstamp 60a5c237-488e-4e1b-9ba4-0545e1129824)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 22 "Net-(R11-Pad2)") (pintype "passive") (tstamp 0785bd53-02a9-486a-9ff8-6d6e9bc2e423)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp 42103527-2cdd-4e9b-9c21-3a47dc4d99ef) - (at 85.598 103.124) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/50e83388-d157-4147-9b50-698eee4a2f3a") - (attr through_hole) - (fp_text reference "R13" (at 3.81 -1.92) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6d28f8f6-1bab-444b-9723-1901a2cbf674) - ) - (fp_text value "100k" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 42b0a0de-e03b-43cb-9061-eedf50e03fba) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 45434c4b-7591-44f3-b19a-337eaf953ca4) - ) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 03dd1b85-ba3c-43fb-bb6e-eb80a7d3f9e5)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 12efe8aa-ab38-4cee-b666-0449cd705039)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 85b4e94b-ec5b-4b46-9fee-e6837c107807)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 9eaf40a2-d685-42f4-af3d-2131683d2313)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp a319f6b5-5161-4f3f-b809-cdca26855831)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp eae34516-9be2-47af-9b5a-ae73c569b51a)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 52153ae9-523c-461c-9140-528aef94d414)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 7c86e4c8-f098-45ef-bc48-2fc25127363e)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp e0561ba3-e5ee-43c0-bcfd-270c0665078c)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp f90e7f74-0b73-4ff9-a86f-5f11550b8bf0)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 529bb259-a3e0-4029-a761-805ab18e45e1)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 720fc3b3-f164-476f-b6b4-83d203f46e36)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 75988360-1dc4-47b2-9b80-a87f1731c92d)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 90018d5a-8ee1-4a02-bf9e-b250b9f267b7)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 98732c8d-f378-48f2-9aaf-244bea3eca32)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp c9d18a23-eef2-434d-8487-1b587c231a91)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 9 "Net-(C10-Pad2)") (pintype "passive") (tstamp bf8caaf3-1d32-4848-aa08-a1b05d418ca5)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 17 "Net-(Q1-Pad2)") (pintype "passive") (tstamp 041eeb79-2358-451c-877e-cc2048830555)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu") - (tedit 5A02E8C5) (tstamp 46a53a8a-bea9-4800-8861-9ac0029cbae1) - (at 95.26 81.783) - (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)") - (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/4191ef53-102f-4cd9-8f99-b7e26e6d4541") - (attr through_hole) - (fp_text reference "U4" (at 7.356 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp dc32b359-8b6b-45d3-b16a-494e36f4a77e) - ) - (fp_text value "ATtiny44A-P" (at 3.81 17.57) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 43de5a9c-041d-45cf-9337-dc92fbedd4ce) - ) - (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 10b049cc-777d-49b9-8b72-57dc3c0857d5) - ) - (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00486478-893b-425b-a5bc-a7e44ca55943)) - (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 034761f7-89e6-4cfb-b6ff-bf1b84c7a5df)) - (fp_line (start 6.46 16.57) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 37104c1f-3fc7-450d-a4f7-b7c6a047301e)) - (fp_line (start 1.16 -1.33) (end 1.16 16.57) (layer "F.SilkS") (width 0.12) (tstamp 37e027e0-c693-46fd-91b0-bc4f7a8a75a2)) - (fp_line (start 1.16 16.57) (end 6.46 16.57) (layer "F.SilkS") (width 0.12) (tstamp f61e3e87-7314-4efb-9213-187dd15d0ffa)) - (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 49e9376f-c37c-4d53-88f7-0571c02c7826)) - (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 06b5d7ae-466e-45af-ba0d-e2062a43e01b)) - (fp_line (start -1.1 -1.55) (end -1.1 16.8) (layer "F.CrtYd") (width 0.05) (tstamp 2f8fab55-05ca-4686-80f5-c3c168b9b405)) - (fp_line (start 8.7 16.8) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 564b2d44-1560-4468-98cc-c739e80ecf33)) - (fp_line (start -1.1 16.8) (end 8.7 16.8) (layer "F.CrtYd") (width 0.05) (tstamp 7bac110b-7640-47f3-87f5-de9b955572f0)) - (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6faf2824-be38-492e-a01b-4c105834407a)) - (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 99dcf6c1-d77b-406c-9562-097152d85a50)) - (fp_line (start 6.985 16.51) (end 0.635 16.51) (layer "F.Fab") (width 0.1) (tstamp 9f9f3fe6-4871-4e2c-ae65-3499c3b4d5f0)) - (fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp e15e7bb0-aee8-4314-944b-1b75c2378f49)) - (fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer "F.Fab") (width 0.1) (tstamp f742decb-769e-41e1-a738-87ff6ad9b828)) - (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 6 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 606c3e55-7d61-412d-adac-41bf5f1f1a73)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 34 "unconnected-(U4-Pad2)") (pinfunction "XTAL1/PB0") (pintype "bidirectional") (tstamp cf555f2f-3324-49c1-8485-dfee4c430451)) - (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 31 "Net-(SW2-Pad1)") (pinfunction "XTAL2/PB1") (pintype "bidirectional") (tstamp cadaebaf-094e-410f-80ae-c1a7d87b0296)) - (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 21 "Net-(R10-Pad2)") (pinfunction "~{RESET}/PB3") (pintype "bidirectional") (tstamp 2e9befe8-1ba6-44c4-8c0c-2f6b67d813e8)) - (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 37 "unconnected-(U4-Pad5)") (pinfunction "PB2") (pintype "bidirectional") (tstamp 4c547317-fb88-4349-8693-292a4176dbba)) - (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 29 "Net-(SW1-Pad1)") (pinfunction "PA7") (pintype "bidirectional") (tstamp bb71ccf9-22ec-45a2-bf1c-bd7842c7e384)) - (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 35 "unconnected-(U4-Pad7)") (pinfunction "PA6") (pintype "bidirectional") (tstamp c9d7d0c3-aadd-4970-838b-24ec594190b9)) - (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 23 "Net-(R12-Pad1)") (pinfunction "PA5") (pintype "bidirectional") (tstamp 07767ae5-de80-4b3a-a4c3-79672588e7fc)) - (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 36 "unconnected-(U4-Pad9)") (pinfunction "PA4") (pintype "bidirectional") (tstamp 4d3b3dab-f2f0-46e6-90e8-341aef8b42c1)) - (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 30 "Net-(SW1-Pad3)") (pinfunction "PA3") (pintype "bidirectional") (tstamp 92425964-3db1-4a0a-86ee-ecbd90311ff8)) - (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 26 "Net-(RV3-Pad2)") (pinfunction "PA2") (pintype "bidirectional") (tstamp 275e3c89-0d83-4a85-9571-5807c3e775e6)) - (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 25 "Net-(RV2-Pad2)") (pinfunction "PA1") (pintype "bidirectional") (tstamp 55c88c67-b10b-4bce-a298-bf570d07e5c7)) - (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 24 "Net-(RV1-Pad2)") (pinfunction "AREF/PA0") (pintype "bidirectional") (tstamp e12bd674-781c-48c8-a57b-0c0baf4f4d54)) - (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5fb1a6fc-9a0a-4c35-ade0-460027893012)) - (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp 49dc4156-3099-4e3f-8d79-c06d9503bcfe) - (at 111.570888 96.266) - (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") - (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/0d5a6edb-d525-4289-8e5a-53304df0385d") - (attr through_hole) - (fp_text reference "C7" (at 4.634112 -1.905) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp aeb07824-f766-4b0a-92e6-7a9336a0b98a) - ) - (fp_text value "1uF" (at 1.25 3.75) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 560debac-dd60-4872-a40b-f118709ff2d1) - ) - (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp fea6b00a-78d5-46bc-8b3b-4aefff4c663a) - ) - (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 025a60e2-6b84-4bfd-b50e-b98cb03eca8d)) - (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 06fb5a02-f278-4c85-9bd1-8392eeeb9617)) - (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0a0d3118-dfe5-4940-8bb6-9d652974e3d5)) - (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp 11776fe4-4721-440e-9d16-0f4a13d4e4d5)) - (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 11acf68e-b267-4635-86b8-6f03c2c91aff)) - (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 169243fe-9174-4d7d-938c-c3895e21e860)) - (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 17929e09-ca50-4b58-9540-ce4b261befe0)) - (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 18895a7f-8c16-42ee-86af-19690b4a7944)) - (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 1adaa1c9-f3a6-494b-a7c9-2cd14b6885d2)) - (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 1d32171f-df3d-45bb-b60c-9aaa2f680cd4)) - (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2026c058-7d9c-4384-bdc3-c0609ed4edb5)) - (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 20931fa4-7cb1-4b70-b771-567d3db4a4f0)) - (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 27848a57-7d55-4d14-bdb1-ef0bf1297d79)) - (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 27e4df6a-cd7e-4b67-9e8e-042faa4a4f93)) - (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 28eeccb7-d654-4720-bbe9-84d66ff41aaa)) - (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2bd801dc-c532-4421-bc37-2b279ebe428e)) - (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 2d2a2f0b-5f9c-4800-8240-6149ba9475e2)) - (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3039dd8c-1684-41ea-888f-c61edb5b95cb)) - (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 318b7624-a4a9-4d5f-9883-45388c9cb98c)) - (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp 31faba2f-5fb9-40bf-92f6-bf3870517aab)) - (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 341ae7ec-8429-4701-b9a1-fdc2534ed381)) - (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 35b61d7f-12fc-4193-9c15-02338ba3abfa)) - (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3b3ec974-0570-4df1-bfe3-bf4d4b6bef76)) - (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 3df3fbe4-e5dd-4996-b905-f23b9f31dd2c)) - (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp 436bd515-917a-4986-95ef-a8751f20bac8)) - (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 478db704-89c0-4a67-b76a-68175f59b969)) - (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 5072b629-d826-4ba9-a1f5-51e91aa53bc3)) - (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 544159b5-6dbe-4081-aaf3-ad1051be91e7)) - (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 565c4c98-f503-4b0d-a321-f0653b609295)) - (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 594b3eec-01c2-4c1a-93db-5cedd908303e)) - (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5a4de1a6-ed26-4299-a02c-c65c63e7eccd)) - (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp 5b9099ec-7863-4bd6-af7c-059c0cab5126)) - (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 5cca369a-4000-4866-9f59-a860c249364d)) - (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp 5cebb035-c36a-4419-94ab-4d534b2d714e)) - (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 60d54308-3755-4706-9454-1e6352a37deb)) - (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 613c4774-c907-4541-9dd6-a516ff4e6e9e)) - (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp 61d50110-9a17-47b4-b3ec-2e2781c71ef0)) - (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 62175145-985c-4a40-a8a0-75920bd581b6)) - (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 630efc03-47e7-4268-af77-c9502ef4d972)) - (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 635095fd-fae7-4eb8-8e5b-a2a3ef921bda)) - (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 64dc93ef-ce95-4e39-94b5-479c123d4c03)) - (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp 65609711-f946-4ccf-83aa-796a47e6960c)) - (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6573e35c-4e42-40f8-89cf-14ee7acc35e0)) - (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 65b05120-7261-442a-acc5-4b9bed8d2cd9)) - (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 6b5add87-d012-4b2b-ab3e-c0d68bbdd49c)) - (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 6e9f616b-a772-424b-b838-9a19a267350f)) - (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 6f079a8b-27db-4946-a08c-8fa668811365)) - (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 705f9ac9-6cd9-4c9d-a3b3-3e67490d6ef6)) - (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 76659f18-3ed7-49df-9b1d-b60abf96f437)) - (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 7c100d13-66cb-46b2-beab-f9e35dc66013)) - (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp 7ce840a3-dd92-4ce1-892c-930de04376f7)) - (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp 7d0329c4-2d74-4294-9b67-e4a275920b9e)) - (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 7d0d3114-74d5-4f28-b9bb-27d165e5e141)) - (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7d20f648-ce69-4927-ab2d-01e949c8ba34)) - (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 853367c4-35cb-44c0-8597-ec684eef7667)) - (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 853fda3b-a538-4f44-886f-f0c5f7c29185)) - (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 86050e06-3412-464d-ad52-655316076ab4)) - (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 86ff6bc9-a4e3-45ac-99df-4a9ddc250dd2)) - (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8851901f-3c78-4f66-a98a-097218f03692)) - (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8953f35e-09d6-48ab-b860-560bccd5c98e)) - (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8ce59927-c250-4944-b6b1-584205564b0e)) - (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 92f2227a-0219-4dcd-8717-9ee26bf9db99)) - (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 93b2c9a9-dc5f-40c8-b200-4056dad39463)) - (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 93e25406-e15b-409a-8a3b-26e767049f9d)) - (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 94adc3bd-a288-492f-950e-6ed892021b63)) - (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 96685ae6-619f-4135-9332-57a0a1c38916)) - (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 986405f6-522e-4b8c-99e4-246378a6ccde)) - (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 994cc8a7-bb9c-4bd7-93c9-0e8d0c739056)) - (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 9a5a8e6e-fdef-4689-b20c-e5e3df444bfa)) - (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9b5f6194-0e11-4377-a344-827067ac5b28)) - (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp 9be8903c-b3f1-402f-a587-4d98e779cb9d)) - (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 9d32faaa-5a1a-4214-8f8e-655fa6571cb4)) - (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9e702395-3f9d-42b5-a405-858db7eeb00c)) - (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a20d9308-d5ee-4496-abfb-811261151be0)) - (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp a601d807-5e32-4075-87aa-912bd9bd3b9e)) - (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp a622a20e-d939-45b6-96dd-438c2648fd91)) - (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a8a93ce9-92e4-486c-9a72-235317abb233)) - (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp aa864e9b-911d-4c51-ba1f-19794657ee1f)) - (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp adc48aa9-d974-44cc-8861-e76cf0fa5027)) - (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp ae43f06a-0f5b-47c1-909c-e6acbb4e79de)) - (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b113ae60-5b06-4a4a-8395-f5b2baf5a602)) - (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp b12c93a4-dd63-4182-904c-df2fb4a231ca)) - (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp b2a5a811-572a-47ce-a3f8-e7793a6410fb)) - (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b38ce878-fa8b-4a0f-9456-3aa77905308a)) - (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b646b007-d3a7-4b76-b772-8f62b5ca8ba5)) - (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b6c25edf-d51a-4deb-99b3-d069ce997fd3)) - (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp b79385bb-c36e-4336-953e-85417d7108ad)) - (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b9873c4a-4015-496c-92a0-d27424f65a77)) - (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp baa71a50-2fd0-4138-9b60-9e126a6553c1)) - (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp bf5d9c6c-f44f-4ffa-bec0-885349f8f0f7)) - (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp bf71cab7-b8b5-4274-9fbb-15cd46253502)) - (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bfce9b0c-e1ad-411c-8a67-af74f150c29c)) - (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c04b173e-22f4-46b2-bb83-a052254d4c29)) - (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c1a356e8-cd4b-4ed3-aa73-a9fcbf476c3c)) - (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp c3cd05ec-4b6b-4ce1-83c2-5bfd1eb7c044)) - (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c7efea67-c5c9-4d4c-a7dc-1bcddab8c606)) - (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp cf8d39cf-e9be-4edf-8e48-6df6c1feef5d)) - (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp cfd7d64a-316f-495b-bc5c-f20047eeba71)) - (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp d3cac316-9aab-4008-b9de-11106298622e)) - (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d66947fd-1875-40d2-a603-699ee2d0c4a8)) - (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp d771f29f-1b9f-4bdb-a109-6bfa7ae03227)) - (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d807b89b-e184-4965-a1eb-30576e31f551)) - (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp d8761eec-65b8-4d7e-a319-a083a712176e)) - (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp d9a9f005-22be-49e7-98b9-98ec87790a09)) - (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dffca976-4437-45af-bf62-7254ad524195)) - (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp e09ca573-64cd-4ccd-a8c2-15b7be64acff)) - (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp e3d7fa79-f9a8-4709-8a5a-4da92c956af8)) - (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e6d4936a-c72c-4dcd-afb2-46fa9e0785ab)) - (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e8478f35-b07d-4ec4-b26e-9f7aefa42ba7)) - (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f621c71d-cfd8-4aef-a6b6-8e19918dbc4c)) - (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp f7bc4354-d2d2-4f5b-b9d9-a2703e0798a2)) - (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f85023ab-2237-4399-a6a0-b992951dee4c)) - (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp f9d08046-be99-47b2-b08c-03caac8c7660)) - (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp fa5f61a0-8ac6-4f21-8368-91aa165d79de)) - (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp fc5bfec9-7dd4-4e48-8926-5ab9d5e9a24c)) - (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fc84a68c-83b8-4be3-a49a-01e55462a4b3)) - (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fc8b7bad-b178-4b74-bbbb-34c3a751f16f)) - (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp fd0b19a4-3ed4-4cd3-97a3-48992bf15368)) - (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp fdb89b58-2166-4574-89a2-dad8c17edf7a)) - (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp ff0f8a9a-afba-4a95-b01c-483d74ddfcc1)) - (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 74e66273-aaf3-4148-a412-f473a56ce72a)) - (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp df2b7e97-e1e6-40e3-b6c5-34370e2136dd)) - (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 098bb5ea-0582-440b-a84e-684388e4de55)) - (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 35de483e-d4e7-4603-84ef-f0e8fbb97a79)) - (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 16c9ad54-ac61-4d39-917f-22ccef68b137)) - (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 7 "Net-(C7-Pad1)") (pintype "passive") (tstamp d82bc7eb-ff3a-4d94-9231-87e310b81eb0)) - (pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 8 "Net-(C7-Pad2)") (pintype "passive") (tstamp b48ddcbe-2d8e-4337-a4a6-c49dabdf7413)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_DIP:DIP-8_W7.62mm" (layer "F.Cu") - (tedit 5A02E8C5) (tstamp 4d617225-5a28-4a5b-98e2-1d5600360132) - (at 116.977 81.798) - (descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)") - (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/67e4f302-4d84-4715-b3e0-6cf033d1a781") - (attr through_hole) - (fp_text reference "U1" (at 3.81 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b3d452e4-0558-44e2-b1c9-373e568f7de0) - ) - (fp_text value "TL072" (at 3.81 9.95) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b958d746-654f-4062-8f21-814245ef0de4) - ) - (fp_text user "${REFERENCE}" (at 3.81 3.81) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b68b5693-4480-4523-b6b6-527382297cb3) - ) - (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 124f4f8c-03b4-4ba1-a2f7-01211c495bb4)) - (fp_line (start 1.16 8.95) (end 6.46 8.95) (layer "F.SilkS") (width 0.12) (tstamp 5b701cbb-e617-42ef-ac32-12540c6d0846)) - (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5d5888be-bd38-40b2-895f-7aef69140f95)) - (fp_line (start 6.46 8.95) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 68ce26b8-2ed4-4e81-ad42-4ca9d904c7f2)) - (fp_line (start 1.16 -1.33) (end 1.16 8.95) (layer "F.SilkS") (width 0.12) (tstamp d8f8e27e-8551-46a4-adf5-1354e0612a9e)) - (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5b85d65d-6257-43e4-a47c-2ca7e0fef0be)) - (fp_line (start 8.7 9.15) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 318c51b2-4765-47cb-b52c-aff3af757551)) - (fp_line (start -1.1 9.15) (end 8.7 9.15) (layer "F.CrtYd") (width 0.05) (tstamp 6f1afc3c-70d4-4911-aee8-120d3178fb7e)) - (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp a893e02b-83ac-45fa-9deb-ca44bf180ff4)) - (fp_line (start -1.1 -1.55) (end -1.1 9.15) (layer "F.CrtYd") (width 0.05) (tstamp d723146a-c312-4ba5-8e38-2cd9c8bd9bac)) - (fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer "F.Fab") (width 0.1) (tstamp 13248958-fc41-4065-b195-787c63c2090c)) - (fp_line (start 6.985 8.89) (end 0.635 8.89) (layer "F.Fab") (width 0.1) (tstamp 3c85243d-6167-4f40-b65f-695be4df53e3)) - (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 83a254be-3571-4039-804d-abf6a6152016)) - (fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp bcccf788-35eb-48d9-a8ed-86e3b7ac90c8)) - (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp f58309ab-5a3b-4cda-b994-805c079b6ee1)) - (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 8 "Net-(C7-Pad2)") (pintype "output") (tstamp 28dd0ef2-07c3-4fb7-a156-33bb062df93c)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 18 "Net-(R2-Pad2)") (pinfunction "-") (pintype "input") (tstamp 84ce0be5-0412-4bdd-83e3-854a7a710ced)) - (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 5 "/VREF") (pinfunction "+") (pintype "input") (tstamp 5a5e5ad7-2c7e-4ccd-938c-3d7c6c5b04f2)) - (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "V-") (pintype "power_in") (tstamp 0cc74582-0855-4340-acc2-9d706039eeb8)) - (pad "5" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 10 "Net-(C12-Pad1)") (pinfunction "+") (pintype "input") (tstamp cb86c03f-9687-44e9-b746-5ebe7a333fb7)) - (pad "6" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 28 "Net-(RV5-Pad2)") (pinfunction "-") (pintype "input") (tstamp 62b6ceae-4979-4c7f-9abb-9d942b9ab846)) - (pad "7" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 13 "Net-(C13-Pad2)") (pintype "output") (tstamp 3a5720e7-cecc-4233-98ac-b671c0b63900)) - (pad "8" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 3 "+9V") (pinfunction "V+") (pintype "power_in") (tstamp e91905fe-58bc-4c02-8889-7bd13e1e4a1f)) - (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp 4f30360b-37f9-42db-8257-49acb496be46) - (at 105.2684 111.8108 180) - (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor") - (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/10c03ca5-f28e-4dc2-b3ca-d8f478c80a3b") - (attr through_hole) - (fp_text reference "C4" (at 2.5 -2.5) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2500ff18-471a-4caa-bbbf-7d04f0178773) - ) - (fp_text value "100nF" (at 2.5 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 81d5843f-9f7e-41b6-b983-8e6a163770df) - ) - (fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 70c648d3-6955-453b-9a3f-b6008043a6f4) - ) - (fp_line (start 6.12 -1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 2eedbd72-7a58-488f-91de-929b1d7960cf)) - (fp_line (start -1.12 -1.37) (end -1.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 413842c3-3264-468f-b43f-ce99bf7c6aa1)) - (fp_line (start -1.12 1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 63a711ab-74e9-403e-b51f-9ef8ae5fb94b)) - (fp_line (start -1.12 -1.37) (end 6.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 72c285ed-1598-4cbf-aac9-d10eff9cb21f)) - (fp_line (start 6.25 1.5) (end 6.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 011b920d-f9ce-4bde-bf16-1738793dcfb7)) - (fp_line (start 6.25 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1b2757ba-27f6-49df-a17a-4465eab0a524)) - (fp_line (start -1.25 -1.5) (end -1.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4ab11403-08a4-4af5-b83c-2d43410ab7a4)) - (fp_line (start -1.25 1.5) (end 6.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6577e3de-7a1b-4532-ac16-f75cdce47c8b)) - (fp_line (start 6 -1.25) (end -1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 0bef87a0-f5d7-4f04-a81a-a7980ccc5836)) - (fp_line (start 6 1.25) (end 6 -1.25) (layer "F.Fab") (width 0.1) (tstamp d2b44210-622b-4683-80c7-cc84f1e06752)) - (fp_line (start -1 -1.25) (end -1 1.25) (layer "F.Fab") (width 0.1) (tstamp da59907a-594c-4612-96b8-0b5f551ac81d)) - (fp_line (start -1 1.25) (end 6 1.25) (layer "F.Fab") (width 0.1) (tstamp db186835-30f1-48bf-a965-7df991050d0a)) - (pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 5 "/VREF") (pintype "passive") (tstamp 973a0ca4-c6e1-467f-ab72-3c96df1b4183)) - (pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp f0fed261-6643-41b7-b346-9aac97e7b61b)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") - (tedit 59FED5CC) (tstamp 5a81c698-d387-4692-b154-0bfd9c10038c) - (at 184.020225 68.476) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/554d888d-23fd-4c68-a6ec-7855a536ffbb") - (attr through_hole) - (fp_text reference "D2" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 49ab40c8-183b-4101-9f05-3f824384e68e) - ) - (fp_text value "LED_ON" (at 0 4.87) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp eb1840c4-81de-4227-ba0c-2d1548f9bbf0) - ) - (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e2b1bf73-fdaf-4eb9-ae79-24d7fcba0a30) - ) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0cfab4a2-59c7-46e7-8b03-9c436eecd7f4)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 6074e365-5096-41f6-a472-327a33d814ba)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 946a8f93-f8a6-49ed-be65-22cf14da1914)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a323f70c-afa2-4c2a-b732-5b77a8cbc996)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp c68df4b4-e8dc-4506-8f9d-0536788c4bf0)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp f9beff27-f2a4-4b62-a53b-c03dfbafb19e)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1a16cf51-5341-44ba-bdb3-4da8305d91e0)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 633ad3b8-63c2-4a66-ba43-ec1b2327d590)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp c3891891-f0e9-4c69-8b6b-afef153dbd09)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp ee0b93ce-5250-408a-a914-466cffa6cd49)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 35b4c71d-70fe-4c5b-8de5-d1d53b101ad3)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4c73a99d-628c-494c-9daf-26e7e7981e8e)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5125aeff-fbaf-4069-9b26-eba443c92f10)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 6adf7903-65b5-4df6-8573-551f7d72bd18)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp e751c3c4-256e-4063-911b-f28076fae0ea)) - (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "K") (pintype "passive") (tstamp 1e6b6b49-a94e-4a91-aa1f-ea23bfe07c2f)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 15 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp a4c343d5-a6fd-4619-9a83-930a86997c7d)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_DIP:DIP-16_W7.62mm" (layer "F.Cu") - (tedit 5A02E8C5) (tstamp 5d6e084a-605f-4d05-bcd6-23a747bd3e0e) - (at 116.967 98.044) - (descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)") - (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/f8a7bff7-2bff-42b5-9158-171579415098") - (attr through_hole) - (fp_text reference "U2" (at 3.81 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 621e1831-a143-4730-a50d-6b017889325a) - ) - (fp_text value "LM13700" (at 3.81 20.11) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp cc66be20-053f-47f4-b771-82e8e2db880a) - ) - (fp_text user "${REFERENCE}" (at 3.81 8.89) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8f13a4f9-e9b5-492f-822d-eedb13512744) - ) - (fp_line (start 1.16 19.11) (end 6.46 19.11) (layer "F.SilkS") (width 0.12) (tstamp 16a71bba-04ef-4283-a06b-f6e9ba8ea3c4)) - (fp_line (start 6.46 19.11) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7a88021c-25a4-4e68-b9a6-39d9e7e27be7)) - (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b153868b-1309-4094-8ec2-dd46019c061d)) - (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c39e99f9-f98a-4657-b4d3-48f953d0ee09)) - (fp_line (start 1.16 -1.33) (end 1.16 19.11) (layer "F.SilkS") (width 0.12) (tstamp d8699bf7-670e-4377-999d-283b728c81a7)) - (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 998418c7-5071-4993-8341-9bc4d4a4c591)) - (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 1657c033-a380-4cff-a9e8-625c793a9ef7)) - (fp_line (start 8.7 19.3) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 8c04e57b-bc43-4b60-a800-61d5418b7f8a)) - (fp_line (start -1.1 -1.55) (end -1.1 19.3) (layer "F.CrtYd") (width 0.05) (tstamp afd398e5-6ae9-4f9a-985b-7d1f134b07c6)) - (fp_line (start -1.1 19.3) (end 8.7 19.3) (layer "F.CrtYd") (width 0.05) (tstamp bbfadc9a-287a-4a82-8c75-99db9b163071)) - (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 57c3b217-44d7-4d3b-98b6-48841c4fa522)) - (fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 8f168410-2ec5-49ad-9dfb-a3945c287065)) - (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp b87dacec-d770-4fac-bfe1-efb923046bde)) - (fp_line (start 6.985 19.05) (end 0.635 19.05) (layer "F.Fab") (width 0.1) (tstamp ed3603bf-14c3-4722-8590-15f346206a03)) - (fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer "F.Fab") (width 0.1) (tstamp ee796e0c-71e8-4a8d-a561-f3ac4bb1387d)) - (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 7fcb48a4-eaa0-40c8-9cea-403711b62488)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 68de6991-e062-4bc8-a596-49c78ea4858f)) - (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp d6c9a302-074e-4fbd-b395-daac6a438c5f)) - (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp f8278ad5-6ca5-461c-9b25-4c719cca7061)) - (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 0beabe83-df24-4956-ad54-548123285ceb)) - (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "V-") (pintype "power_in") (tstamp 27f9751b-48a8-49eb-9739-541a6cdcd14d)) - (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 34aeed9e-00a3-473c-8d5b-e58f271df977)) - (pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp dc1b745a-1bcc-49be-9037-b6ae2096cc21)) - (pad "9" thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 11 "Net-(C12-Pad2)") (pintype "output") (tstamp 57789f58-c985-474f-a4e8-f2b69aed6bec)) - (pad "10" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 32 "Net-(U2-Pad10)") (pintype "input") (tstamp ce9b152b-4f27-4f27-a831-d0741536e6b2)) - (pad "11" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 3 "+9V") (pinfunction "V+") (pintype "power_in") (tstamp fd2b7010-803d-4109-9df9-ef8527ca061c)) - (pad "12" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 32 "Net-(U2-Pad10)") (pintype "output") (tstamp 8a21243e-853b-4133-b201-ff7cbb4d339b)) - (pad "13" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 20 "Net-(R9-Pad1)") (pinfunction "-") (pintype "input") (tstamp eb94383d-8bc1-4922-9579-e4057e718200)) - (pad "14" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 19 "Net-(R7-Pad2)") (pinfunction "+") (pintype "input") (tstamp cffe6c30-ac6b-4b1b-af26-314dfe98e44f)) - (pad "15" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 33 "unconnected-(U2-Pad15)") (pinfunction "DIODE_BIAS") (pintype "input+no_connect") (tstamp 9f41a514-9622-41b4-8c7a-3b0d06e58a83)) - (pad "16" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 22 "Net-(R11-Pad2)") (pintype "input") (tstamp b0435700-0f06-434d-9196-19b4ee26244e)) - (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-16_W7.62mm.wrl" - (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") - (tedit 59FED5CC) (tstamp 61a24e83-8a2d-40b1-8515-7b446e32e7f1) - (at 170.070225 66.876) - (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x03 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/3df53d8a-0ef5-4cad-9d90-e6b44aee51b9") - (attr through_hole) - (fp_text reference "SW1" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f55e0b58-ebcc-4ef6-a9c1-5b23ad9e5e30) - ) - (fp_text value "SW_SPDT_MSM" (at 0 7.41) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d9697af8-9a72-4429-bf61-d73b9e8304d1) - ) - (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 10fd1d94-746f-466c-84a0-aa85c04b7684) - ) - (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 2a7ba6bd-d126-462a-a271-00b22a36f452)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 316646cc-a018-4d5e-bf5e-e1b01aafa5b7)) - (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 6e1f6f0f-7109-457a-bfa7-6c30a9197ab0)) - (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 80e1701b-cd81-497a-ad48-20663e188d96)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b8e30bc3-16b0-4b43-a983-ee60c4d8df20)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d3375906-4988-4cd0-a278-70122a4d171a)) - (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 19616f32-f0a5-4366-b1e4-4ec53cbdf973)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2cb77c62-4e43-42f1-ae15-2816f4671da0)) - (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 548ebe56-f848-4286-8185-c74dd22f1f5b)) - (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6d26d4c0-d1c7-4f23-97af-c68577d970ee)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2c0024c2-e84c-413e-ae5a-1ae05ffcb73d)) - (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 4151b6a6-9452-42af-9839-237221a93459)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 96b8b711-f40d-4aae-a044-c048034ee1fe)) - (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp b497b960-c3f1-4eb4-9c35-6ececbac3261)) - (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp f4f71385-7d42-47d8-8103-cc2b4489284b)) - (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 29 "Net-(SW1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 1f19efcf-6ac2-4cd3-b8d7-f2c878ef2dcc)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "2") (pintype "passive") (tstamp 8bf2b308-313a-42f2-9520-ac07c75df4c3)) - (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 30 "Net-(SW1-Pad3)") (pinfunction "3") (pintype "passive") (tstamp 705cfb6c-6c51-4f91-8512-3711f7b510cc)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp 65d9c0cb-bdd2-4df9-aea0-b98d0f2fbef2) - (at 105.2068 115.4684 180) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/cbbb2462-23e7-4c21-8e59-d2a396195fa2") - (attr through_hole) - (fp_text reference "R5" (at 9.5504 -0.0508) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3d8af2c1-c88a-4235-ba0d-c2ef24384caf) - ) - (fp_text value "10k" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp cc64100c-e3e4-45ea-a40a-1f562e2fd631) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 51c08c94-69da-4454-a10a-5b8bd37e9060) - ) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 250c85dd-a796-426e-b7f1-e456b49bb8c4)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 25e1c3d1-3e85-4761-bdf0-c106afe8901f)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 25ffd335-6016-4ff9-a281-2e3cb33f7134)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 30c814ba-4979-47f8-bcba-fb88ed2c46a8)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 848f3dfa-e4d5-44fc-aa6d-c9f818ab3b0c)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp ea8d63de-2687-4980-b9b8-40fafffc1381)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 3f4234a5-c3b3-4f4a-ba33-970720907c8f)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 55864d43-1b26-4c66-8a7e-db3d1389ea14)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 667bc1a1-7e2b-451c-b0a7-9a8c355581e8)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 90bade5a-689a-4512-bbb6-01b80af7982e)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 0f981fb2-647e-4703-b25b-76679301bdd8)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 31e1bd35-165a-496e-9e35-cfa8a58aeb10)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 6284f75c-afd9-4523-b3b0-8b6c3dd0744b)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 7ef20c79-90e0-4123-9537-05114097945d)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp a0b5c949-abfe-4074-a0df-7c49911be6fa)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp b9a969f1-190a-4302-944d-4e7ddd6fbd63)) - (pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 15 "Net-(D2-Pad2)") (pintype "passive") (tstamp 02b2de22-bd45-481f-85ab-0fc0f67328d4)) - (pad "2" thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 3 "+9V") (pintype "passive") (tstamp c8e4b7dc-55c3-4e3b-9778-8d13582c8182)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp 6f368d9d-c8b5-46b0-b693-ed460ca277a5) - (at 126.619 103.124) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/7164d9a4-b5a8-4780-b92f-c2f1ba0b4c99") - (attr through_hole) - (fp_text reference "R8" (at 3.81 -1.92) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1e524b8f-fcc4-4ef5-bf86-3041df9285a1) - ) - (fp_text value "1k" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 74ec717e-2c7d-4324-a171-d6e4d645d152) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp f37d77d7-7aef-491b-8d47-0cd57b2097c7) - ) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 0d53e932-76e8-499a-b2f1-33270131e26e)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 167f9941-50c8-4dc6-9f0a-d61bc59413b8)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 5c04efae-090e-4c24-b647-e4c967358c26)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 7cc077d8-9f41-4ac1-95d1-07d777948019)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp a7ecebda-6788-4d6a-916c-ace18f67f981)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp eedbff9b-a626-422b-a373-de6951b131f9)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 26d5d53c-494a-4901-8026-fb0cc9b9cb33)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4148258a-b81e-4f12-b25b-a8e9f3561359)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4c0d501b-8a5e-4c50-8643-4067d46e0899)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp aadc58b1-8e0c-43f4-a149-27df15481882)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 0e3b769c-01c4-47af-a564-b043523000ef)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 58c9d754-67ad-4d13-996d-eb46be28bfde)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 67691ab4-2231-47b6-ae28-69d2ebb581e5)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp bb19363f-b339-4e2a-9510-66fc0a341e40)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp deb8b548-1fdc-4185-a2d9-4b0b1d64d60f)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp e23f1618-ece8-4ae8-b225-3bd100cadae5)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 19 "Net-(R7-Pad2)") (pintype "passive") (tstamp 4749384e-640e-4cf0-9a5c-270ab78edeb3)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 5 "/VREF") (pintype "passive") (tstamp b3a9e1fe-f71a-479a-bc41-fb6f0a9f7c25)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp 77a5cf9b-3c8f-41dc-ac64-5818fe0b91b7) - (at 95.29 78.74) - (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor") - (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/aca917d9-776d-4afb-82cc-63883a39f6a1") - (attr through_hole) - (fp_text reference "C6" (at -0.04 -2.286) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a2339edd-2e2c-476d-9c1f-5e2008a41025) - ) - (fp_text value "100nF" (at 3.77 -2.286) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a2b386d9-992b-474b-9d77-828ba4ba5828) - ) - (fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 61872c71-ba98-44fb-9af8-f84d3488d665) - ) - (fp_line (start -1.12 -1.37) (end -1.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 008f6ca6-2e70-4bb0-bd14-ed3d7103283f)) - (fp_line (start 6.12 -1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1b05ce81-fc60-4baa-983f-e16cb25bcd3f)) - (fp_line (start -1.12 -1.37) (end 6.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 3fc69a53-52fe-44f3-9204-58c616b2f3ee)) - (fp_line (start -1.12 1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6bab3d59-7a60-44ee-90e2-9b6c4a3167b9)) - (fp_line (start -1.25 -1.5) (end -1.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 26f9f3c6-9c8e-42f9-8baa-ecf5b1443618)) - (fp_line (start 6.25 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 72624703-5c87-4800-9ef1-120388916f99)) - (fp_line (start 6.25 1.5) (end 6.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b17db67d-3c57-4f69-847f-c440526f7985)) - (fp_line (start -1.25 1.5) (end 6.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d22e11eb-e118-4d10-8955-0dd3da40bc45)) - (fp_line (start -1 -1.25) (end -1 1.25) (layer "F.Fab") (width 0.1) (tstamp 0ccd2784-6f97-4d7b-a47d-8a2c6c176972)) - (fp_line (start 6 1.25) (end 6 -1.25) (layer "F.Fab") (width 0.1) (tstamp 64d5128f-c3e5-4d22-930f-a946a4b74700)) - (fp_line (start 6 -1.25) (end -1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 71142a6d-7e6f-460e-ab5a-add0da5038c8)) - (fp_line (start -1 1.25) (end 6 1.25) (layer "F.Fab") (width 0.1) (tstamp be071c15-f8bc-484a-995e-e1aea52411ce)) - (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 6 "+5V") (pintype "passive") (tstamp 992cd74b-1939-43b5-bb84-4cfbea1b8e50)) - (pad "2" thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp 3c5cf582-ddc0-4bed-91e1-2186d0c31b54)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp 7dee8844-eb29-4005-a053-66d8b8169e04) - (at 107.315 84.328) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/ba9dae14-ba14-4c2e-aa68-5878b7a59304") - (attr through_hole) - (fp_text reference "R2" (at 2.54 -1.778) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0994a116-4d68-4edc-ae3a-5ea2b8ff12f0) - ) - (fp_text value "100k" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ba9684ea-336b-4557-a0b8-ce94ab7579ec) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 6666d33d-a39e-4d6b-9cab-ea59cdefc98c) - ) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 12bf0593-882f-4fca-b593-1480d724dbe7)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 4c311b48-b901-4813-b8d4-18fdf4b70fcd)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 720d1fe8-4e67-41e4-a177-932762262eed)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 78b946c6-739c-4e4b-a3a2-f9486440fda1)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 91e0af6d-1d83-4249-8b23-fed9f1219f97)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp f859aaa2-7383-427a-8413-9041b3f9b2f3)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2ba07ffd-109e-4ae0-8b38-6eefae0956a6)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp bf603aa1-705f-43b1-bc8e-94f337d621b8)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp e1a08da4-3e6a-4e6c-bfc3-8f1d74bffb26)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp f1bebced-8a4f-4b73-bbf4-5469f9519e2f)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 10ab330c-a237-43a6-9b3f-0cd146ebdc04)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 6e45ad21-51af-472e-a8cc-9dfc57054ab1)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 6ffa2140-0f2e-449e-a3ac-bce57bd8faf3)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 976de9cd-ee75-4493-b747-928b2b5945f2)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp cff71eb0-b50c-40b6-bea0-b9a3aa024f62)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp f31aeb25-09c9-4ff9-8810-4e280952927d)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp 1ce81580-1b1c-4ae3-b631-c612779a51ab)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 18 "Net-(R2-Pad2)") (pintype "passive") (tstamp e241b644-402f-4b98-babc-bb3e96394fff)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") - (tedit 59FED5CC) (tstamp 7f25c6dd-2bd2-4dba-b030-ccbee8cc0425) - (at 199.880225 48.766) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/20f7c671-f9ce-45b7-9a7b-97ed319952e7") - (attr through_hole) - (fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp eede83fb-79ae-440f-8c26-1b9e04426d7b) - ) - (fp_text value "Jack-DC" (at 0 4.87) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c97c8594-59b1-40e4-a276-c4f75cf43ad6) - ) - (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 05de7513-b1d2-4a9f-bbfc-f6ec7a15548a) - ) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 2064e202-11a6-46d1-bf37-cd65212e53d1)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2f651a60-23e0-480f-a88d-8ba77b595202)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 72b2fb27-87a7-406a-a197-16c942eb3a82)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 8e42d985-43bb-4962-a58d-4f2f73b8d90c)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp be803e6c-5d74-44e0-84fc-9cefbad67bc4)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp eafd0eea-ffe5-464b-8dfe-135159de6594)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5aea0481-62b8-4733-9e3a-067aa0473ada)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 68caf007-71f5-40ff-8296-c907b4922fba)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp c504d8af-5a1f-489d-b53e-05734e316e49)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c6165119-e301-4a1d-81a4-5b8296a84df4)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 171c5510-0ea6-46cf-9852-c5fd8109ccb9)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 2c5e4cc0-7f1e-442b-ab4a-95c8d799e6f7)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 6fe73f15-5d69-4a4e-893e-03eb09e9b7d7)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp b2d96a4c-5e16-4cc9-8201-a123e59684d2)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp b65562a7-b195-4a5a-ae25-47f9b054e265)) - (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp 9d0a9958-db67-4fa2-a63a-2635acbcaff5)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 14 "Net-(D1-Pad2)") (pintype "passive") (tstamp 35a9e1c4-0805-4a40-866f-dd4376fe3b77)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp 801f8900-a5f5-4216-9420-01c275b068f0) - (at 109.347 92.456) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/35f8b1cf-d587-4336-a64a-a2980024e9bd") - (attr through_hole) - (fp_text reference "R1" (at 3.81 -1.92) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b752a674-b27e-41b7-9b15-235ed2917d2a) - ) - (fp_text value "1M" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 209c88b4-f848-43ac-8ebf-1a28c419bee8) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp b5fbd55e-4174-4a69-a65a-a317c6b4d852) - ) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 07252027-06ac-49e0-99e6-209579ab3f88)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 66396222-b826-4b01-a788-112083c61d52)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 89dc52c4-4726-4239-8c4d-51d4dff25419)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp c5310ca0-5a39-4875-a5f8-05d105847caa)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp f11836dc-56d1-457d-ba80-29f05352c5a1)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp fb7f74a0-ae91-4793-9bba-9af953a390d1)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 36dee750-45a3-4a6b-ad19-6990338a2679)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 472a7ea1-a90d-4f78-a460-eee44bb50cae)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp da22895f-d30f-4837-a4d3-5e03354cd6e1)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp e9593dd2-f3ad-4427-b153-d98718f8c944)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 0c6308e6-b315-4296-ba93-844a34f8030a)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 3403ea9d-a69f-438b-8705-03b8365da70e)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 71a41f20-47f4-4838-81a6-c4aa5f4a93e2)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 86dc0ebf-2e4f-4860-b675-caf4d515af1b)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp d53d035d-4075-4341-bcc5-68171d64d59c)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp e1b4f7a1-5df5-4078-9427-c541a2684dcf)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 2 "Net-(C1-Pad2)") (pintype "passive") (tstamp ee570f83-5647-4f56-bb4a-7bbb662bffaf)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp 42d79e9a-2240-4419-af7e-19bb8bf5830e)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp 98fe22bc-709d-4d3a-8873-4932cf5e0728) - (at 92.772112 114.554 180) - (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") - (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/14c45caf-2ca5-4676-9993-7894f0246edd") - (attr through_hole) - (fp_text reference "C3" (at 5.142112 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ae4eb49a-b4ea-4428-a564-6e464fd000d3) - ) - (fp_text value "100uF" (at 1.25 3.75) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 5ff96a8e-b404-4d4b-aef3-4d0e3ecb453f) - ) - (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 71a2dfdf-4446-4940-b7a7-d1f78f704127) - ) - (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp 0066a7e9-740d-4979-9323-d7bdb43fd3ea)) - (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 007dedb7-93f3-4c2c-9be5-3f9f2bf1a822)) - (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 055bdf6c-8cc3-4825-bfa6-d4d011a61b81)) - (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 09a11f24-5bd2-4c74-8b2a-d8da168e22ba)) - (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0bc0a6c2-c975-4b15-ac71-9d1b6a059e02)) - (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0bcf5d75-8ae4-48da-8d28-451020f9030c)) - (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0c922188-5bf1-4230-b776-cf951d7a58b3)) - (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp 0cf558aa-1c79-4925-8ed9-ad30743a35b2)) - (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0d2ebbcf-e664-4983-b2b0-f971628c31bd)) - (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0ee99f2b-d856-4ddb-b949-0a1ac63b5108)) - (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 106f28d8-c60e-4a4c-803b-1f23a55b798b)) - (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 143e4690-8521-46ab-9d4c-af076101bd3b)) - (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp 166e12a5-d744-401f-ab92-2e94647a83ca)) - (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 173e0aa7-b2fd-4522-a0d8-d9538d85dfbf)) - (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp 1978c758-5dd0-4786-8a8e-70efc098ff2b)) - (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 19ce5174-8d79-4283-b3ad-f7b9f9eee3fe)) - (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1bac9c75-2b81-4655-a80f-743a95bd456c)) - (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1bc8967d-f2ac-442d-905d-660ea8f68fdf)) - (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 1bd1564c-81bc-4a2b-8cb6-c8766ae6514a)) - (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1c12e258-fe3b-458e-be66-2152e22bb6bc)) - (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 1c222caf-bc87-4e30-b714-6db8bdfffc40)) - (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1d1a0762-bf31-4111-a033-66fb82b96b6f)) - (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 1de7d69f-a910-4281-b9db-78b5f5c42db1)) - (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 1e521df9-76f4-4ed1-9c70-13338b4d1c3f)) - (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 1e7a2d1e-551a-48cb-b179-ae0ba0c688c4)) - (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 23edb3a2-2d08-4485-b611-b410514de126)) - (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 255f06c0-469c-4dd1-99ca-852d1b77aa09)) - (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2884b291-e42a-4f0a-9198-7ab8b40fe41a)) - (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 28ec46a0-a150-4e2c-937d-ca7ef4c29955)) - (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2af6e0c9-21c5-48a4-afd7-587c45983047)) - (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2e37981f-1f29-46e9-b23e-31d82b1d963d)) - (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 30f6c7c3-641c-4be5-82af-c97096963dd1)) - (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 31734e90-4a97-4808-b5f1-62bb29c95467)) - (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 3387302f-ab29-4c74-83e4-26210a06f63c)) - (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 34f89d32-181f-4839-97f4-3267d9970a0f)) - (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 3ae4cb2a-52da-424f-bc31-defcfe97640d)) - (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp 3b8e7aca-3832-48b9-bf7e-2fd976ed8ce6)) - (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3bc8340e-b4e8-472d-ab3a-317d18df9a32)) - (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 41d867be-02b1-4e8b-a43e-e18957b917a9)) - (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 46804efb-3158-4a51-8395-23308e0597bf)) - (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 48a1bca9-1a4e-42f6-958c-821ae46819c8)) - (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4aa30728-50ef-46bc-8ed3-fede054bffaf)) - (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4f7dccf8-2433-4876-9a50-803c8819423b)) - (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 5077015b-8e4a-49e8-9828-b85f7cd84b50)) - (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 51be1cd3-6818-44b6-991b-afb04d881433)) - (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 52ecc8cb-95a0-41fd-aecf-9a1c676da1cb)) - (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5c2c25a1-939f-44c0-89ca-75dca5f284dd)) - (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 5e69289b-8fb8-404e-a9a1-aa096bf05ed2)) - (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 64d2f608-93c9-4579-a10a-43c775f690e3)) - (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 659f4f31-5ab0-4938-a9a4-78e685040f2a)) - (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 67b487f0-5199-4563-93d2-3768e9df63d0)) - (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6b29c05f-95cc-40e6-bb90-636a59698ee1)) - (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6b3b2d24-9dda-4234-8856-f1896b7742a1)) - (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 6e1489a0-d0d2-4d4e-b714-bd2dd6a41a70)) - (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 72efb878-71c2-4f12-8db7-e4051d23253c)) - (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7828558c-887d-4682-933a-815188539e0c)) - (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 785aee8f-d298-41c1-b8d0-cc3c4749ab70)) - (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 7c33db0d-15d2-4b01-8e9e-3c450bfef772)) - (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8257232f-5404-4be4-9d0f-988051cca007)) - (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 8551163a-97a0-4c50-8f37-da5b6e0f54f0)) - (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 867cc9d6-b629-44a9-a939-2c6f3ec0ee59)) - (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 8a7f9800-1696-43b7-aff6-6134ad58f597)) - (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 8ef3d599-a2cc-488c-ae32-14d29534990f)) - (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 988b6c62-5c53-4d2b-bf6a-4f60ebe7a677)) - (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp 9929b275-3433-4f37-86c8-3118afe4dda5)) - (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 992a7a93-e753-4c7e-8f1f-5c83d6019139)) - (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9970a4e4-9b9b-4952-bbc2-df5ebabc853a)) - (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp 9b1e736d-42cc-4502-ba2a-764fb88d7221)) - (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9cb2d0c4-f93b-4982-9b8b-d868998ee380)) - (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp 9da84c40-49cd-46f1-bbf3-cd095d084e46)) - (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 9eff8ae6-0193-472a-9b66-46773062dc99)) - (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp a0402fc9-7266-4ec0-bc26-ecd8a62325c5)) - (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a118885d-8358-493a-afad-bc80b38b10dd)) - (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp a1348c74-01af-445f-9740-354d9762009b)) - (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp a1edb1f0-3ec6-4892-8059-21f0a0d45d9d)) - (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp a6b391a3-952c-45af-874e-1f7f9dc4b644)) - (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp a776e414-9046-42a3-a7a7-5139c42ce5c9)) - (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a877a5f3-dd69-4f3d-9a92-5458558de6e0)) - (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a9bcb1ea-0adb-457d-977f-1eb95764dc86)) - (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp acfc5e16-1696-4e54-811d-3eb77aca8734)) - (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ae265014-976b-4e01-a8a4-c1f801feb95f)) - (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp ae37fea0-0522-43d0-936d-6fc915e44acf)) - (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp af58de03-d505-4606-b77f-292ce8984004)) - (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b4b04194-7dc2-49a5-909f-1789c78de5ee)) - (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp b76968aa-0b36-4596-a201-4d2834cecfec)) - (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b84ffd7e-97cb-4e5b-9370-a4e1fbf35adf)) - (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp baad08c7-56ab-439d-833c-77eaa9b26615)) - (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp be32fce5-e4c1-4477-91c6-a5dc910159e1)) - (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp bf16e2d9-be98-400a-818b-6eab42dacfe9)) - (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp bf7504fd-43a6-45d8-a78e-5aecae590f83)) - (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp bf85182b-339a-404e-aa48-5bd73aa81483)) - (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp c115e7db-5c9b-4aa3-9e0e-4f39610f2a8a)) - (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp c39dfd21-eaac-48d7-9936-52bbbb40ebe2)) - (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c51adb2b-5d85-4b63-a718-063640b78248)) - (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp c568a17e-d700-4bcb-ac86-36cc0c21ddb1)) - (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp c895ee4b-5eff-476c-9baf-1d7693bb0490)) - (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp d175d98f-7129-4229-8126-91569165cd6b)) - (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d41c0358-ed3d-4d77-84d2-05ca90f2e1fd)) - (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d7599c6f-c1f2-4358-9fa7-448d9a928fb8)) - (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp dbe020bd-e4f5-4704-a1fd-cdba27a295bd)) - (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp dc2f8ea0-d325-443b-b87c-33339f9efcac)) - (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e1395f05-905f-404b-82b0-f088ce7d906a)) - (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp e14b7c9a-2b76-4e1f-b6c3-1ad0d4e18760)) - (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e1efc897-2433-463e-9f7f-94a264317c26)) - (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp e3e34885-7347-4f6f-87f5-4ad1bd21b23b)) - (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp e407e1ba-dba7-4929-978d-02e5cb99020f)) - (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e4c2cc14-8006-4ee6-b2ad-3c8c6ecb003d)) - (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e8c25efa-5f65-4dcf-aec0-eaa17b7cf964)) - (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e946171d-3ca1-4c38-ad11-25a331e3fe61)) - (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp ea32cdb4-d4ab-419b-9c74-2e7d9874baa8)) - (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ebb53e79-7506-4cd6-b335-18740d1a7f45)) - (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp ece526d0-274d-4a1e-8072-e06facb58c49)) - (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ef6af48b-457f-4371-8488-756052e5f3be)) - (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f304433d-ca32-4f40-922a-842b207702f5)) - (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f52329f2-434d-4a19-b86a-17e0b769c6e4)) - (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp f66cc2d1-f731-4bd1-944b-cfe55a8b03fc)) - (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fa1e5823-3b3e-43e5-9e6a-e0ff03309cda)) - (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp fbe5a0c2-e1a9-4944-bfbb-fe363beeedba)) - (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp fd3653f2-3fc2-4d7e-a445-dbeddc880382)) - (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp fd3e665e-4faf-4888-87b3-84b7f58127b7)) - (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 907f1282-9295-45f3-81bf-fc91e9e1e18f)) - (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 86b593a7-a7ce-4f0a-9cb7-969d38a16cfa)) - (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 3920dd2e-6714-4a95-a5b9-43f806299b9d)) - (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp d813b05e-a286-4b7c-b38c-9ed1b7c2490e)) - (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 1016d0cc-ce0b-478b-b245-ebf9b5d49a8f)) - (pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 3 "+9V") (pintype "passive") (tstamp bea4d0dd-493f-4e53-a857-cb6656982b9a)) - (pad "2" thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp 24d2be95-fe57-4aaf-a6bb-ae5f4893dbb3)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" - (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") - (tedit 59FED5CC) (tstamp 9c77e549-bc3d-407e-a17f-1f44a0465725) - (at 174.720225 66.876) - (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x03 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/43757849-b532-4d70-9abd-eff55e4b1df4") - (attr through_hole) - (fp_text reference "RV2" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d4cb373f-4a61-4889-9d40-64766f5c5da2) - ) - (fp_text value "10k" (at 0 7.41) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 731f883a-04ad-422c-997a-fce5c5bb4a4c) - ) - (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 628f1940-65d5-4902-9080-fb611951eb1d) - ) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 046ffd00-5d98-45b5-96ca-bd917531fbb0)) - (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0578cc41-b7c1-4ade-903c-57e26acbfe27)) - (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 7e5b56b6-870a-4142-bf22-4849392efa83)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 837590ef-8bd0-4229-b80a-bb0e479a4548)) - (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp d8c674a4-0e15-4f14-8afc-3fe5709d5bde)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e7553e25-6ccf-4665-b03c-8b4049aeec3e)) - (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5c52001a-44b6-4827-8867-9a065693af27)) - (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp a4982281-cb2e-4e67-b187-3dc42a2269fa)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c6366de0-d034-4744-8fcf-fe9160c0c045)) - (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp e1d40d67-d033-4daa-9d46-bc21ebcd0402)) - (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 3603f7c6-f204-4b31-8651-80749e01b988)) - (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 45014f2d-7e45-46c0-ab1b-ce64554cd6e8)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 53c4cf9d-b999-4420-8e07-0c308fdb7fa1)) - (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 8394cc2a-4982-4b6d-bfbd-3eb8dbfbd67c)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp dca14449-15cb-4e80-b2c9-26807b3e9ea5)) - (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 6 "+5V") (pinfunction "1") (pintype "passive") (tstamp 905b3988-1065-47f7-9e70-74a2a9c6887f)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 25 "Net-(RV2-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 4ee6b2e3-5c0a-42f0-970f-1a4d4d30771c)) - (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "3") (pintype "passive") (tstamp 9efd5519-036a-4603-acc8-a9aaf6b168a5)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp 9fbc55db-5490-45d8-9fd5-08ea3e28ba8f) - (at 90.932 78.296888 -90) - (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") - (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/c47362ce-ad1a-4f8a-a4d2-857430559736") - (attr through_hole) - (fp_text reference "C11" (at -2.350888 0 180) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f672c58a-b429-4da8-b745-6b8c0d30d0b2) - ) - (fp_text value "47uF" (at 5.015112 0 180) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0510799c-d2a4-4680-81d2-423534f8dda4) - ) - (fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a75b3d87-3fab-4b00-9434-1a26cf886c5e) - ) - (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 070e5d32-b58a-42e3-bb4c-bc52677ffa35)) - (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp 09f55431-babc-4fb3-99a3-79783973c5a5)) - (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp 0b1dd781-9b87-4ed3-ab39-d501ec9722d1)) - (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0daeec1b-79c9-4f56-a2a3-b3e465388139)) - (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 14190108-3256-48c0-98e6-b888dc7c85a3)) - (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 163d6f63-0587-4afb-89a5-7b550b6f827f)) - (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp 22aa5a32-d812-4c4a-84da-867f7db24149)) - (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2836094b-aa44-479e-9a51-7f48718f0dbb)) - (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 2976c54c-e78b-4b88-8563-7a15be7332f1)) - (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 2ba24c6d-388c-4e3b-8762-a11a62dcda68)) - (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 2d79eec9-61ab-41e5-9726-045de1a269bc)) - (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 2dbd88b6-dc26-4fb4-a4be-97ce7d2f3452)) - (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp 335776fc-a8e6-4ba4-9e05-297c0dda9e05)) - (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 399f1a63-c5b8-4a02-8366-bafe5748e70e)) - (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 3aab6872-919b-48b9-ac84-fad819a76822)) - (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 3bf28e3d-2695-483f-9398-550e1a2e750a)) - (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 3c62d3b6-7c4a-4fb8-80e4-233438c45f29)) - (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 3ca7ece3-0aaf-4b40-af69-a8115001eb49)) - (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 42ead6c8-c715-41f8-bee3-9ed67435355e)) - (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 47e4a59c-0d0b-400d-9d13-041e7fd61536)) - (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 483c471a-9441-4eae-bda1-202ac6c7fbd5)) - (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4b240496-6b7c-4b73-a5ea-9a2f4c85f0eb)) - (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4bcfffbd-a1eb-45a3-897e-186698e02ebb)) - (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d1c5f2a-967c-492a-b7ff-8079b1fb3ec3)) - (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4e24a3f6-24c9-4482-b66e-2efdf6a97b83)) - (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp 516d2515-bde6-4f52-af72-736d7e463efa)) - (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp 536a1ea1-e317-4327-80a5-9b34b873bdc1)) - (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 543b05b9-21c6-460d-b50a-dbe347e6df4c)) - (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp 55b9e27d-2f99-4b2b-942e-dd9b421aab0b)) - (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 581bbb37-0fa6-419c-8bc9-ea0a7734f6c4)) - (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 586ee0c7-e4df-4fea-97eb-8ff9232d34ab)) - (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 5c6c5091-2322-43db-83f4-68d14db83ffc)) - (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 5dcb187b-7e65-4194-8743-c808e0f65c41)) - (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5f1e0377-88d5-4bcb-8159-cd5e98e98a95)) - (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 60d5bcc4-0c68-494b-bde1-646a55408f8f)) - (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 61a6bef7-7fb8-43f3-bae7-200ca4536a59)) - (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp 61be2b70-681f-46ce-8f64-3440b9b4eaad)) - (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 63d08f29-8185-4670-bfac-de0d082e6b3a)) - (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 69dc4fa7-c080-43fc-9ca5-2b8ce6641bbe)) - (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 6a4aaca2-967f-4de6-b4ef-b9ea2ed437fc)) - (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 6b2e33b8-2429-4614-a3b7-281966d090e0)) - (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 6f3f6547-0fe9-48da-a33c-dbf04cfbbeb7)) - (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 70109a60-e771-4f2a-8b8a-7393ae7b29cc)) - (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7193e484-59a7-4a04-8624-86468e85307e)) - (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 719a671b-3af2-4a84-9089-ff456c510a52)) - (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 73e324eb-8065-4675-8f01-4889093e5763)) - (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 74a45de6-b07b-4dda-af13-68608c70a8e8)) - (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 75ddbd9e-df6b-4aec-947c-384ed909c693)) - (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 7ad501d8-3998-4ea0-8c33-ae3aa5f5709c)) - (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7de55cd2-46f3-4de0-888e-ef99ef9b3a75)) - (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7f12cbea-6a9a-46fe-a3ec-2b65940fa7d4)) - (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7f2168a5-613c-46b0-89cf-0dad400481ae)) - (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 7fa9b8c8-e1ef-498a-9686-24633b8a0ed6)) - (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 81b56a55-5771-423c-9c1c-863621ab1118)) - (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8312d39a-9462-4149-aabb-2498eb62ef87)) - (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 86dd4b91-cc19-4c3e-9153-68403485d88b)) - (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 86ff8c21-6554-4177-ac6a-44944a16b397)) - (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp 880fdbd7-35aa-497b-8168-d99bcc294552)) - (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 8883061c-c1db-4f7e-a37e-797a62518de3)) - (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8aa266ed-e34e-4d17-a40f-5e719d00bf2f)) - (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 8adb39b7-e725-447a-97d4-fb7005b84066)) - (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp 9033a021-fb90-4557-a8be-8ec179d1093e)) - (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 90f9c8ad-c3c2-4a3e-ba4c-9d26bac67b79)) - (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp 931dd8eb-0aae-4536-9946-60b595817bf5)) - (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 98755520-3460-4768-bc9f-ddabd5c4675d)) - (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 99b165a2-b3a2-49d8-af9d-a665e38aa181)) - (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9b14d04a-c100-4215-bd88-8f59757360d0)) - (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9ca442cd-90d2-4614-a189-49b093e2448f)) - (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 9d26ef0f-b7e7-4b4a-95cc-d11292e06406)) - (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 9e82f5df-adce-4c60-b30d-617362a66c97)) - (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp a053c6fa-5d93-4d77-abf6-60de6d77a2b1)) - (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp a140ef24-c982-4e5d-80f0-6dbefe5368e6)) - (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a4259b7d-6ebe-4b37-a766-7dac40b3c370)) - (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a59492ea-8619-4ab8-af9e-3cf1d0cf97a0)) - (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp a7e6fb35-ac1f-46a3-98a8-e4a020c8da8c)) - (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a85343c8-6bd7-4d4b-b532-d80dba0c6a78)) - (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp a9f68bb6-495a-4520-8d88-d0b635904966)) - (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp aab4ac9c-19d5-4bdc-beed-7be755cd87a2)) - (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp aabb9553-512d-408c-aa49-571ebb19e0e7)) - (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp acbbe3f0-4e1f-4952-b9bb-4cd1e11e4872)) - (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp aceb02eb-26fd-4ac8-af06-58b1b3abc7aa)) - (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ad611a81-9dc9-4fd6-aded-822eb7e62fb4)) - (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp add95478-8848-4184-8a9a-9e6f262f62be)) - (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp ae68413d-34dd-4d31-8c1d-7e9e7411e5ca)) - (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp b1c04f17-3e85-41c2-ae52-4437fc01c206)) - (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b724b907-1489-4d22-a901-34e0e68b071d)) - (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp b9f5109d-196a-40f4-99b1-06e32ee56be0)) - (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bc0e3c2a-a1c7-4b6d-9d11-28620000a0ff)) - (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp beaae471-e34f-46d3-9e19-7f27c1281502)) - (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bf675b45-d81e-4b4b-b680-9314f240cfbc)) - (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp c16a9c0b-2247-4b13-a17a-730a2bb033b1)) - (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c31e70db-a337-4610-85e1-eb696de9c196)) - (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c3aad298-2a60-4727-903e-c5051401874d)) - (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c5f88183-568f-4d35-9bcc-9e7b0c82e529)) - (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c72ce567-1be6-4d0d-b8f9-3ccbe4ee43ec)) - (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104)) - (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d155048d-cfc3-4598-b7ba-170d4113adaf)) - (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp d2a54939-4396-4317-93a6-bb6a5d53c9b3)) - (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp d2dc5d1b-c8fb-49c3-8798-d38db8f7b008)) - (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d3390629-9b5c-4494-abb4-c184616f22bd)) - (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp d4004661-28b7-40b9-85cb-aa221803e569)) - (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d54f7ca2-d0a9-4429-ae27-555ea7ac9e18)) - (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp d5e4d0e7-52b0-467b-9e15-bf38c95e0471)) - (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp d62d5752-692e-43f3-8714-f83788269e6c)) - (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp d6c18703-337a-4816-85aa-ecfc7dee6715)) - (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp d7d45151-2b5b-4700-8595-7c811fcd836a)) - (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d82b6297-4c42-404a-88c2-bc56dbd85236)) - (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp da345378-03ba-4c38-b4a0-bb03d01b10fd)) - (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp daba3fd5-837f-4602-b67a-9b03f5a0be14)) - (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dde7b08d-aa72-439e-8217-88192bde03de)) - (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp e314a2ea-5227-4cb3-b6f8-3493ef564bff)) - (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp e98ba503-1515-432e-a623-dfd4b04ed666)) - (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e9c0df31-3cf0-4a58-9552-06378729a684)) - (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp eafb611f-a701-48b5-93da-7c541351d13d)) - (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ebf55f9a-09d5-418c-86ad-e843dab6fcaf)) - (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f04386bc-e6de-4107-8c96-e7c447dea5c4)) - (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f59bb802-3557-4eb3-bb75-c5cb111f5a2a)) - (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f76f07bd-4825-4b1b-94b1-38cbed0fc4d9)) - (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f8415580-020f-408a-a55e-f293899d178e)) - (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp ffbf103f-11ec-490b-9723-2e7d758f7eb4)) - (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 72d4278e-ae44-4c4e-b5ff-259e2d57dac0)) - (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 2f2fc486-0a0c-4add-96b6-dc553a5b91bf)) - (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 93a0149b-5380-4420-a8f9-e39ee7260d66)) - (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 9c9d419c-b975-412a-8bc5-488d17b0b817)) - (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp cf4e3c5b-03c5-4012-b1b6-011d17487ebc)) - (pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 6 "+5V") (pintype "passive") (tstamp ede091ff-4980-4295-82ca-c76933ea81f3)) - (pad "2" thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp d4753a18-45e6-48cb-82e9-0a9b84095b95)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" - (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") - (tedit 59FED5CC) (tstamp a15b416c-01ef-427b-8db0-f5862addef22) - (at 183.680225 54.726) - (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x03 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/05e6021f-96e5-415b-8bf8-d37fbab0152a") - (attr through_hole) - (fp_text reference "RV4" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d4df53a4-69da-4453-b49b-215f62130f10) - ) - (fp_text value "50k LOG" (at 0 7.41) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a43b1940-18e3-4384-ba90-171437611f8f) - ) - (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 60238e3e-6bd9-4371-99da-9d416504458e) - ) - (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 03c40f1d-2ac7-4bfb-8720-d7599b4d4c69)) - (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 16579cbd-be07-412b-9772-2313bc4986a5)) - (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 1aa8d951-fe8e-4d6d-b4b1-74eda4dde559)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5f0141cc-9cf3-4670-a817-89a494e1cecc)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9d9bc7ad-7d5b-4953-9601-837cdcf04d1c)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a29e0839-ea6a-461f-9521-280220d0a02f)) - (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 1c46d95b-6e65-4538-beaf-c69ab0281a72)) - (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 21a2e357-9ad7-4e55-9783-020864723576)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7853d0de-59d8-4dac-aa22-9ef2ec96d6e8)) - (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a7acf408-22c3-4595-bc3e-d678f1b68bb5)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1c5c7e2f-94b3-4b5e-b4ad-c0a6563fc67e)) - (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 33ea8dc4-877d-4756-9eec-56ecc269d0d6)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 692e3a4a-972f-4c31-922d-e8f03a21b1e1)) - (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 7a57a81e-00c3-44e8-ad57-0ab96be3cdc7)) - (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp c866e365-6de6-426f-afc0-0b2635c862ac)) - (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 12 "Net-(C13-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 2d414f70-a810-4b20-9372-8aff4205524e)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 27 "Net-(J3-PadT)") (pinfunction "2") (pintype "passive") (tstamp 32e61bfc-d546-4722-ac49-cbb99c79a789)) - (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "3") (pintype "passive") (tstamp e80d91a4-7b13-44db-905d-9aa42f5f4c19)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp a4f64921-f3d5-4c46-878a-337a6c787dd8) - (at 85.598 89.408) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/abdba8ff-70b1-4b5d-b32e-fb4f4f4b356e") - (attr through_hole) - (fp_text reference "R10" (at -2.54 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp bb5b1234-5a4f-460f-82ff-647cca039209) - ) - (fp_text value "10k" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8eaf2ba4-939f-48d1-bd6c-73873ccf5ec9) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 23f7c4b9-b044-4936-9e74-e88336bdb924) - ) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 220f7e85-6438-4a49-93f9-9a424ce6d462)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 2811397c-157d-4053-9557-4b432b969d49)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 33800183-c8ef-4899-81e3-5fe030f895bb)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 49f469ff-85ca-4c94-bd56-0720482a53e3)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 54af0c93-be2f-4c9e-8c06-f045e73eb08a)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp f705d83d-e13b-45e5-8be9-49966e2b0cb3)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 1fbbb8bc-61cb-4b8f-9db0-65c383bb8485)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 3aadc47e-7247-4bf7-b1ae-22a205e87830)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 94048edb-4fbe-4c79-a9b5-99aefbf2f370)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp ddf331ef-0852-4c89-b71f-19d224a4f993)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 1e3188d4-d4ed-4480-aa85-a56fcf75861b)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 337e8ace-587c-4801-b73a-4faa81856def)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 37d172b4-94bf-4b7b-ad0c-3dd624eac7a7)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 73242ff0-5675-48ca-92ba-26fdb248b218)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9be02139-a718-46a9-9127-4ae38e8deb32)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp a2185ccc-cc39-4a73-8d24-a49e8fc88fe9)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 6 "+5V") (pintype "passive") (tstamp 571b696b-aab6-4045-9a37-9352ae1819ff)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 21 "Net-(R10-Pad2)") (pintype "passive") (tstamp d726e862-d97e-4144-b8b1-b91665ca4784)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_THT:TO-92L_Inline_Wide" (layer "F.Cu") - (tedit 5A11996A) (tstamp a6b515fd-b694-4124-b49f-f92bd679b10c) - (at 95.758 103.124) - (descr "TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf)") - (tags "TO-92L Inline Wide transistor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/5c3fbc86-b745-4733-8ef5-b40aa9974c3c") - (attr through_hole) - (fp_text reference "Q1" (at 2.54 -3.56) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 14b21cfe-6fe2-4ee1-9681-3b244e699b0e) - ) - (fp_text value "2N4401" (at 2.54 2.79) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3ecd5e71-045c-45dd-959d-3e97c8e33089) - ) - (fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c5c5c032-e127-4fa8-a41a-e56835647d83) - ) - (fp_line (start 0.6 1.7) (end 4.45 1.7) (layer "F.SilkS") (width 0.12) (tstamp 8faa557b-b359-464d-8084-12e64110f939)) - (fp_arc (start 2.54 -2.6) (mid 3.936979 -2.192818) (end 4.8964 -1.098807) (layer "F.SilkS") (width 0.12) (tstamp 0804e938-ad61-40c0-a804-2ce216de69d1)) - (fp_arc (start 0.6 1.7) (mid 0.389183 1.423933) (end 0.217369 1.122045) (layer "F.SilkS") (width 0.12) (tstamp 72409533-989c-4762-99b7-6b85e4e4754b)) - (fp_arc (start 4.842383 1.112264) (mid 4.666594 1.419753) (end 4.45 1.7) (layer "F.SilkS") (width 0.12) (tstamp 9d5ae7d6-a5a9-4716-84cc-3538df528ff9)) - (fp_arc (start 0.1836 -1.098807) (mid 1.143021 -2.192817) (end 2.54 -2.6) (layer "F.SilkS") (width 0.12) (tstamp f73d206d-2330-46c4-820d-c3b09f846ac8)) - (fp_line (start 6.1 1.85) (end -1 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 79b5200a-3c4c-4f7b-a09f-0bfcea5ef439)) - (fp_line (start 6.1 1.85) (end 6.1 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 9bd9e38a-68dd-40c1-b9a0-8d739580dc6b)) - (fp_line (start -1 -2.75) (end 6.1 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp dc0eeaf9-5345-4d45-b56a-0e74a68b5cf7)) - (fp_line (start -1 -2.75) (end -1 1.85) (layer "F.CrtYd") (width 0.05) (tstamp dff82fbe-ee79-44c3-8e77-55b4b643c5a8)) - (fp_line (start 0.65 1.6) (end 4.4 1.6) (layer "F.Fab") (width 0.1) (tstamp 8005277a-3098-436a-a68c-33764df7e8f7)) - (fp_arc (start 2.54 -2.48) (mid 4.787211 -1.049019) (end 4.441103 1.592547) (layer "F.Fab") (width 0.1) (tstamp 79d38655-5f57-4e31-9bf8-3941bda59ecc)) - (fp_arc (start 0.647182 1.602385) (mid 0.290076 -1.043188) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp a824e723-c965-41fa-b4e2-adc2e13edd96)) - (pad "1" thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "E") (pintype "passive") (tstamp 9f1a06df-af64-464d-8e41-f0fa11c764fd)) - (pad "2" thru_hole circle (at 2.54 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask) - (net 17 "Net-(Q1-Pad2)") (pinfunction "B") (pintype "passive") (tstamp bdf4f03c-8a24-4f78-8989-d168dece00c3)) - (pad "3" thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask) - (net 16 "Net-(D3-Pad1)") (pinfunction "C") (pintype "passive") (tstamp 59cc1d2f-efa6-47ee-a723-6abd4cf20956)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92L_Inline_Wide.wrl" - (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") - (tedit 59FED5CC) (tstamp bbec1ed8-2df2-49e9-a459-b93fb2c94f3a) - (at 158.920225 76.716) - (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x03 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/0730adea-81a1-4a16-b234-8593e2de6ad4") - (attr through_hole) - (fp_text reference "RV3" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 094c773e-635b-45e6-9707-3e50d9d77da5) - ) - (fp_text value "10k" (at 0 7.41) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp b43c4d34-4429-42f2-b562-da7f1bca685e) - ) - (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0d48d793-d9e6-4535-b43d-b19a9cfaf0a8) - ) - (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 2f7cbc3a-2f90-4063-8f08-adf52871196d)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6b210527-4628-4b35-bcc0-57c051da3023)) - (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 85e198ab-d20e-4abb-8b5a-0d97bb3da8ed)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 97c2e2b6-bb7d-4221-8351-85bcee8b7626)) - (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 9d94d3c1-5246-4e2f-b30b-526435ffb16c)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp cfa9ca81-e166-49c3-8ece-ea2d2f4b969d)) - (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1d1628e0-13e3-40f8-9e72-fadcd6eb77cd)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 78a573e1-9ddd-4227-b014-3c138f45f799)) - (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp b9f0366b-46c1-4a4f-9c49-7e9d79cea7ed)) - (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp db11d02d-4f8f-40cf-8047-3f93fb9645f9)) - (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 1a1cd54e-557d-4ce8-a934-7e5cad7d2b43)) - (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 232997e6-1106-4d1e-88e8-7838e5446dec)) - (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 252382df-08a7-4b0b-8609-1072db1e998e)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5209ee21-b9bc-43e7-98b8-8512844c4760)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp fc4dda32-407c-4d4d-9a1f-4ea9d8c1149a)) - (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 6 "+5V") (pinfunction "1") (pintype "passive") (tstamp f1777ff1-42b8-432f-a12f-b835dfa74a35)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 26 "Net-(RV3-Pad2)") (pinfunction "2") (pintype "passive") (tstamp bd5d7f63-34bf-4bb3-b1c4-4c89e26a6f21)) - (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "3") (pintype "passive") (tstamp f32414ec-8db5-499f-a295-d07be7ef7cc8)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp bd56567c-7522-4330-b9c4-a8f0065bc56a) - (at 126.619 105.664) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/a75d8798-8e4c-4d92-ae26-3ecaae523cf2") - (attr through_hole) - (fp_text reference "R9" (at 3.81 -1.92) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp a5b47ad0-6730-4ee7-8a9a-92d2f37af3f0) - ) - (fp_text value "1k" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f9f59f58-cdfc-40a0-abf9-04a60eeed383) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 099b1d33-c774-459b-b985-bbc672c953d9) - ) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 675c385a-eba3-49c3-b668-44b8b5ec7659)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 67796374-175e-428b-884b-2ce8f60cb07e)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 71e730e5-6e07-4211-808c-ecb875de5a55)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp b5f645b0-7eda-4ce3-8982-1dc09909e92b)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp d7ad208d-7fd0-4b54-827a-ebe9f1328d1f)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp e45507fc-b281-4add-a52f-c018e3c1c146)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2203daf9-cd4d-4236-a356-a5e1851852e4)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 728b2a4e-fb69-4497-b10f-92821ceb0fd7)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 86c154d1-a93e-47a0-adeb-82ad48cddb06)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp d0e71996-2bcc-4361-9d11-9474c9eec1ec)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 52bbf4e8-a9fe-423b-834b-5b7b5b59f998)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 860026d3-3656-40bc-a191-b95e5d1ffb3f)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 8836a068-d74f-431e-a1e5-f8eb4b124eae)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 8ac242d8-da35-4359-8a50-9442258964ab)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp b49cfbb2-73f6-4070-a8b7-dfb64c4820af)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp c420f986-f163-43d5-9e3f-e80e0f8c86b1)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 20 "Net-(R9-Pad1)") (pintype "passive") (tstamp bc328c71-dfb7-4730-a717-5e44731c5ef6)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 5 "/VREF") (pintype "passive") (tstamp 7a1d41d5-40a3-47cf-8084-1ca6aec90e70)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") - (tedit 59FED5CC) (tstamp bf118d68-f8be-4bb1-b3b7-6b82e2590c12) - (at 179.370225 68.476) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/049e1e3e-c904-4ddc-9991-66aa46751da7") - (attr through_hole) - (fp_text reference "SW2" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 2668c6d7-38a5-44cb-a0c9-8b4480cf9c58) - ) - (fp_text value "SW_Push" (at 0 4.87) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8bfe0179-645e-484d-8f52-4c876a96ba53) - ) - (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f5c896f1-ced2-4d3d-9587-216ca8e0d2e9) - ) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 40533609-053f-49b9-840a-d23d763aa231)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 61d9b81b-8499-4933-91ed-7a8972810007)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp a273aabd-9b0c-4eb2-9ce1-0a72077650f3)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp d0578794-9996-4221-8748-14a950ac4714)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d1dadecb-afff-4773-9ad8-6b4e7a3d3d40)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ff77e396-086f-4672-b860-8f0c74d04600)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 7a334fe5-4c38-499d-a952-8af4828095e3)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7e8c5677-965c-4752-b014-cabbc48db39e)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 97b72635-d769-41b5-be10-7466ea4805c9)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp fa9b23a5-b594-4ac7-8506-4998f1437cb6)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 21abaf01-59ce-489b-ba58-2406d95a0e9b)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5ae2ad8b-5b9a-4f0a-9ba8-60e853cebaed)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 719cc8d2-94b3-4afa-83d0-53e920aa57bb)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 9ea17126-4fc6-43a9-a2ae-4762c243c395)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp a8e742a3-3691-4ded-903d-26b96a651bb8)) - (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 31 "Net-(SW2-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 41fe6786-b6dd-4246-aa90-35123881d4e9)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "2") (pintype "passive") (tstamp cfa01562-09d4-4979-8f4a-30a1bc839813)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp c124feb2-fd68-47c0-8449-e77f5ec2c83f) - (at 107.315 81.788) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/32f77ed2-d2d8-4498-b1c5-1a45c90ea279") - (attr through_hole) - (fp_text reference "R6" (at 3.81 -1.92) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 33606acc-3abc-4c7b-a17f-3101183617c7) - ) - (fp_text value "330k" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f57ad819-ccc9-4ec6-b8da-ab357f75618f) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp e7ef6ab2-35e1-469b-9d03-1d9f4274cfe5) - ) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 00cc4a54-e8fd-49e0-88d8-83b84abeeb9b)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 27b6d6de-2871-43ee-a31a-7e967bd77124)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 657115a9-f9a3-486c-9bd6-db095554fe5d)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 6c831069-2dc0-45f1-b7ae-529b82e6bc04)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp b96ecb72-43ee-4d6b-8b90-d5622ef0b20d)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp c839a9b5-5f07-4c3b-8403-d1477d36874a)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 0190626a-aaf6-4918-bada-cbfa199c94c4)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 7feac326-bf7e-4bf1-be49-e9239e11999c)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp d897a3f2-5a37-44ab-b0e1-156820f6c404)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp ea699d5d-18e1-4b3b-b25a-971d32e2e1c2)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 12bbac17-964f-4eff-8e1b-8b39a5c3015e)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1800db70-b8e0-4682-af1b-658a3480d604)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 694b1b1b-5631-4912-8f97-199a3c60f57e)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 6d4ed10a-e755-4254-ae6e-93bc6b9cfad2)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9dc57386-bd37-48c8-9a85-4bd45f75c9db)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp bd3f3acc-c092-475d-8f80-843974e74de3)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 18 "Net-(R2-Pad2)") (pintype "passive") (tstamp f8b62275-7409-402d-93e4-c23d3ec79a85)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 8 "Net-(C7-Pad2)") (pintype "passive") (tstamp c9abc670-f50e-41a7-b0c8-f35a108eed71)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Package_TO_SOT_THT:TO-220-3_Vertical" (layer "F.Cu") - (tedit 5AC8BA0D) (tstamp d246b720-0b90-496e-9a97-54995820586e) - (at 86.289 83.312 90) - (descr "TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf") - (tags "TO-220-3 Vertical RM 2.54mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/172d14e9-0ed1-4942-9b95-1fe8560ad343") - (attr through_hole) - (fp_text reference "U3" (at 2.54 -4.27 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c45eb376-20e5-4c55-bbf1-6fb107c08d1c) - ) - (fp_text value "L7805" (at 2.286 -2.215 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 0f5efc4a-2193-49d0-a32c-333b0d7cd545) - ) - (fp_text user "${REFERENCE}" (at 2.54 -4.27 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp e3f943c6-6ff7-40e0-b0d6-7f23ce596a65) - ) - (fp_line (start 7.66 -3.27) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp 153a91b1-4ee0-44bd-814e-7bf2ce10885e)) - (fp_line (start -2.58 -1.76) (end 7.66 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 6117cdd0-e954-44ae-9cb6-01b213233995)) - (fp_line (start 4.391 -3.27) (end 4.391 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 9a3dec6c-1ff7-4f04-98b4-bff75dbe2572)) - (fp_line (start -2.58 -3.27) (end 7.66 -3.27) (layer "F.SilkS") (width 0.12) (tstamp a7f300e1-fc8e-4028-ae64-5761dab80d60)) - (fp_line (start -2.58 -3.27) (end -2.58 1.371) (layer "F.SilkS") (width 0.12) (tstamp b7256dee-230d-4653-bad5-866a3ef6aa44)) - (fp_line (start -2.58 1.371) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp d432040b-8383-421c-8988-1e75af44816f)) - (fp_line (start 0.69 -3.27) (end 0.69 -1.76) (layer "F.SilkS") (width 0.12) (tstamp d827eb64-5eba-4fb8-9ba8-5ab2f257178d)) - (fp_line (start -2.71 1.51) (end 7.79 1.51) (layer "F.CrtYd") (width 0.05) (tstamp 28797dd3-5c25-40ea-9029-91b4bdf67bc8)) - (fp_line (start 7.79 1.51) (end 7.79 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp 54c9786b-e027-4747-b6ba-e746fd413369)) - (fp_line (start -2.71 -3.4) (end -2.71 1.51) (layer "F.CrtYd") (width 0.05) (tstamp 6510d628-3a53-4637-9090-dc42eae8a831)) - (fp_line (start 7.79 -3.4) (end -2.71 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp dbe3ed1d-1e50-4ccd-ba3e-6e66d24024b4)) - (fp_line (start -2.46 -1.88) (end 7.54 -1.88) (layer "F.Fab") (width 0.1) (tstamp 1485f998-b07f-4385-8f35-cac19f2827b9)) - (fp_line (start 4.39 -3.15) (end 4.39 -1.88) (layer "F.Fab") (width 0.1) (tstamp 1d74d1d3-c636-43f6-9e92-a099b64d79d2)) - (fp_line (start 0.69 -3.15) (end 0.69 -1.88) (layer "F.Fab") (width 0.1) (tstamp 27960f40-5523-4d9a-9b35-a2a588774088)) - (fp_line (start -2.46 -3.15) (end -2.46 1.25) (layer "F.Fab") (width 0.1) (tstamp 58166378-73e4-4c77-abf1-b61da426c963)) - (fp_line (start 7.54 -3.15) (end -2.46 -3.15) (layer "F.Fab") (width 0.1) (tstamp 8d70567f-fa10-4f36-8aa4-04c7db84f38d)) - (fp_line (start -2.46 1.25) (end 7.54 1.25) (layer "F.Fab") (width 0.1) (tstamp c36d42bb-f6d0-4a15-a7e7-5c52ea0ca4d7)) - (fp_line (start 7.54 1.25) (end 7.54 -3.15) (layer "F.Fab") (width 0.1) (tstamp e7b90fe2-fc82-474f-adcc-72b4ac352978)) - (pad "1" thru_hole rect (at 0 0 90) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask) - (net 3 "+9V") (pinfunction "IN") (pintype "power_in") (tstamp aca88371-8623-494a-85ed-589c0d33a9d7)) - (pad "2" thru_hole oval (at 2.54 0 90) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3d3313ad-6a20-4384-bffd-05005e1b35b6)) - (pad "3" thru_hole oval (at 5.08 0 90) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask) - (net 6 "+5V") (pinfunction "OUT") (pintype "power_out") (tstamp 71a9e027-e72a-477f-a569-f96298187ca1)) - (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-220-3_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp d72ae8db-9df9-4072-b04c-8e65a1eedddc) - (at 127.953888 78.867) - (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") - (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/f7973c04-ae62-4ef8-8cdd-d5f31bb871f4") - (attr through_hole) - (fp_text reference "C13" (at 1.25 -3.75) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6349601a-3c16-49a3-9c53-44ba3301fa17) - ) - (fp_text value "1uF" (at 1.25 3.75) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp f825a345-2000-4949-8639-88e21cee3136) - ) - (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 56a9f435-f761-42ac-8950-6154f907bd07) - ) - (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 017a969a-6ebb-4686-8014-fad700760334)) - (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 04a00f3e-bcb2-4205-bbb6-60ba9f3c34b9)) - (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 06d8a115-7d5f-43b2-b721-7159bac9d07c)) - (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 08dd6da0-c217-4004-9c30-418056df4779)) - (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0a5a24cc-5f1c-4972-8a5c-e5a20bf458fe)) - (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0a9d52bd-4852-44a8-82f7-f0b2e974bf90)) - (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0cec9aea-5e9e-42b3-9348-b79e2a266dee)) - (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0df3eb9b-f85a-4f47-bc38-1c0dda1c466c)) - (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 0e0df4ca-022d-40e8-8814-98d128a379cb)) - (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 10aa9548-60fb-463f-8532-bfce956a1aad)) - (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 10eb842a-5cf0-4a31-be1b-bf336e97c7b6)) - (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 11ff99ea-53df-4a32-b849-29dd5bf6eafb)) - (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 132a293d-17e0-408d-a959-abc7411de4c4)) - (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 13fbcbdd-d9c5-49e3-8af0-04265a9a3c38)) - (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 165dbdf7-91b5-42e7-a9b5-bcd4e9cdc449)) - (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 19e56409-6545-4869-a2eb-ae344658e85d)) - (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 1cad4829-fedc-48f6-9f51-5b49d611f0da)) - (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 1fb3f6bd-66d7-4a74-a144-ae01112ff895)) - (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1fc7efb8-669f-4775-8d9e-28c3b782dfa0)) - (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1fec22bb-491f-4c89-ab1b-e19ae618bace)) - (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 23bd23ad-4624-4636-9d15-787a66ae40e1)) - (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2894b4b1-f44d-46a1-a92b-682ecd25eb21)) - (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2a00fcfc-f42f-435c-8453-fe9ac99fedcf)) - (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 2b25aa7f-6fcb-4f4e-aec0-330829383461)) - (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 2df0b480-c781-438a-ac58-d9dab2c7bcd2)) - (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 35e3e9e2-2e12-4a76-ba87-10955cd7f171)) - (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 39896e95-d5b7-4b2d-91fb-a97d46123782)) - (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 403312e0-b0fc-46d4-848e-a907f9d5b2eb)) - (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 50a71b10-b143-4c19-9603-60027a42589c)) - (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 52bb5c54-e446-4593-a3cc-ab3b0830f0e5)) - (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp 55217687-f3a4-4082-a9d8-61b1af93736b)) - (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 553e24b0-1f0f-4465-87f9-ce6a78aa2f8b)) - (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 55ff67f7-c63a-4fb5-9ed9-0276fd761b12)) - (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5b71ba90-f29a-4f4b-8d8a-49ab39b045ae)) - (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5bed6eeb-d7c4-4d04-aff2-87e56af49424)) - (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp 5c7f2f26-1872-4e61-8f38-905126451931)) - (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp 5d8df555-2da7-48bd-ac3e-b38106d615bf)) - (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 5ffffbd6-ac2b-45d2-95a7-5f1bdc330c04)) - (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 60fc1c33-e3a0-4018-a337-57fe6f4e78b2)) - (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6289f835-83b0-4a7e-8015-b3082879c109)) - (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 62d4e682-94b8-45d0-8e63-a198dc7635b2)) - (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 643458f0-d042-47ea-96e1-c53ac5c2a826)) - (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 64c0ed78-bf17-4598-a4c3-9256eea9b44a)) - (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 671bc4eb-3164-4a6a-8d69-f69cc83b19da)) - (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 6d0ab47c-31d0-41af-af87-72b310f1652a)) - (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 70407af4-f0dd-46d0-8a75-1a79701d2135)) - (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 70b1d244-a4b4-4769-bf56-5589643bbed7)) - (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 728baa22-287f-4959-807b-ac57d1d8b67b)) - (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 73e8e895-c9bc-4a22-b8ec-38860f261cff)) - (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 75e3c25f-813a-4449-9c13-a9673ad28de6)) - (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp 76036a72-ad77-4f78-b006-392ee0b7831e)) - (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 776e66a8-e591-44d1-90bc-eb44b994f088)) - (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 78c24dc1-6743-421c-b77c-2fe33b473e4c)) - (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp 78f2d61c-84e2-42b7-af84-ceb7ffe412d7)) - (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7ede8f89-b447-4299-abd6-df436d88c0a9)) - (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 814ad782-092c-4b85-ad98-9be6f5431b90)) - (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 814cfd4c-5a67-4f1d-b92b-7f5c4776b13d)) - (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8152b30a-ba67-412e-aa94-76e0f3e2b1c8)) - (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 826528c1-1a7f-4e4d-89ed-c849d5e906e4)) - (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 82f33847-5620-4941-b353-3868994451d0)) - (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 83209ab1-46ce-44f3-ae48-4ef756d67e35)) - (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 8403a6c3-b2ba-4335-9d09-ef50be1585e5)) - (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 851661a0-84a0-4c39-aff6-592f3b4edb9a)) - (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp 85831c3d-6e3b-423e-b2f9-deb00483806d)) - (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 86f5e6e5-23f3-4c8e-ab3c-6efd0a8da70a)) - (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp 8af003ce-f83a-4a00-b07a-677f23d384be)) - (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 8b82fb03-e0e1-478e-a934-1ed71b680e01)) - (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 90fb1a13-846e-46d7-9240-28f871628381)) - (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 956f2f51-2321-41b3-8535-0f5468575a9e)) - (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 9a25473d-5868-4707-b081-2deb819e5794)) - (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 9fbb6057-a8b8-4be8-a652-5708b305a328)) - (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp a037353d-d246-403a-8bcd-cdb511de2f8c)) - (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a073f6ae-4add-4d1e-a29a-b1ba04ad4c77)) - (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp a25f08da-163d-4d49-ab74-017e99d1903e)) - (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp a388f71c-b3bb-480a-9e9f-bf8561e57b68)) - (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a3f3c969-160a-45eb-b1b4-c1d309f7fcfe)) - (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp a6aea586-fa7f-410e-b933-25e3766c3410)) - (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp a9a751bd-7c65-4095-9e42-f665535dba2e)) - (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp ab4b9d47-0936-4388-8152-ce1dbdbd3839)) - (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ada58538-73ec-489f-b9cf-7cd2dd6af165)) - (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp af37e14c-b4e7-4578-ad1d-807130019fa8)) - (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp b00b3f89-5c5d-46b5-afa2-7a55e245664f)) - (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b1b8f231-b641-4333-a874-5a31efdaa582)) - (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b969f974-4fb5-44e5-8020-72502d0f034c)) - (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp babae067-688b-4a93-952a-0ac88bce6ae0)) - (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp baf18278-d51c-443e-9972-c8c9ba5d7493)) - (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp bc075142-71c4-419d-8eae-e49434bcd95f)) - (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp be41c131-91e8-4aec-927f-bb28382d5848)) - (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bf8b6280-e36d-490c-9ca8-5c227a126813)) - (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp c09fd7f1-a334-4ec4-a220-e985605306ee)) - (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp c3e8c56b-cbda-416b-abf4-be98f3850b80)) - (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c4f4a549-e6f5-496a-9563-4a841ee07124)) - (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp c76b9070-f0b2-4d10-8191-46e929f8f433)) - (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp c7780180-ed39-465b-b4f2-f403f2fe9dea)) - (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp cdd95c62-3cea-4fd5-b6f0-3b6b9ac672f2)) - (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ce110008-cdeb-427d-bfc4-dcd0e33a6945)) - (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cec45124-c224-49d5-95c6-062097c2302c)) - (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp d02d9e55-b1b0-4493-99e6-acc29a76a7ae)) - (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp d3bac476-fed5-4b43-9fe3-e9c0b3352e92)) - (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d4ec1f91-d46c-477e-8058-9652008afc58)) - (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp d6356ce7-06c9-48c7-9d63-32bfae9c62e5)) - (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp d9974485-27a7-4a5b-8212-d6d6a76806c7)) - (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp db747edd-718f-4f20-a4d6-9c83e51dfd55)) - (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp dcc63e41-7a7c-4c52-ba38-f7110bb55e13)) - (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dfd2f74c-df43-4fe0-bc3e-0b88f2e9cb22)) - (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp e00859b8-20fb-47f3-80aa-68a67bfcd82a)) - (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp e2759511-811d-43af-b323-dabdab27c032)) - (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e50c3882-1458-4578-b6a8-9d82b8a466e2)) - (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp e723e9bf-71e9-41ab-8d07-1a9d87117e4d)) - (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e7be84d2-ce88-4ba0-a02f-73ed986f4835)) - (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp eb776799-1bfe-4fa7-a1d7-db0ca285476c)) - (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp eeb9756f-b822-4940-b48f-2002898caff3)) - (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f1a716ce-ad17-4854-8fce-093eee9628c0)) - (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp f3bc82f5-5346-4619-b5e6-3e9e047408d5)) - (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f562549e-0917-481f-b622-a70420df2541)) - (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp f8309a4b-29b7-4617-afe5-c966a72fe855)) - (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f90ee054-7411-4f02-a1a4-afa7c4a5b372)) - (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp fe67815a-82ee-4289-972d-0b18c7f1725b)) - (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ff2bdbb5-a12d-435c-b35b-55ddaa72a977)) - (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp ff780e79-7d7c-406f-bd6f-2a5c3936e3e8)) - (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 411cad6c-1f1b-4cea-aedb-ed19b513cd72)) - (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 511b6a3a-1c8a-4bae-86ae-5ac68978671e)) - (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 25e8ebdf-c948-4a65-977c-ec55547f9ca9)) - (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp b71d1072-ae2d-49ad-8cc4-6755a10b9d34)) - (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 26634530-22c2-4841-9bb9-39f7818f537f)) - (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 12 "Net-(C13-Pad1)") (pintype "passive") (tstamp 00403462-7687-4c9b-ac64-8e35fee06550)) - (pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 13 "Net-(C13-Pad2)") (pintype "passive") (tstamp 2e89db2b-cd67-4cdf-87aa-3e161a187690)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp dd3aeaf3-855e-4aec-9f5d-6a2135460538) - (at 128.207888 94.869) - (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") - (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/cafe7d40-c316-4f68-8f05-8f4fa2790967") - (attr through_hole) - (fp_text reference "C12" (at 1.25 -3.75) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 23e0511b-eae7-484c-82df-ca84c12fb6a2) - ) - (fp_text value "1uF" (at 1.25 3.75) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp c0f6f2b4-0d61-4a61-828f-24fa7bbec8f7) - ) - (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 58e47519-8f90-4e14-a396-3dd7c15bfb36) - ) - (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 010e4de9-a55a-4adb-942d-8d12603f67d8)) - (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp 0433233d-4805-48da-bc2d-6604d00cd666)) - (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 07367c31-4734-4073-8ef2-3ccadddfa0ab)) - (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 08bfa616-fe36-4649-b7f6-295acbf03c7d)) - (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0ba4a0b7-79ac-4929-b13f-46ba4c492b68)) - (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 10f5d427-ea39-4c0a-ba5d-b8056dc22140)) - (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 13715874-de3e-4989-85ee-1819141fb4a8)) - (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 17178243-b447-4a3b-a56d-c9e1b393a1f6)) - (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 172121e0-32ee-465f-925d-2b20b7974859)) - (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 19b3a6c2-bd8d-439f-a012-fd2ec45ebc5e)) - (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1d83402d-d3a9-461e-9fbf-0b28758d39d6)) - (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 1e53588d-0f72-497d-b1dc-dfb2329eeb47)) - (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1e782d70-1703-4d01-bb98-8a71974c66f6)) - (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 2146507f-1ce1-4211-b5e6-818dc0e58bc9)) - (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp 23cb0754-8e03-4012-ba61-007473511e5a)) - (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 24dedb31-0009-497f-8e86-a8461ae7f007)) - (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp 25d3ff1d-c44a-4420-8e9c-050df8693eb1)) - (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp 27296ef3-be64-4716-9627-3ba40faca72c)) - (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp 2735cfd2-165c-45fc-9b04-7ec5543b2163)) - (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp 2b8815e0-1adb-443e-868b-1ec60eca55db)) - (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2c1318da-2b3a-47cf-b57d-33ddc99b17a3)) - (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 2fe907e6-293e-4d60-b30f-1178bdf03579)) - (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 32e3ca30-4eca-44ef-941e-f3f6b3516882)) - (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 339b01d2-bcfd-4eb8-a6bd-9d366aa7cf8e)) - (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 34d1acd9-1bda-444d-8cb1-fe262ebe38a8)) - (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3751f9a7-5c11-4ab1-9e70-665d6c0bc6ab)) - (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 39395e6a-5b3d-494f-b7f8-217a7fa5295e)) - (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3959c7f8-9e71-48d3-80ae-a8d6e72ce4f2)) - (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 39de02e0-3e89-4b41-9a6a-5ee3a810b119)) - (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3bd7ff13-7446-4f5d-8d15-fdb3b4b18598)) - (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3fcc46fa-be5e-49d3-b22f-059250e947d7)) - (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp 43a15abc-59db-4ba2-a4c1-a0734fa792f5)) - (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 455589a2-78b4-413e-bdfb-69dec58363ae)) - (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 46022869-9d4b-45dd-b127-51ad22283dec)) - (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 46239a4f-fbf0-4817-8bb1-16f1c09e7ae6)) - (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 46e5fd42-6a7a-49f4-91bd-c58159e7c925)) - (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 471df956-f167-4629-81cc-24a805d6fc97)) - (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 4768331f-da24-46f7-88b6-5aec3bda1ecc)) - (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp 47a2438b-9b43-4da0-99f7-4cae1aff7e0d)) - (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 47a6651e-f425-4f7a-9502-36b237842647)) - (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 48181262-263e-4a4a-b419-db2b7f6e6b6c)) - (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 4843e2e9-45f8-47c9-b136-80f3db86800c)) - (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 49cbca2f-19fa-434e-93d3-2fdc019c761e)) - (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp 4b8416cb-1438-4c09-b3a9-4ce42f13f2b0)) - (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4cbf9665-cfff-4a14-858f-2b8857902944)) - (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 4e36bee2-986b-418c-a8cc-7db565aa9699)) - (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4e8b8c7b-3494-4b98-94fc-b24608211867)) - (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 530e8dca-5483-4175-be20-1a09d044f984)) - (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 53ec9950-af2c-478c-85aa-9fa7242ff27c)) - (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 57fcf6d6-f783-4b60-b0fd-e0d466fd0d11)) - (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 5bc3beed-1b41-4143-879c-5ca9c94b1e63)) - (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 5eb5b00b-c36c-4253-b050-526a0e9e66f7)) - (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 648ac16b-9a76-4bd7-a663-a540c11def69)) - (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 64def72a-29ab-4577-9bcb-96a02171081b)) - (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 676a32e8-0ef8-4a93-b0a1-14fd387a25cc)) - (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 679f5032-9c45-45a4-93d9-7913f1c01f09)) - (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 685a9003-827a-44b8-bf95-6a475a0c46a3)) - (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6cc6c20a-58fa-4b25-b218-7eba11658274)) - (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 6daf7c59-8f30-40c0-8911-0ce85614a347)) - (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6ddd9e79-3c48-40e8-9c7a-107eb3df61a8)) - (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 6e5a6b06-eadb-4c90-b05c-f95332cc4927)) - (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 71291006-1d87-4389-ac89-5a695a014951)) - (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 759cc334-153e-4264-94c4-6fee644e2cd1)) - (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 78a592ce-e752-4fa0-8283-ad1df65707b4)) - (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 793ecb55-c0ce-45cd-b91b-6d80809b17de)) - (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 81d69f8c-4fc6-4c1a-8299-30c6d3266855)) - (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 82d82ddf-64a7-4b34-bace-d452b05a2557)) - (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp 84fb8e86-ce0d-4c0e-9104-978204bcc3f3)) - (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 862cb8fb-93fb-403c-b8d3-4a45fbbe0b8c)) - (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 87a96cf7-674a-46c6-9291-e2e7321f3b85)) - (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 8a4f3bf9-a6ce-40fb-8aee-1d9198b17f35)) - (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 8b63e8ea-5329-4f05-8328-44f729aa4703)) - (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp 8ce3b04c-1268-4d78-83db-560a4a3fb824)) - (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 8d48fd36-ff00-490c-a194-2f13ea583db2)) - (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8ecfe30a-8f20-4cbc-97ae-19d421284cbb)) - (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 8f6c400e-10e8-4ce0-8e2b-07472e4f8ab4)) - (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 90a8d5a1-407e-4fda-a680-0a52efce47a3)) - (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9262b32a-6556-49aa-9d5f-9f0281057ef3)) - (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 92fef008-1fef-4fe8-8f87-7a064f0de9f8)) - (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 93ec7e25-57a3-41dc-ac50-865b0d71b967)) - (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 95436ec4-57b4-4808-8a3c-b52fb5bf7994)) - (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 974b88df-71f0-47a1-9f43-b34250611736)) - (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 9c1f2fd1-e931-4488-8225-18aa8bc9d41b)) - (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 9c5b533c-5517-440e-a471-430f3cb1b56c)) - (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 9e3d945e-424a-41e8-89d1-75b5f5750000)) - (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a1a1378d-ce75-4723-8d1c-5463557ff051)) - (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp a330a68a-7c31-41a3-95da-04a0c2db05d5)) - (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a5f132f3-7d07-498c-8fe5-8b671199cb60)) - (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp a7281fb7-5c55-488b-90a7-b9f60292d667)) - (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a78d7856-6245-47ec-8f15-7b51ddd71f8b)) - (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp af2146fd-6ce3-4727-bd22-a58a5d6fbd97)) - (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp afa7e60c-e8e0-4935-8783-596799bf91fa)) - (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp afdbdffb-932a-451e-980b-438fec3b4892)) - (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp b80fae11-b433-481c-a559-1e5693972257)) - (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp ba3f7d63-e755-4a73-9eb9-18525a81ee3d)) - (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp ba4783a7-ef90-4579-82b9-7e033e166d6f)) - (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bcc29a41-3fb7-4b74-befd-51496a31ad69)) - (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bf7cbf67-8820-4a65-9c23-3255975275ba)) - (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c15782eb-b8fe-4ce4-a100-89d9b5a87aeb)) - (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp c1eba359-c0f8-4f27-beb2-b84e627b57b1)) - (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp cc41e02e-ea2f-4ca0-9c73-89f8e3062b8e)) - (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d1c7579d-8331-4901-8f92-56512208ce2e)) - (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d381ed3b-1bb0-4289-8279-b16bec9869c7)) - (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp d5168efd-4579-4d96-811f-f3e680491b0c)) - (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp d62861b6-578e-45a1-be0c-8618901da5ed)) - (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d9bb3577-2e21-4a67-9a5d-e9fa4a6cb3ac)) - (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp db787cb7-507f-4d45-83b2-82c5712b4b5d)) - (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp df1a4d72-9834-4e7e-8458-504893047af9)) - (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp df9a1c6b-e430-445d-a923-d082e5cab515)) - (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp e00e8262-46c6-439c-96b1-d98f2d807356)) - (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp e1cd42d9-8980-460a-9102-6279cbcff78b)) - (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp e27ecf25-54e2-428e-b2c8-e19df01bb771)) - (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e3f4f9ad-a251-41be-abd6-19fae91257d5)) - (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ec747baf-96fd-4558-9c1b-a06302a6b16a)) - (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ed3be2c7-58a1-40ab-ae96-e0975131da8a)) - (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp edf0ebe9-5596-49bc-ba4f-82da0e5557d3)) - (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f8bb7364-429e-484e-b713-351e3fefdb5f)) - (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f9219649-1dcd-4aaf-be75-57508d68c297)) - (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp fb9bab52-85b8-4f78-a50a-2eb9b7261488)) - (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp fc89a5cd-6e0d-4115-b37b-11c69693823c)) - (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3a720f35-4195-4ffe-9683-3e764ef84d22)) - (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 6fc676e9-d186-4ec5-bff7-f74efb14fc73)) - (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 15c755f2-272c-423a-91c2-225495f57ace)) - (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp fac850b9-1d25-4bb1-a26d-98999faf6741)) - (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp d76a82b2-5356-4cb8-bfe6-daa483c62320)) - (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 10 "Net-(C12-Pad1)") (pintype "passive") (tstamp 0de8f893-45c1-4339-9bcf-234a48f68377)) - (pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 11 "Net-(C12-Pad2)") (pintype "passive") (tstamp bd9d0e05-0378-4a6f-b970-0dcdb7aec031)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") - (tedit 59FED5CC) (tstamp e5844a2b-4e5a-4d85-b66c-391d093d9a55) - (at 103.632 103.124 180) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/3cfe6a7f-8a66-4cb9-9d30-79a2918ce977") - (attr through_hole) - (fp_text reference "D3" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp edca0ba6-e2e8-41d5-99f9-48fcceb34d1a) - ) - (fp_text value "LED_PULSE" (at 0 4.87) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d7eefcf1-4152-42c5-9a13-77a79af31eea) - ) - (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp eceae738-f868-4a27-865f-4f1341621a21) - ) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 04d92a38-c0ee-46a7-9bff-dfc25562ae25)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 101b9004-de6a-429a-bd02-539398ea7a21)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp a33a372f-e98e-45f9-aee1-35cfb578ac8c)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp a57f6de9-743d-4ea3-b8e2-8c4602f7a501)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp a8bb4afa-35b0-41db-8d99-8ea42d121830)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ff2e1d87-114b-4132-93a8-d79306376fee)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 088a5abf-5280-4acd-9be5-182deee4161f)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 25fbefaa-e48c-445c-af72-b50d6e1c164b)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 37344a60-9e86-4df3-9c42-0691a6fe5042)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 487c4890-ae05-4d1e-8757-f717bdd9f770)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 255f078f-82bf-4233-800e-d2ab34ddc8f2)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 3dc389b4-c3d1-4db3-bee2-3a8f0cdedb7d)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 46668c88-3f06-41f8-b568-1e6389e30b47)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 7d947cab-410d-4c5a-8435-102c12460ceb)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp c011eb92-f949-4fc0-8d41-c50363471dcc)) - (pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 16 "Net-(D3-Pad1)") (pinfunction "K") (pintype "passive") (tstamp c6ef0440-131b-401e-8963-9c8502c56fe6)) - (pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 6 "+5V") (pinfunction "A") (pintype "passive") (tstamp 9493f840-6e63-4723-aa65-1c73c699cd97)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") - (tedit 59FED5CC) (tstamp e81cfe7f-3741-4103-b0ec-57b3d131555e) - (at 196.880225 58.466) - (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x02 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/e9f20a31-f5b0-448b-bec5-24209555c87d") - (attr through_hole) - (fp_text reference "J3" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3207d9a5-d5f5-4799-8863-a0af0cc4240a) - ) - (fp_text value "AudioJack2" (at 0 4.87) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 8bea7c60-0973-4ef1-b69e-d4e63069d39f) - ) - (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7222796c-3f24-42f8-95ec-33d97cdbe82f) - ) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 1fb32039-a12b-427e-b06a-f0e9a133d6f9)) - (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 4ba23528-30cb-49aa-9f96-de0d953c9c90)) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 64ef6931-b07b-458e-9636-3a1724eb2319)) - (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 740ec1b0-e90e-4583-b668-950439b0e80c)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7e6ab295-96cd-4f42-96b2-71b4a71a7366)) - (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 874c767b-d9dd-4c7e-855e-363a6e29321f)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2ab61216-e31b-4540-b8e8-7261287f8aec)) - (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 328d1402-4958-47d2-b0f1-71018e3fb92d)) - (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 68f8d355-8d91-4cd5-8946-4ff5b53363c9)) - (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 92f206ba-0b74-4aff-a139-97255e30fd4b)) - (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 210a18c4-d1db-4cca-8cea-4f3641135455)) - (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 3f775266-cc7f-49e6-b89d-e69ba5f3895e)) - (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 68377e50-69bc-450e-988d-db77ebfcf394)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 74343e9f-cac0-4aec-a43c-c4538e48108c)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp a043b20e-4815-45ef-a4a1-91f8d5a7f42e)) - (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 1e0ba953-460b-4ddb-ba5b-e01c556e61f7)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 9d93c53b-c8ce-4a41-8871-5169db872dd3)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp ead985a3-ef86-4581-8f98-2afcbbb5ff8d) - (at 109.7788 114.387512 90) - (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") - (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/85c0451d-072e-4e38-bbeb-fb726bdf1588") - (attr through_hole) - (fp_text reference "C8" (at 1.25 -3.75 90) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp ef4ffdfe-2c9b-4d56-b112-fe42d6b6f704) - ) - (fp_text value "47uF" (at 1.25 3.75 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp cc4e4a4b-2049-496a-bbfb-200000aa2f3a) - ) - (fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 1ee65ff3-19d7-41a4-bb19-7b38fa2752a5) - ) - (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 02563a0d-24d6-4e0f-a055-dcde5b97df01)) - (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 026b6b5c-d4c9-4004-a586-e9338d888842)) - (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 033282c8-e154-4f07-8f3b-cd8d603fdf18)) - (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 03f79986-92c2-410c-8aa8-dbaeb54e0394)) - (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 0780814d-dfc8-418c-995f-655c158473ff)) - (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 08381e2a-0e80-4218-98c4-e5d5bfc45979)) - (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 08c28911-a706-4f25-96ef-010149480d52)) - (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0c998359-2cc6-49f1-9100-ef81c4143a91)) - (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 0dec29e9-afd2-4017-bdd9-65ae6438b7ca)) - (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 0f2cf18b-ac12-4241-9fcc-027b1053468c)) - (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp 0f98d23a-76eb-4113-8685-a83a8dbc2642)) - (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 123e1e04-8dc6-4bcd-82f8-b59efdd00d38)) - (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 1651762a-1deb-4b3f-80d5-eda0c401b482)) - (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 191dd244-9621-4454-95c8-324527ce4c0f)) - (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 1a363f87-d884-498a-a09f-7f25e49f9631)) - (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1c109d1a-c533-4aad-96b2-0b5fb7fefb0d)) - (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 1c8c3197-734e-4b5f-bdac-971cda40a3ba)) - (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 21c8dde1-359d-465c-8e96-fa6fda973003)) - (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 21e21c41-d131-41cf-92c2-5db0b488e77e)) - (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 22272888-11c6-4210-843d-607f7be64774)) - (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 242d256f-f045-4165-b0e3-82b141a5ce8a)) - (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 28a51196-4218-4de6-a92e-9e3e7f9c1f8a)) - (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 32313dc1-d724-4b71-8d92-9030c03462a4)) - (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 32960417-e3f5-42d9-b2c1-3dc2df6a8e15)) - (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 361ff292-b32d-400f-a3be-cbd312d327b2)) - (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 3a0466e7-fd03-4405-b64b-870c020a6b26)) - (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 3a554c3d-8932-4c1e-bdda-48a0be801bd1)) - (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 3b5d98bd-b98f-4df1-90ba-d49ad05fac8c)) - (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp 3cb08055-3d16-42f0-a872-e988a54210e2)) - (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3d402e06-e5bc-4781-9269-c331d9a2baa4)) - (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 3de6d6a7-c88c-45c0-9274-0970b22aa090)) - (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 422e26fc-3198-4dff-babd-22573544771d)) - (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp 431a3c76-57fc-4bad-9c92-05543daa6f9c)) - (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp 435d1cb8-6c38-4e34-89ee-d397bfffcc46)) - (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 458c95d1-615e-4f9d-a4c3-75317be5f658)) - (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp 46a9a86f-e671-47ae-b4bb-466a9442cde0)) - (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4b22340f-d88d-4061-a4aa-79bd8cdfc532)) - (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4b6c34fa-b1fb-45f3-a671-d72ce337273b)) - (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d27c546-69b8-415d-ad57-797194b34e8d)) - (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 4d578b45-360b-48d7-b257-a5753557fbae)) - (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d83d86f-f8f0-4779-a6c8-c3a72630fd43)) - (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 4d9ea438-1b92-4adb-988a-7e733947e301)) - (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4e8bb86e-898c-427b-ae68-eec4a7941fd0)) - (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5017e1f8-d2ae-41a3-9da4-7103c814b67e)) - (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp 50469af5-38af-466d-84ab-54717ebc9ef8)) - (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5056e871-99d9-43eb-906d-5abe79266aae)) - (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 50abc602-6284-447a-b85f-5e494009632d)) - (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 54e308dc-3c0f-4ffb-a960-81104ad37a1f)) - (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 559ef468-233e-401e-ae24-b5096d20cac6)) - (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 55fe2c1a-4c16-4a3a-8802-379f4abc68c5)) - (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 56779582-3459-4668-8043-bdee5f51472b)) - (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 613662dd-6892-426b-a8b3-531d5fccc955)) - (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 635946fe-bbde-4f6a-897b-fdc6c1984258)) - (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 648bfcac-dd23-4c73-8d07-b8d87d1d14a1)) - (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp 66e5c050-d395-4176-a588-fb2a7a1bba5d)) - (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 68436a53-e454-456a-b552-671611f04900)) - (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 69e4a35b-8501-4eb2-9e32-8229389ab3e1)) - (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6bc10602-e8bd-4e57-bc9a-718fdabe768f)) - (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 6be68c0c-8fc3-4b67-bece-9f51ba607cb0)) - (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6c35aba3-69c6-4c39-bd51-ff6e08bb6b9b)) - (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 6cce322d-2f4a-4b08-b03a-18f638ef22a2)) - (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 6ded487d-d025-41c0-9c57-ac2a338d87bb)) - (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6e959f55-7b8a-4262-bfea-6610933bd6df)) - (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 71330db2-2bfc-4f08-9b44-2ea8d294ebb4)) - (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 74ba317a-85ad-440e-b769-867e2ba05900)) - (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 7610efc5-ebf5-4bf7-815c-b7cfba1a6df4)) - (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp 76b7b6da-293f-4e07-93a8-4f76b6ac597c)) - (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 78e52f76-ace8-47a2-9210-968bc2cb0ec6)) - (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 808e221e-c76b-4029-90e2-a7dacd5f15e2)) - (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 80a04cac-d0dd-4498-a27c-19404e6a1473)) - (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 80b081b8-83aa-43e0-a1b9-7c052996a559)) - (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 80bc5799-bf17-45d1-8e20-cd63fbb9f9f5)) - (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp 85551f15-0f33-47d7-86ee-ba0e98f74214)) - (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 899a4213-b876-41f4-9597-7246b70f2d75)) - (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp 8a1b7411-5944-45c1-9d82-2ccdf25d3ed9)) - (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8b607a7a-9c94-4b50-8679-3cc6b66e9d9c)) - (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 908cb72f-8120-4f1c-9a46-eed2781e803e)) - (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 90d4598d-ee99-4042-8eef-c70c60d8f153)) - (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 92807f99-3d32-4e6d-92be-3d869869dedd)) - (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 943b3ed1-984f-4516-84cd-faf53ca7cb02)) - (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 95d0df45-ded6-4bbf-900b-3a4e9df245f9)) - (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 96cb522f-679e-44d3-9cee-7339c21a6d60)) - (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 972abb8b-a1ab-4a5f-8821-a24d90da4170)) - (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 991c7d65-28f9-476c-aacb-06c07e301cb4)) - (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a172aa28-ef1a-415f-a9dd-0a552c0843ae)) - (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a291093c-6147-4694-aa5e-b9856ed49277)) - (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a2c88d56-13ba-4194-bb2a-5a3600accd19)) - (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp aa29e7bd-50d9-4533-b61e-a33dfe8b7f6d)) - (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp acd447c9-ba63-41f5-8b38-d452a1847733)) - (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp b35b6dba-2626-42de-a4f0-3825b0c7d808)) - (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp b3ae3800-e3cc-411d-aa4c-21d201f8ed19)) - (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp baebd298-dd45-4f9f-9b28-932c5f6872b4)) - (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bb4563d4-c376-4320-a9df-b8fd23457b1c)) - (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp bb5b54b4-6ce3-4d69-9ff4-0a56a62b3fbd)) - (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp c1eba4b2-7576-4888-9ba8-24fc9a7ff28f)) - (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp c6340368-c1bf-4df1-bec4-391ec11b9819)) - (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c8ae8493-b9fc-48d8-bb8e-7bf92d5d98dd)) - (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp cbeb6c00-5592-4ffd-9144-fe984b2daa34)) - (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp cc0c57d5-922e-4a2e-9e22-081ca6c8e6cf)) - (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ce5d6968-14ae-420f-a773-292dba1233c7)) - (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ce6ac7c6-a3f9-4bc2-93bf-8c6d164b7332)) - (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp cfb666cc-14d0-49d8-8ba9-7960c37850cf)) - (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d2c22ffb-1b0a-4a95-ac20-5a2a86ea08a1)) - (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp d4e5c863-50e9-496b-a937-18a01f7f398b)) - (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp d4edcfe9-4886-4538-a467-6bf86afbc841)) - (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d97bad62-2c9d-4291-8a06-442e93969ac1)) - (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp d9889431-8968-4fdc-b4d6-c5639728a93e)) - (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp dca39685-145a-4de6-b6d9-009e401d672a)) - (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp e21f4eaa-49b3-4d80-b1be-1dd95d13b782)) - (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp e7051393-9d2e-4eb1-acc9-42b7655f9382)) - (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e9b267c3-1731-4843-8a3a-6559e85766fc)) - (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp eb3bc926-e80d-44b3-9765-a80f95b8faef)) - (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp eec76c30-ad56-4dcb-ae01-1ee467caf498)) - (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp efa21103-f138-4563-ba8d-267e0787b6d2)) - (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp f1b9662f-975e-4ee8-9f23-7fba2b7622cf)) - (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp f6b70f0b-7462-4e28-b687-24433a1ad77c)) - (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f7eefc30-dafd-4f10-b301-6afdeeb8f04a)) - (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp fbff7ac2-ab67-45e4-b8fd-4bdaa1ef5cb7)) - (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fd2f1fe1-ace2-40eb-8e5c-304684d1016d)) - (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fde8694c-2c48-49bf-b4db-23ae0bbf03d2)) - (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2aea3dcd-2a2e-4db7-9521-e916b895b97c)) - (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 19fc4ca5-1a28-4586-8cd3-df1475332678)) - (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp a3edf98d-14e9-436a-98c4-192509cefb43)) - (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp dbe8564c-66f2-4224-9b11-bad0283fbb96)) - (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp cb3f2533-60ed-463d-a7f8-e2940af2f151)) - (pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 5 "/VREF") (pintype "passive") (tstamp 98c53e39-7d00-4876-bdf3-a33a1ee11377)) - (pad "2" thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp 4af80611-f7ce-47a9-bdf4-1d8f9d818608)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (layer "F.Cu") - (tedit 5AE50EF0) (tstamp f7a6fcee-a779-48ec-acb7-3ad34620fa0d) - (at 95.297 110.109 180) - (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor") - (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/55c4d32d-7c5a-4dbb-a08c-04da9db11983") - (attr through_hole) - (fp_text reference "C2" (at 7.667 0) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 72563271-0773-4d22-8cb2-e5a877a3ed1e) - ) - (fp_text value "100nF" (at 2.5 2.5) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp aa2bb9ca-2415-43a5-90e0-9a31e5554a95) - ) - (fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 3329d70a-e63c-4d5e-931e-47cd246c0742) - ) - (fp_line (start -1.12 -1.37) (end 6.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 03dd338b-d7c5-48de-bc2b-4b9a797c1896)) - (fp_line (start 6.12 -1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 3a252aca-81f3-46e6-ba84-42f4fcac3f95)) - (fp_line (start -1.12 1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 59e9c0f7-5bd2-4ce6-be1f-9498f2546617)) - (fp_line (start -1.12 -1.37) (end -1.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp f9679bf7-9b73-4183-8072-4655075ba7d7)) - (fp_line (start 6.25 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 35b4d8c3-19b3-43a8-8cf7-e176a37a65ef)) - (fp_line (start -1.25 1.5) (end 6.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 723472f1-eeb6-42eb-a425-1ae0c77bbe76)) - (fp_line (start 6.25 1.5) (end 6.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c0933ea2-7dbb-47bb-a3e8-70303d718fd5)) - (fp_line (start -1.25 -1.5) (end -1.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d0ca41d7-a171-4280-9eff-fa0a3ea70930)) - (fp_line (start -1 1.25) (end 6 1.25) (layer "F.Fab") (width 0.1) (tstamp 28ebbdf8-9134-41b5-9db3-8f4dc2a0744d)) - (fp_line (start -1 -1.25) (end -1 1.25) (layer "F.Fab") (width 0.1) (tstamp 8ea6c513-5c00-4cee-a591-7be71c01b515)) - (fp_line (start 6 1.25) (end 6 -1.25) (layer "F.Fab") (width 0.1) (tstamp a216d1a9-9859-48c9-8c8d-105044973a07)) - (fp_line (start 6 -1.25) (end -1 -1.25) (layer "F.Fab") (width 0.1) (tstamp a7c295f2-2eb4-4199-833d-a21909fcfb1a)) - (pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 3 "+9V") (pintype "passive") (tstamp ee7292a6-bb17-44f7-9c41-a2e0d7beadd4)) - (pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp a782a237-2aff-4fa8-8289-ffb63502d305)) - (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp f948fa56-9488-4665-909f-a500ddaa100d) - (at 126.619 108.204) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/713e480c-bb1d-4324-8bc5-d294a306dffc") - (attr through_hole) - (fp_text reference "R14" (at 3.81 -1.92) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 7603b5dc-740e-4bc4-9f41-541d9a136b45) - ) - (fp_text value "4k7" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 6faadf13-f9c0-45f4-8ebb-f2169cbeeea2) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 9875154d-0870-45d5-a166-4432a0c201e6) - ) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 2bcdb2d3-b685-45cc-ad48-4680eba1719c)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 4fcd07e6-04ff-4b0c-9a26-ad572d904615)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 5f376f99-0132-43e4-a1da-67a62ee1c2a0)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 8497dc53-c3f6-4da0-a40c-42f6064ce7d3)) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp be87b9e5-d801-49be-93c3-a5563c3027f4)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp cb5c9111-b32f-4590-91a8-f81502e49500)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 0900abb3-df33-4d13-895b-590f31b1badf)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp a27ad094-0ff8-4d48-8081-6c0b4405a4b0)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp c3719376-8b15-466a-a815-4c853e33d12f)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp dbcaf9a0-30f6-40c5-8106-7af5cd389e7c)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 0f3bf25c-cd0e-4d7f-b42e-c7b3a516582e)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 4d3d23d8-5bcb-41b1-af71-a392e5e7248e)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9205052b-9151-40c8-8008-2e11b809c566)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 9c6df3ec-9e0e-4040-b211-c975e61fa631)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 9f83be1f-72c8-47c9-924d-00c6442e6660)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp acda3f31-ee4b-4027-aaa3-df8ef53feb3a)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 4 "GND") (pintype "passive") (tstamp 2c997624-2542-425f-9864-43a971a018b0)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 11 "Net-(C12-Pad2)") (pintype "passive") (tstamp 00fe095e-7d94-499d-bfbd-f019c78b765d)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (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") - (tedit 59FED5CC) (tstamp f9d0b3fa-efb7-4be3-ae92-bc47608a138f) - (at 195.230225 48.766) - (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") - (tags "Through hole pin header THT 1x03 2.54mm single row") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/4423bffb-196e-4324-b4ae-a6a7f4a011d5") - (attr through_hole) - (fp_text reference "RV1" (at 0 -2.33) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp cf34bccf-cdde-4b03-a71d-39e082be13a7) - ) - (fp_text value "10k" (at 0 7.41) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp d0ffda38-fa2f-48a6-a48b-dd7dac6a0e40) - ) - (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp dce99a8b-de3c-4122-b335-77b552b374c3) - ) - (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1ca98c90-ef83-4ef8-a81e-659cbd838484)) - (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 3dfa29f5-3d3c-4113-b7b2-1069978e3ef6)) - (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5539f204-71d3-4c7f-aadd-d0fdb16275ab)) - (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 8684d3c1-d057-487b-aaa6-dc4b86cca625)) - (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 90ed6a4c-9919-45e9-bb22-bd1b5e7df928)) - (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp c282349f-355a-48d2-9c25-82262223438d)) - (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 23a42d1d-1892-4f05-9287-bf22e0c2c039)) - (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp a9d6e118-1126-476c-be4f-98f751cb96f6)) - (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp baf9226b-4716-4578-a466-149cc036931f)) - (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f97de881-8bfb-4372-b126-60b4f681768d)) - (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 73b19b83-770c-4207-9dc3-0552baffc670)) - (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 74877c48-dbb9-48f8-9bae-f34ee171fe73)) - (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp b8025aae-ed0a-4f39-812c-281f96b48862)) - (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp e199dafd-e73b-4100-b50a-1b86c968dfdb)) - (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp e518c06b-c015-432a-9fa4-f08ea16b1039)) - (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 6 "+5V") (pinfunction "1") (pintype "passive") (tstamp 9a5111a9-cfd6-4f66-ac1e-77ac47b40b9e)) - (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 24 "Net-(RV1-Pad2)") (pinfunction "2") (pintype "passive") (tstamp ecbf1a68-fc63-4122-8ccc-c4e83fc57cff)) - (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) - (net 4 "GND") (pinfunction "3") (pintype "passive") (tstamp fff2d7fe-fca7-48ca-9685-598f037a8f61)) - (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") - (tedit 5AE5139B) (tstamp ff87bb86-8284-4dc8-a067-51349974dfc2) - (at 116.967 95.25) - (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") - (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") - (property "Sheetfile" "Trem.kicad_sch") - (property "Sheetname" "") - (path "/22c9e179-6c43-4e67-909d-1f02b37451fb") - (attr through_hole) - (fp_text reference "R7" (at 3.81 -1.92) (layer "F.SilkS") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 70310694-46ef-4188-b791-0f86e75d4e4c) - ) - (fp_text value "100k" (at 3.81 1.92) (layer "F.Fab") - (effects (font (size 1 1) (thickness 0.15))) - (tstamp 91610a08-4c8b-4d15-a63e-66e2bea5ae3a) - ) - (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") - (effects (font (size 0.72 0.72) (thickness 0.108))) - (tstamp 184465e6-9325-4fda-bf34-4f51b333a762) - ) - (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 543fa3ff-950c-4833-87ec-47639ac5ece2)) - (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 6c9ee98f-e31e-4bc1-ae6a-fd9ec348b0fc)) - (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 7ae831ba-e270-42ef-9170-be9607b8008c)) - (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 92883531-3c3c-4b1e-a56c-16b01c1be7fb)) - (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp cf729a2f-0f6d-44e9-a029-10c6c683a196)) - (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp ea2c22bf-1cbc-4f3a-9eb4-5e877698dfbd)) - (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 276b86cd-ee7c-4aee-94b2-b14a9032bf48)) - (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 33fca84b-9ef7-4eee-a20e-af274c8e6956)) - (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp eeb89802-edb3-44c6-8bb1-ba9032402146)) - (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp f8acd4e9-0d28-4ebb-8b39-0098e9a90f67)) - (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 33a8092a-58f0-4025-a7ea-9fe6f8f1f488)) - (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 5e3f5cc0-6b11-487c-a7d5-d19ea7a86c0d)) - (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 84236167-2bac-4a5c-9847-16e4259b8366)) - (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp c1617f4d-76cc-49b5-a99a-84641184fce7)) - (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp c35a082e-733e-4427-b04c-9802e85913c2)) - (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp f7984a9f-1661-4393-9db7-6cf77e757224)) - (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 7 "Net-(C7-Pad1)") (pintype "passive") (tstamp 313f4f58-587e-4fd3-bad3-279cac4b5079)) - (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) - (net 19 "Net-(R7-Pad2)") (pintype "passive") (tstamp 7856aa6f-305b-4975-8880-2063afe64d35)) - (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" - (offset (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (segment (start 107.315 88.581112) (end 107.379888 88.646) (width 0.25) (layer "F.Cu") (net 1) (tstamp b93bb512-ca88-4cb8-8934-250c8ad759e9)) - (segment (start 107.315 84.328) (end 107.315 88.581112) (width 0.25) (layer "F.Cu") (net 1) (tstamp f53a6bc4-f079-44ff-8333-e3b5ae202c06)) - (segment (start 109.347 89.178888) (end 109.879888 88.646) (width 0.25) (layer "F.Cu") (net 2) (tstamp 881959d8-6561-4c7d-8718-871f78b29977)) - (segment (start 109.347 92.456) (end 109.347 89.178888) (width 0.25) (layer "F.Cu") (net 2) (tstamp e9d8d2f3-fe52-40b2-b17a-5c119c246e85)) - (segment (start 92.772112 114.554) (end 92.772112 112.633888) (width 1.5) (layer "F.Cu") (net 3) (tstamp 06c20961-edb1-4233-9544-d5a7a21eb537)) - (segment (start 135.513511 109.088489) (end 133.858 110.744) (width 0.75) (layer "F.Cu") (net 3) (tstamp 1111744a-0467-4093-9ece-d59e3afb3352)) - (segment (start 129.574716 81.798) (end 135.513511 87.736795) (width 0.75) (layer "F.Cu") (net 3) (tstamp 1b4f7cb2-8413-4736-8426-5dedf7a282e9)) - (segment (start 86.289 83.312) (end 87.4776 84.5006) (width 0.75) (layer "F.Cu") (net 3) (tstamp 254f2e26-4167-4092-90e9-6b458443b76a)) - (segment (start 95.416623 117.198511) (end 97.533089 117.198511) (width 0.75) (layer "F.Cu") (net 3) (tstamp 2a1795ff-b8aa-4d53-9c02-7fa49e438f32)) - (segment (start 87.4776 104.3432) (end 90.0684 106.934) (width 0.75) (layer "F.Cu") (net 3) (tstamp 3999e884-6a63-4a1e-9228-6b3352815aed)) - (segment (start 126.1364 110.744) (end 124.587 110.744) (width 0.75) (layer "F.Cu") (net 3) (tstamp 42514db4-1d55-4ac1-9e92-724ce6f2b554)) - (segment (start 97.533089 117.198511) (end 125.156342 117.198511) (width 0.75) (layer "F.Cu") (net 3) (tstamp 47dbf7bc-faeb-461c-bc37-619431c02f5d)) - (segment (start 92.772112 112.633888) (end 95.297 110.109) (width 1.5) (layer "F.Cu") (net 3) (tstamp 51d7ff9d-4e31-4141-adff-f47fbee78e4b)) - (segment (start 95.377 106.934) (end 97.9424 106.934) (width 1.5) (layer "F.Cu") (net 3) (tstamp 56d0d0ff-6ee5-4d2b-9135-68997b41ed03)) - (segment (start 133.858 110.744) (end 126.1364 110.744) (width 0.75) (layer "F.Cu") (net 3) (tstamp 7a221ab8-fcf1-4612-985d-aa70207bf9f6)) - (segment (start 95.377 106.934) (end 95.377 110.029) (width 1.5) (layer "F.Cu") (net 3) (tstamp 84de8326-d5a5-477b-94ad-325ff7447959)) - (segment (start 90.0684 106.934) (end 95.377 106.934) (width 0.75) (layer "F.Cu") (net 3) (tstamp 9a01c218-52a3-4688-87bb-0b9134358e96)) - (segment (start 126.1364 116.218453) (end 126.1364 110.744) (width 0.75) (layer "F.Cu") (net 3) (tstamp 9f8da3f8-3f41-4939-a889-df96a4ebddb4)) - (segment (start 97.5868 117.1448) (end 97.533089 117.198511) (width 0.25) (layer "F.Cu") (net 3) (tstamp a8827b9f-9984-4963-a1a2-a4a5bfeefba1)) - (segment (start 87.4776 84.5006) (end 87.4776 104.3432) (width 0.75) (layer "F.Cu") (net 3) (tstamp a8e6c8d8-1788-4899-9925-fc0a187d065d)) - (segment (start 95.377 110.029) (end 95.297 110.109) (width 1.5) (layer "F.Cu") (net 3) (tstamp bf46ff89-10d0-4b24-8c15-01e38e403b52)) - (segment (start 125.156342 117.198511) (end 126.1364 116.218453) (width 0.75) (layer "F.Cu") (net 3) (tstamp c07db8a9-866c-48b2-8c64-89a2abe138da)) - (segment (start 124.597 81.798) (end 129.574716 81.798) (width 0.75) (layer "F.Cu") (net 3) (tstamp ea3caa94-d3b5-4e34-86be-40f111606a9c)) - (segment (start 97.5868 115.4684) (end 97.5868 117.1448) (width 0.25) (layer "F.Cu") (net 3) (tstamp ee0d6cf1-fd85-41fc-a0a5-0895b3a66025)) - (segment (start 135.513511 87.736795) (end 135.513511 109.088489) (width 0.75) (layer "F.Cu") (net 3) (tstamp ef60633a-681f-4293-82c1-4395d2ddac2a)) - (segment (start 92.772112 114.554) (end 95.416623 117.198511) (width 0.75) (layer "F.Cu") (net 3) (tstamp fc416211-f442-4d29-9371-ed18a9e10d1a)) - (segment (start 102.88 81.33) (end 102.88 81.783) (width 0.25) (layer "F.Cu") (net 4) (tstamp 6303bc37-0abf-4fef-8d68-2d323171c79e)) - (segment (start 90.907112 80.772) (end 90.932 80.796888) (width 0.25) (layer "F.Cu") (net 4) (tstamp 7b35ae46-c879-4e99-b7f0-0221a3d14bc4)) - (segment (start 100.29 78.74) (end 102.88 81.33) (width 0.25) (layer "F.Cu") (net 4) (tstamp 7d734108-857d-4b2d-94d7-c830d7624e4a)) - (segment (start 95.758 103.124) (end 95.758 102.124) (width 0.25) (layer "F.Cu") (net 4) (tstamp 9f04b3ff-48e8-49a4-b619-dd01ab2a0c5f)) - (segment (start 95.758 102.124) (end 92.186 98.552) (width 0.25) (layer "F.Cu") (net 4) (tstamp d31f2aa8-ec4f-40f0-b832-4fce2cce0c7c)) - (segment (start 90.297 114.529112) (end 90.272112 114.554) (width 1.5) (layer "F.Cu") (net 4) (tstamp d393d9af-7323-446d-85c0-68b48aedac54)) - (segment (start 92.186 98.552) (end 90.852 98.552) (width 0.25) (layer "F.Cu") (net 4) (tstamp efad44ce-d720-4861-9808-09c5d80c2f8b)) - (segment (start 90.852 80.876888) (end 90.932 80.796888) (width 0.25) (layer "F.Cu") (net 4) (tstamp fb03b7bb-2297-4d63-a835-8827b2d106f1)) - (segment (start 116.967 89.428) (end 116.977 89.418) (width 0.25) (layer "F.Cu") (net 4) (tstamp fe638edd-a545-4d1b-a717-c94012ada7cc)) - (segment (start 90.297 110.109) (end 90.297 99.107) (width 0.75) (layer "B.Cu") (net 4) (tstamp 04ba7a5f-bcfe-44e0-851c-3133349b998e)) - (segment (start 97.457511 104.823511) (end 95.758 103.124) (width 1.5) (layer "B.Cu") (net 4) (tstamp 0f282f3b-939d-42d5-b488-120aa4fdbe97)) - (segment (start 97.9424 111.753822) (end 97.837711 111.858511) (width 1.5) (layer "B.Cu") (net 4) (tstamp 216acc87-ba98-4850-a8b7-3eaa48bc2a8a)) - (segment (start 115.823488 111.887512) (end 109.7788 111.887512) (width 0.75) (layer "B.Cu") (net 4) (tstamp 289bd755-66ca-4c2b-a2cd-8c051af0e967)) - (segment (start 97.9424 109.0676) (end 98.932349 109.0676) (width 1.5) (layer "B.Cu") (net 4) (tstamp 2ba384fa-dfef-429f-99df-81705c428b87)) - (segment (start 97.9424 109.0676) (end 97.9424 111.753822) (width 1.5) (layer "B.Cu") (net 4) (tstamp 3097f3b7-4336-4c01-8c55-dcbca130d511)) - (segment (start 92.046511 111.858511) (end 97.837711 111.858511) (width 1.5) (layer "B.Cu") (net 4) (tstamp 3f8a6faf-1295-4c52-a908-c21e4c3f82a4)) - (segment (start 90.852 94.996) (end 90.852 80.876888) (width 0.75) (layer "B.Cu") (net 4) (tstamp 41588e54-0440-4bba-9125-5af285729e0e)) - (segment (start 118.341511 109.369489) (end 125.453511 109.369489) (width 0.25) (layer "B.Cu") (net 4) (tstamp 4548087a-95cd-41c0-83af-70193f0b265a)) - (segment (start 86.313888 80.796888) (end 86.289 80.772) (width 0.75) (layer "B.Cu") (net 4) (tstamp 45943c90-d07a-4ce9-be5d-fac72068e549)) - (segment (start 118.341511 109.369489) (end 118.341511 90.782511) (width 0.75) (layer "B.Cu") (net 4) (tstamp 4859750a-891d-4344-8a11-a479a7019931)) - (segment (start 90.297 99.107) (end 90.852 98.552) (width 0.75) (layer "B.Cu") (net 4) (tstamp 497dcaa6-0c98-45f8-ba00-95a2fd315224)) - (segment (start 97.837711 111.858511) (end 100.220689 111.858511) (width 1.5) (layer "B.Cu") (net 4) (tstamp 4e55292b-2dab-4f03-af3b-6968000be37f)) - (segment (start 90.272112 114.554) (end 90.272112 110.133888) (width 1.5) (layer "B.Cu") (net 4) (tstamp 5b1e76bd-529e-4734-b929-3f1a34b317e6)) - (segment (start 94.113399 77.615489) (end 90.932 80.796888) (width 0.25) (layer "B.Cu") (net 4) (tstamp 5bb39c8a-bf36-4aa9-988a-95eb79177c59)) - (segment (start 98.164673 104.823511) (end 97.457511 104.823511) (width 1.5) (layer "B.Cu") (net 4) (tstamp 64c60c9a-a827-4481-9281-f7af6a9e3abf)) - (segment (start 118.341511 90.782511) (end 116.977 89.418) (width 0.75) (layer "B.Cu") (net 4) (tstamp 6a459b9a-b358-480a-83cb-7a1590dbaee3)) - (segment (start 102.017911 113.560311) (end 100.2684 111.8108) (width 1.5) (layer "B.Cu") (net 4) (tstamp 6a6fc7db-efb3-4098-91da-2cf64d841eb0)) - (segment (start 99.165489 77.615489) (end 94.113399 77.615489) (width 0.25) (layer "B.Cu") (net 4) (tstamp 77e59548-89b8-4f55-bd7a-1926c768b552)) - (segment (start 98.932349 109.0676) (end 99.591911 108.408038) (width 1.5) (layer "B.Cu") (net 4) (tstamp 92ed9f63-5bb2-4042-9811-9e919686e16b)) - (segment (start 116.967 110.744) (end 115.823488 111.887512) (width 0.75) (layer "B.Cu") (net 4) (tstamp 954a42da-0ed8-477c-b720-61e8a87245cb)) - (segment (start 90.852 98.552) (end 90.852 94.996) (width 0.75) (layer "B.Cu") (net 4) (tstamp 98ece263-ebeb-4ca3-85d9-ae02debdafec)) - (segment (start 100.29 78.74) (end 99.165489 77.615489) (width 0.25) (layer "B.Cu") (net 4) (tstamp a459176a-9213-4378-b6f8-70a8f8b817f7)) - (segment (start 90.852 80.876888) (end 90.932 80.796888) (width 0.75) (layer "B.Cu") (net 4) (tstamp ad8cd3cb-5209-4f07-8fc7-0713ad986b5e)) - (segment (start 90.932 80.796888) (end 86.313888 80.796888) (width 0.75) (layer "B.Cu") (net 4) (tstamp b17bd9ab-8b8c-4261-b98f-cab9b5f4f559)) - (segment (start 100.220689 111.858511) (end 100.2684 111.8108) (width 1.5) (layer "B.Cu") (net 4) (tstamp b1b8ac5f-104a-4878-b57a-135e061159e5)) - (segment (start 116.967 89.428) (end 116.977 89.418) (width 0.25) (layer "B.Cu") (net 4) (tstamp b6225f8f-29a7-4020-94af-4947fc2f5073)) - (segment (start 90.297 110.109) (end 92.046511 111.858511) (width 1.5) (layer "B.Cu") (net 4) (tstamp be8f0de6-aef5-44a7-933a-555df32901c0)) - (segment (start 125.453511 109.369489) (end 126.619 108.204) (width 0.25) (layer "B.Cu") (net 4) (tstamp c27bdcd4-e970-418f-ab59-5b01991cf5af)) - (segment (start 116.967 92.456) (end 116.967 89.428) (width 0.25) (layer "B.Cu") (net 4) (tstamp cf2979b7-a635-4a96-b431-cbc86a80670c)) - (segment (start 116.967 110.744) (end 118.341511 109.369489) (width 0.75) (layer "B.Cu") (net 4) (tstamp d161836e-828e-45cc-a044-eff868f36333)) - (segment (start 105.993072 113.560311) (end 102.017911 113.560311) (width 1.5) (layer "B.Cu") (net 4) (tstamp d23bb093-eeba-4d59-a2c3-491b3c03f5df)) - (segment (start 109.7788 111.887512) (end 107.665871 111.887512) (width 1.5) (layer "B.Cu") (net 4) (tstamp d3a13958-7d50-42bb-919a-65fc56ac8075)) - (segment (start 107.665871 111.887512) (end 105.993072 113.560311) (width 1.5) (layer "B.Cu") (net 4) (tstamp d4ae8f62-dbbc-43dc-8a9c-c1139bf2b007)) - (segment (start 99.591911 106.250749) (end 98.164673 104.823511) (width 1.5) (layer "B.Cu") (net 4) (tstamp d86fe92e-5dcd-4062-b20f-862124bfec2e)) - (segment (start 90.297 110.109) (end 90.272112 110.133888) (width 0.75) (layer "B.Cu") (net 4) (tstamp e93299e6-f608-427b-bd49-de6a01e5629c)) - (segment (start 99.591911 108.408038) (end 99.591911 106.250749) (width 1.5) (layer "B.Cu") (net 4) (tstamp eccd5c04-9486-46ff-a964-be55e62f8362)) - (segment (start 105.5624 109.0676) (end 105.5624 111.5168) (width 1.5) (layer "F.Cu") (net 5) (tstamp 03956d8d-78aa-44d9-b1ee-8d46e243ee1b)) - (segment (start 118.10837 86.878) (end 129.6416 98.41123) (width 0.25) (layer "F.Cu") (net 5) (tstamp 232e8801-adb1-4510-88b5-979b871d9ac5)) - (segment (start 109.7788 114.387512) (end 107.845112 114.387512) (width 1.5) (layer "F.Cu") (net 5) (tstamp 413c9a39-1cfe-4d55-a405-faf25da26889)) - (segment (start 134.239 105.664) (end 134.239 103.124) (width 0.25) (layer "F.Cu") (net 5) (tstamp 4bd4a458-d5d4-4625-8ba1-1bce0aea73d6)) - (segment (start 117.432789 114.408511) (end 122.3772 109.4641) (width 0.25) (layer "F.Cu") (net 5) (tstamp 5572436f-d8e5-454a-b4fb-b7ab18085293)) - (segment (start 122.3772 106.172) (end 124.206 104.3432) (width 0.25) (layer "F.Cu") (net 5) (tstamp 851229ae-e1c2-4cac-8b4b-7f8f43cee7bd)) - (segment (start 107.845112 114.387512) (end 105.2684 111.8108) (width 1.5) (layer "F.Cu") (net 5) (tstamp 8f88fc75-49b6-40cc-84d0-e8f526e7e83c)) - (segment (start 116.977 86.878) (end 118.10837 86.878) (width 0.25) (layer "F.Cu") (net 5) (tstamp 9915628f-115e-446a-915b-9862b08bc5da)) - (segment (start 122.3772 109.4641) (end 122.3772 106.172) (width 0.25) (layer "F.Cu") (net 5) (tstamp a908c23d-93f7-488b-8e24-0f3a2db8d2d4)) - (segment (start 129.6416 98.41123) (end 129.6416 104.3432) (width 0.25) (layer "F.Cu") (net 5) (tstamp ae1d4553-1fc6-49e7-9616-921be66476de)) - (segment (start 109.799799 114.408511) (end 117.432789 114.408511) (width 0.25) (layer "F.Cu") (net 5) (tstamp c456002f-aeb9-4803-bfe7-c4672a8e9c0b)) - (segment (start 105.5624 111.5168) (end 105.2684 111.8108) (width 1.5) (layer "F.Cu") (net 5) (tstamp ce821a12-7a6e-48a2-b2c3-0a8772386e7c)) - (segment (start 109.7788 114.387512) (end 109.799799 114.408511) (width 0.25) (layer "F.Cu") (net 5) (tstamp d2cffed5-1222-429f-a5fe-9cf581f752fe)) - (segment (start 124.206 104.3432) (end 129.6416 104.3432) (width 0.25) (layer "F.Cu") (net 5) (tstamp dbd05a4a-6f63-4c94-9f90-a818caef0c17)) - (segment (start 105.5624 109.0676) (end 105.5624 106.934) (width 1.5) (layer "F.Cu") (net 5) (tstamp f1b90cba-d675-4f86-be26-1ab31f5313f0)) - (via (at 129.6416 104.3432) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp e4697557-e145-4187-90cf-39f9c131e595)) - (segment (start 133.0198 104.3432) (end 134.239 103.124) (width 0.25) (layer "B.Cu") (net 5) (tstamp 1682532c-8c3d-4c3e-b6a9-4e7cf639369a)) - (segment (start 129.6416 104.3432) (end 133.0198 104.3432) (width 0.25) (layer "B.Cu") (net 5) (tstamp f4432edc-d467-45b6-87b6-5122f0e7c7d5)) - (segment (start 103.632 100.584) (end 94.853718 100.584) (width 0.25) (layer "F.Cu") (net 6) (tstamp 16a4f718-7e21-48b8-b357-8ae11b9b22c3)) - (segment (start 84.898 79.623) (end 86.289 78.232) (width 0.25) (layer "F.Cu") (net 6) (tstamp 33c37f17-d91c-4310-b63e-63189c023bcf)) - (segment (start 95.29 78.74) (end 95.29 81.753) (width 0.25) (layer "F.Cu") (net 6) (tstamp 36b37c46-8a8d-49b6-b080-5b1e3ebc9c1c)) - (segment (start 92.193489 97.923771) (end 92.193489 79.558377) (width 0.25) (layer "F.Cu") (net 6) (tstamp 387c2074-4ea3-4936-87d4-4887502dbd52)) - (segment (start 85.598 89.408) (end 84.898 88.708) (width 0.25) (layer "F.Cu") (net 6) (tstamp 3b197539-e243-4640-a4c2-52b5a941112d)) - (segment (start 90.867112 78.232) (end 90.932 78.296888) (width 0.25) (layer "F.Cu") (net 6) (tstamp 457d739c-70e9-44a5-a3fe-6f8eb63f20d5)) - (segment (start 94.853718 100.584) (end 92.193489 97.923771) (width 0.25) (layer "F.Cu") (net 6) (tstamp 46ac5df4-b883-4601-8fe2-642e465745b2)) - (segment (start 84.898 88.708) (end 84.898 79.623) (width 0.25) (layer "F.Cu") (net 6) (tstamp 48a33c72-ea39-48e9-aedf-859570132c93)) - (segment (start 86.289 78.232) (end 90.867112 78.232) (width 0.25) (layer "F.Cu") (net 6) (tstamp 4e51dc68-ee17-48dc-a5b5-c78d1ddc74b5)) - (segment (start 95.29 81.753) (end 95.26 81.783) (width 0.25) (layer "F.Cu") (net 6) (tstamp b2a9f409-eaca-4fbd-83ce-7334f0a6ed51)) - (segment (start 90.932 78.296888) (end 94.846888 78.296888) (width 0.25) (layer "F.Cu") (net 6) (tstamp dd03ef82-8997-4808-96f3-764c5c45f2af)) - (segment (start 92.193489 79.558377) (end 90.932 78.296888) (width 0.25) (layer "F.Cu") (net 6) (tstamp e3a1cf71-8569-4bfc-b4fa-b77dddb9aa66)) - (segment (start 94.846888 78.296888) (end 95.29 78.74) (width 0.25) (layer "F.Cu") (net 6) (tstamp f56a39c2-c551-43b6-a327-af470b3459c0)) - (segment (start 111.570888 96.266) (end 112.695399 97.390511) (width 0.25) (layer "F.Cu") (net 7) (tstamp 1d762aa0-c74f-4c21-aaae-7d4406561f42)) - (segment (start 114.826489 97.390511) (end 116.967 95.25) (width 0.25) (layer "F.Cu") (net 7) (tstamp c970f9c4-5a37-4dab-9ae3-c999d86a67d7)) - (segment (start 112.695399 97.390511) (end 114.826489 97.390511) (width 0.25) (layer "F.Cu") (net 7) (tstamp d223e811-8711-4e58-a6d5-8f5ce4294091)) - (segment (start 116.802189 85.462511) (end 117.483489 85.462511) (width 0.25) (layer "F.Cu") (net 8) (tstamp 0d902e17-6326-4499-94a4-8c04d7a8f45e)) - (segment (start 118.101511 82.922511) (end 116.977 81.798) (width 0.25) (layer "F.Cu") (net 8) (tstamp 112ef3b2-3e05-432c-b562-4c679c8dd7d3)) - (segment (start 114.935 81.788) (end 116.967 81.788) (width 0.25) (layer "F.Cu") (net 8) (tstamp 1522ec1b-c498-4f12-9be0-b749b8f014c9)) - (segment (start 114.070888 88.193812) (end 116.802189 85.462511) (width 0.25) (layer "F.Cu") (net 8) (tstamp 2e5331ca-6e74-4892-a1dd-eeeceb837ea3)) - (segment (start 116.967 81.788) (end 116.977 81.798) (width 0.25) (layer "F.Cu") (net 8) (tstamp 9f95ad0c-e1ad-4a1e-ac2e-ab257fe80636)) - (segment (start 118.101511 84.844489) (end 118.101511 82.922511) (width 0.25) (layer "F.Cu") (net 8) (tstamp cdc654d9-e712-40f1-9d6e-d4b77e386eae)) - (segment (start 117.483489 85.462511) (end 118.101511 84.844489) (width 0.25) (layer "F.Cu") (net 8) (tstamp d5cf697f-883b-4b37-b2dd-ac9fa10019a2)) - (segment (start 114.070888 96.266) (end 114.070888 88.193812) (width 0.25) (layer "F.Cu") (net 8) (tstamp f7728990-54b4-4a4d-9f2a-d6ace98bef52)) - (segment (start 85.598 94.742) (end 85.852 94.996) (width 0.25) (layer "F.Cu") (net 9) (tstamp 1592dbac-6ad3-482f-aadf-0fef3591f96e)) - (segment (start 85.852 98.552) (end 85.852 94.996) (width 0.25) (layer "F.Cu") (net 9) (tstamp 6603a5b7-9eb1-4222-8f0a-1f8baf8c36e5)) - (segment (start 85.598 91.948) (end 85.598 94.742) (width 0.25) (layer "F.Cu") (net 9) (tstamp 86f53075-d2f4-4dd3-8899-912101187387)) - (segment (start 85.598 98.806) (end 85.852 98.552) (width 0.25) (layer "F.Cu") (net 9) (tstamp a3ba17ff-7f4e-4eb9-96bb-b4fa74db731f)) - (segment (start 85.598 101.092) (end 85.598 98.806) (width 0.25) (layer "F.Cu") (net 9) (tstamp ecd4762b-b099-47b8-8db9-332b93538490)) - (segment (start 124.597 91.258112) (end 128.207888 94.869) (width 0.25) (layer "F.Cu") (net 10) (tstamp 71df2a4c-d38a-4168-86d8-db70e1c671e7)) - (segment (start 124.597 89.418) (end 124.597 91.258112) (width 0.25) (layer "F.Cu") (net 10) (tstamp 852c96a8-b345-4cc7-b019-80519e6cae59)) - (segment (start 124.1397 107.061) (end 131.572 107.061) (width 0.25) (layer "F.Cu") (net 11) (tstamp 012299a4-84aa-49df-8f12-ca0e62127500)) - (segment (start 130.707888 94.869) (end 130.707888 106.831888) (width 0.25) (layer "F.Cu") (net 11) (tstamp 39f922ca-8899-4a75-b597-276a3ab7a43f)) - (segment (start 133.096 107.061) (end 134.239 108.204) (width 0.25) (layer "F.Cu") (net 11) (tstamp 59a23512-0a2f-47cf-a925-8318a5183b17)) - (segment (start 123.012969 114.249969) (end 123.012969 108.187731) (width 0.25) (layer "F.Cu") (net 11) (tstamp 6488f31c-aced-4e3e-b37f-a051d57228a8)) - (segment (start 131.572 107.061) (end 133.096 107.061) (width 0.25) (layer "F.Cu") (net 11) (tstamp 71d8a410-ef92-47e4-a172-aa96e13fda1a)) - (segment (start 130.937 107.061) (end 131.572 107.061) (width 0.25) (layer "F.Cu") (net 11) (tstamp 94b74b6d-38d7-4e39-8382-b1d742965b21)) - (segment (start 130.707888 106.831888) (end 130.937 107.061) (width 0.25) (layer "F.Cu") (net 11) (tstamp b774d230-5da9-4025-8a0e-17d409a1fb91)) - (segment (start 123.012969 108.187731) (end 124.1397 107.061) (width 0.25) (layer "F.Cu") (net 11) (tstamp dbd68565-174c-4268-880c-87251b0b2039)) - (segment (start 124.587 115.824) (end 123.012969 114.249969) (width 0.25) (layer "F.Cu") (net 11) (tstamp fd98d21d-0c43-4ae1-ac16-bdef35830f4b)) - (segment (start 130.453888 78.867) (end 128.650488 80.6704) (width 0.25) (layer "F.Cu") (net 13) (tstamp 451f0685-eeae-4b97-a842-306d9bbc9585)) - (segment (start 123.444 83.185) (end 124.597 84.338) (width 0.25) (layer "F.Cu") (net 13) (tstamp 467af1a2-c131-4e44-8305-2290c6ce6dfa)) - (segment (start 128.650488 80.6704) (end 124.1343 80.6704) (width 0.25) (layer "F.Cu") (net 13) (tstamp 769b7f67-6db8-49cf-b41a-444fd3e7a566)) - (segment (start 123.444 81.3607) (end 123.444 83.185) (width 0.25) (layer "F.Cu") (net 13) (tstamp d8e00eac-9b1d-410c-864b-26c7d30d571a)) - (segment (start 124.597 84.338) (end 130.284 84.338) (width 0.25) (layer "F.Cu") (net 13) (tstamp e4298263-57fd-4b02-9d65-2dbdc528e881)) - (segment (start 124.1343 80.6704) (end 123.444 81.3607) (width 0.25) (layer "F.Cu") (net 13) (tstamp ef97ddb6-e661-4a52-af80-7aa81090a835)) - (segment (start 130.284 84.338) (end 130.284 79.036888) (width 0.25) (layer "B.Cu") (net 13) (tstamp 61c538ce-5749-4db0-a518-f60c5cd03cbc)) - (segment (start 130.284 79.036888) (end 130.453888 78.867) (width 0.25) (layer "B.Cu") (net 13) (tstamp c591474d-238d-4c84-a612-ee496f305afe)) - (segment (start 100.838 103.124) (end 103.632 103.124) (width 0.25) (layer "F.Cu") (net 16) (tstamp b41c5c2c-d8d1-4d98-adcc-5999ddd12bc1)) - (segment (start 97.223489 104.198511) (end 98.298 103.124) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8826a1d1-df88-45a1-aa5f-e1afae085e95)) - (segment (start 93.218 103.124) (end 94.292511 104.198511) (width 0.25) (layer "F.Cu") (net 17) (tstamp e79478d3-49ee-4e88-bbe3-ed777a529425)) - (segment (start 94.292511 104.198511) (end 97.223489 104.198511) (width 0.25) (layer "F.Cu") (net 17) (tstamp efaf8832-b4f5-42b0-8afe-8b5026ade3e5)) - (segment (start 114.935 84.328) (end 116.967 84.328) (width 0.25) (layer "F.Cu") (net 18) (tstamp 29325b91-9017-4cc0-9d68-1cef4a4e6e72)) - (segment (start 107.315 81.788) (end 109.855 84.328) (width 0.25) (layer "F.Cu") (net 18) (tstamp 5bede952-d039-4d2c-9b6d-ad9bcdc39551)) - (segment (start 116.967 84.328) (end 116.977 84.338) (width 0.25) (layer "F.Cu") (net 18) (tstamp 6c154a66-f972-4c37-991c-53e3a22229c8)) - (segment (start 109.855 84.328) (end 114.935 84.328) (width 0.25) (layer "F.Cu") (net 18) (tstamp ec6b94cb-6aba-4266-9138-c9d20213493c)) - (segment (start 124.587 103.124) (end 126.619 103.124) (width 0.25) (layer "F.Cu") (net 19) (tstamp 77a0d5bc-b05d-4ed0-9f16-c3d93331e4ca)) - (segment (start 126.619 97.282) (end 126.619 103.124) (width 0.25) (layer "F.Cu") (net 19) (tstamp ddae10f1-2878-4f29-9d5d-dbc078d18bd7)) - (segment (start 124.587 95.25) (end 126.619 97.282) (width 0.25) (layer "F.Cu") (net 19) (tstamp ed94568e-beb6-48e0-812e-7cd1e759bcf9)) - (segment (start 124.587 105.664) (end 126.619 105.664) (width 0.25) (layer "F.Cu") (net 20) (tstamp 205d6271-71ef-4ddd-a9ee-3a5582f5bc1c)) - (segment (start 92.964 89.408) (end 95.255 89.408) (width 0.25) (layer "F.Cu") (net 21) (tstamp 0d690537-13a6-4078-9583-dd796e6052a9)) - (segment (start 95.255 89.408) (end 95.26 89.403) (width 0.25) (layer "F.Cu") (net 21) (tstamp 17cf038e-0287-4174-817b-19cf96cc597e)) - (segment (start 123.462489 99.168511) (end 124.587 98.044) (width 0.25) (layer "F.Cu") (net 22) (tstamp 16d9130d-25f9-44d3-8ec8-47a8e24100de)) - (segment (start 93.218 101.092) (end 92.193489 102.116511) (width 0.25) (layer "F.Cu") (net 22) (tstamp 65a346c4-9540-4542-a138-ec5f3eafcdb3)) - (segment (start 116.731489 99.168511) (end 123.462489 99.168511) (width 0.25) (layer "F.Cu") (net 22) (tstamp 7c18c260-9637-4ad7-bbc4-995460e93f9c)) - (segment (start 92.193489 103.623489) (end 93.218031 104.648031) (width 0.25) (layer "F.Cu") (net 22) (tstamp 86fe76c3-35c3-4421-8b8f-9172e918d139)) - (segment (start 92.193489 102.116511) (end 92.193489 103.623489) (width 0.25) (layer "F.Cu") (net 22) (tstamp a17264e1-ea7a-4dbf-adf1-ebecb539d242)) - (segment (start 93.218031 104.648031) (end 111.251969 104.648031) (width 0.25) (layer "F.Cu") (net 22) (tstamp c1426dfe-f6a7-4167-969f-5c05642cf905)) - (segment (start 111.251969 104.648031) (end 116.731489 99.168511) (width 0.25) (layer "F.Cu") (net 22) (tstamp c15cebbb-a6ee-4e47-89b1-ddec340a2783)) - (segment (start 102.88 97.023) (end 101.755489 98.147511) (width 0.25) (layer "F.Cu") (net 23) (tstamp 32740eb5-90d6-41e7-a9da-5571154a6a60)) - (segment (start 93.218 96.647) (end 93.218 91.948) (width 0.25) (layer "F.Cu") (net 23) (tstamp 3c82d5c1-5193-4038-80f6-21e6a90f1c83)) - (segment (start 94.718511 98.147511) (end 93.218 96.647) (width 0.25) (layer "F.Cu") (net 23) (tstamp 52fad88d-d5bd-466d-ba7f-1e9db609ab3c)) - (segment (start 101.755489 98.147511) (end 94.718511 98.147511) (width 0.25) (layer "F.Cu") (net 23) (tstamp e85b00bd-d0fe-4f4b-866e-9e87721affe1)) - (segment (start 124.597 86.878) (end 130.284 86.878) (width 0.25) (layer "F.Cu") (net 28) (tstamp e89614cf-46dc-4e8c-9f9d-884c1f045f07)) - (segment (start 124.587 113.284) (end 123.462489 112.159489) (width 0.25) (layer "F.Cu") (net 32) (tstamp 0cb1f993-0946-450e-8e81-b0e2e0b7bd53)) - (segment (start 123.462489 109.328511) (end 124.587 108.204) (width 0.25) (layer "F.Cu") (net 32) (tstamp 1be3ab3b-222e-4094-b7f5-e00534383aa2)) - (segment (start 123.462489 112.159489) (end 123.462489 109.328511) (width 0.25) (layer "F.Cu") (net 32) (tstamp fb509c51-ac90-459b-90e3-307a4653271e)) - (segment (start 95.255 91.948) (end 95.26 91.943) (width 0.25) (layer "F.Cu") (net 37) (tstamp d2c81f6d-240e-49f1-bff3-1ec7514ff47e)) - -) +(kicad_pcb (version 20211014) (generator pcbnew) + + (general + (thickness 1.6) + ) + + (paper "A4") + (layers + (0 "F.Cu" signal) + (31 "B.Cu" signal) + (32 "B.Adhes" user "B.Adhesive") + (33 "F.Adhes" user "F.Adhesive") + (34 "B.Paste" user) + (35 "F.Paste" user) + (36 "B.SilkS" user "B.Silkscreen") + (37 "F.SilkS" user "F.Silkscreen") + (38 "B.Mask" user) + (39 "F.Mask" user) + (40 "Dwgs.User" user "User.Drawings") + (41 "Cmts.User" user "User.Comments") + (42 "Eco1.User" user "User.Eco1") + (43 "Eco2.User" user "User.Eco2") + (44 "Edge.Cuts" user) + (45 "Margin" user) + (46 "B.CrtYd" user "B.Courtyard") + (47 "F.CrtYd" user "F.Courtyard") + (48 "B.Fab" user) + (49 "F.Fab" user) + (50 "User.1" user) + (51 "User.2" user) + (52 "User.3" user) + (53 "User.4" user) + (54 "User.5" user) + (55 "User.6" user) + (56 "User.7" user) + (57 "User.8" user) + (58 "User.9" user) + ) + + (setup + (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.51) (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")) + (layer "B.SilkS" (type "Bottom Silk Screen")) + (copper_finish "None") + (dielectric_constraints no) + ) + (pad_to_mask_clearance 0) + (pcbplotparams + (layerselection 0x00010fc_ffffffff) + (disableapertmacros false) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (svguseinch false) + (svgprecision 6) + (excludeedgelayer true) + (plotframeref false) + (viasonmask false) + (mode 1) + (useauxorigin false) + (hpglpennumber 1) + (hpglpenspeed 20) + (hpglpendiameter 15.000000) + (dxfpolygonmode true) + (dxfimperialunits true) + (dxfusepcbnewfont true) + (psnegative false) + (psa4output false) + (plotreference true) + (plotvalue true) + (plotinvisibletext false) + (sketchpadsonfab false) + (subtractmaskfromsilk false) + (outputformat 1) + (mirror false) + (drillshape 1) + (scaleselection 1) + (outputdirectory "") + ) + ) + + (net 0 "") + (net 1 "Net-(C1-Pad1)") + (net 2 "Net-(C1-Pad2)") + (net 3 "+9V") + (net 4 "GND") + (net 5 "/VREF") + (net 6 "+5V") + (net 7 "Net-(C7-Pad1)") + (net 8 "Net-(C7-Pad2)") + (net 9 "Net-(C10-Pad2)") + (net 10 "Net-(C12-Pad1)") + (net 11 "Net-(C12-Pad2)") + (net 12 "Net-(C13-Pad1)") + (net 13 "Net-(C13-Pad2)") + (net 14 "Net-(D1-Pad2)") + (net 15 "Net-(D2-Pad2)") + (net 16 "Net-(D3-Pad1)") + (net 17 "Net-(Q1-Pad2)") + (net 18 "Net-(R2-Pad2)") + (net 19 "Net-(R7-Pad2)") + (net 20 "Net-(R9-Pad1)") + (net 21 "Net-(R10-Pad2)") + (net 22 "Net-(R11-Pad2)") + (net 23 "Net-(R12-Pad1)") + (net 24 "Net-(RV1-Pad2)") + (net 25 "Net-(RV2-Pad2)") + (net 26 "Net-(RV3-Pad2)") + (net 27 "Net-(J3-PadT)") + (net 28 "Net-(RV5-Pad2)") + (net 29 "Net-(SW1-Pad1)") + (net 30 "Net-(SW1-Pad3)") + (net 31 "Net-(SW2-Pad1)") + (net 32 "Net-(U2-Pad10)") + (net 33 "unconnected-(U2-Pad15)") + (net 34 "unconnected-(U4-Pad2)") + (net 35 "unconnected-(U4-Pad7)") + (net 36 "unconnected-(U4-Pad9)") + (net 37 "unconnected-(U4-Pad5)") + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp 05e9f488-d98f-4bff-b9c6-8c3f864a7672) + (at 97.9424 106.934) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/497a3aba-0f0c-436e-9543-aa7c20ad968e") + (attr through_hole) + (fp_text reference "R3" (at 9.6012 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1e588fe6-d889-44aa-bb74-5390d59bc688) + ) + (fp_text value "2k2" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 46dfd281-b32d-4a8e-8251-cef41db42a05) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 7828a4c7-1e0c-445a-8b2c-29c737fd4e7c) + ) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 5e18305f-c817-4549-85df-76301fe01d43)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 96ab58bf-6f92-44a4-af94-c8756a24f7ac)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 9c4b8242-0057-4c25-b195-329d5841b9a6)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp a5a8e6c8-c0ef-4f44-8841-8e7470fdce39)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp b435b6f4-0734-4692-adf6-282cdbc143c4)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp c23a315c-211f-49e4-8579-3520f0884fed)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 1c395c0b-7483-4900-a09e-688c50191497)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 552235b3-e219-4494-b879-9d1de2047a11)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 6245b202-aefb-4253-9f55-72b5ba9ec7fa)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp d37c2d0d-38d9-4ffa-83ad-33dc93bee583)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 3ef92aab-8dcd-46e4-8209-d6aacda55bd8)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 578b562f-58b8-4603-9d3d-3ca112d9a75c)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 65ffc231-5375-40ec-96d9-856045f82a80)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp ac87653a-92e6-4432-a75c-9d2285312777)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp c620c6da-2c21-476e-b0ff-eb4d6668663f)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp d5fe484c-dbba-4c77-ba9d-efb9feb9385f)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 3 "+9V") (pintype "passive") (tstamp 347b0674-10cc-4190-9cb5-b9daf925c427)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 5 "/VREF") (pintype "passive") (tstamp 952ed099-351f-4274-8aae-7fad298dc875)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp 17882404-3ab2-43ac-8dc5-ca2599064037) + (at 93.218 91.948 180) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/59e71b82-fd2c-4d50-9aac-2d0df67acc80") + (attr through_hole) + (fp_text reference "R12" (at 10.16 0 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7682a6a3-368f-41bf-b3ff-ce35ba2e6143) + ) + (fp_text value "20k" (at 3.81 1.92 180) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 9effcb07-2ded-4e39-9f9b-c65e4d99891a) + ) + (fp_text user "${REFERENCE}" (at 3.81 0 180) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp fa235e93-bae4-466a-a281-8ac2950a3146) + ) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 16566028-0ed0-4935-b8f1-979d8f067090)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 2869b137-776b-48ff-85c2-ac73eb96b330)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 50dc37d9-d46d-43cb-95c3-e91bcbb358c7)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 9b31db2d-0554-42ba-a301-82e4143b9675)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 9e179446-9863-4cc8-a0d5-4367254f4d3e)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp e3494af7-0737-4355-8bee-b96a79e0cb27)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 1c2c5682-b984-4c0c-861d-095434eeba36)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2056259b-15a4-4625-a432-a755e17fe30b)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2e8a5ee4-a4b9-42d5-936b-657a3099bbdb)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 42b72fe8-9e97-479d-ac14-742fcc9ad3b5)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 06c519e1-cd38-4f62-a7e3-fdd27aeb04d2)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 1e77c073-f58a-4ed3-884f-bc73f367a983)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 7d186cb8-c672-43f2-bf81-b7780ae7d261)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp ce906568-9c18-484d-aeb6-d223d2ccb6b4)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp d0f5cfe2-5c6d-44c9-978b-141d5e1283da)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp f3e4aaa5-7c09-4a02-991b-6f0eb687594d)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 23 "Net-(R12-Pad1)") (pintype "passive") (tstamp c5159d68-a04d-42cf-bce9-ad5c6735c58d)) + (pad "2" thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 9 "Net-(C10-Pad2)") (pintype "passive") (tstamp 66271930-4c4c-4f57-9325-c41acfe8c68f)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp 1ea1a0e9-52bb-4959-820c-e56c5c992d58) + (at 107.379888 88.646) + (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/b1bf0a93-94b7-4ad4-93ae-35edc64006ad") + (attr through_hole) + (fp_text reference "C1" (at -2.350888 -2.286) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 04b59968-7a05-4d69-bb25-b546d73a2e96) + ) + (fp_text value "1uF" (at 1.25 3.75) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3e593406-16aa-4be8-a83c-5de6b749b0d3) + ) + (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 86e0952e-8053-4907-bc9d-2d40531ecc9f) + ) + (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0108fbbd-bb2f-4247-9e7c-8ed949a2604f)) + (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 017b17bc-e4b2-45e0-abc8-b321a15699c3)) + (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 02339e38-867e-41a4-b7bd-204e487cb47a)) + (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp 044e60fb-da14-4b3f-b1e9-7c8812529026)) + (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 04bddc04-2393-4d89-9124-143043c5026d)) + (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 05f66506-ba12-4236-906d-a52285d17a0b)) + (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 09a4a3c7-4cfe-4d09-9dae-c7b8cb635e58)) + (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 0bfaa013-c5fc-4356-ad40-c80414bb0177)) + (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0fd8f2c4-697a-421a-99d2-4cff4356d6d4)) + (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 1090b6c4-98b1-4d1a-8b63-643e298f09a7)) + (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 11ce4cb9-82d7-429c-8d84-58a54849ed3a)) + (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 123d1d55-670a-447f-8e1b-e9aad6940438)) + (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 13369876-4d9d-4d99-85a1-06718375ca94)) + (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp 14e39f89-6c6e-4964-a30e-d63a2bff82dd)) + (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 1b1011cc-0ab2-4dbc-8461-a3cfdb4e9a2a)) + (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 1faa5b2c-b56b-4d51-9747-807bb12a6e52)) + (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 214a1006-416b-43fb-b057-a97bf828db3d)) + (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 22b393f0-b870-4935-a183-9419a51280a3)) + (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 249d46ef-861c-41d3-a19e-4af23226d63f)) + (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp 25f87129-bc6c-473b-9eb2-a9428503eb19)) + (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 262fecdf-f8c2-4b86-8165-e1d32e400927)) + (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2630bbbc-cfb4-4378-b9d3-ad73d8b6db54)) + (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 2e59bc65-8cde-46ee-b3c8-45611cfae18f)) + (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 302c5429-499b-44bb-974c-ac10a1de8214)) + (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 3046e951-947d-4208-83ed-e245302e14fb)) + (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 30e5a02a-58fc-435b-836c-f9ffcf16afad)) + (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 36317816-6847-4f5f-bf2a-106b23966aab)) + (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3772d108-fd10-4b9a-bd21-4380cb52f7d7)) + (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 39ae9528-0f4b-4e05-a22d-13f4a188c9aa)) + (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 3c523127-6787-4e07-ad09-6a6d476b6d02)) + (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 3e253691-4cfd-49d2-be81-9a6a0404a9e8)) + (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 3f9fa5f2-bcb9-40e7-88b5-9643866c2c09)) + (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3fdea1ab-4495-4a61-973b-a10754bf026b)) + (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 427d1fb2-164c-4d12-a129-b5289c6b2339)) + (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 42cb703a-4f0c-4f12-9c9c-b09dc7dd13c3)) + (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 43cc49f1-c2a6-4956-8598-cbb4dda38751)) + (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 46698ca7-3e6b-478d-b6fb-21a0f8138d38)) + (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 47508f5d-4e81-473f-b7e3-c7bf09eececf)) + (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp 4aafa072-c887-47ef-bbac-055d04952018)) + (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 4cf6a2b5-b92b-4c3b-bd97-cada6c7c2633)) + (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d72d9d3-3aa2-4416-9651-8bee7474657e)) + (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4f857da1-2902-49b0-bc96-8bf9ef66c2f7)) + (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 4fc4ca97-8f81-47d7-a6ff-8672915793cd)) + (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 502d44c0-099f-462e-b753-1196d4c7dd3b)) + (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 51fdd3a6-ec2b-41c9-890d-0c9d2352bc7e)) + (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 52d8fe88-fbf9-4a37-9e3b-924471e03a0f)) + (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 57ed4cec-0e2e-4af2-9e8a-60cd43d71f10)) + (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 5a5308a8-de53-472a-bf50-f08a2913ff9c)) + (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp 5c980244-6080-42b6-8ab6-bb8e9af847bb)) + (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 601ffb90-e272-4a6c-8729-358580445233)) + (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 638a2fc4-8c8f-458a-a963-e5b0e7edae40)) + (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp 67078537-ba9e-45e8-acd4-c803024508fd)) + (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp 6728366e-7c51-410e-9ce3-c2a2b2378084)) + (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 6761093e-23cb-4dd3-ac6c-ebbbd02826e8)) + (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6ce4df8c-410e-449c-a330-5a7c1ea7384e)) + (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 6e5be734-6700-47c1-b188-06ba6c057572)) + (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp 77a5ba23-133d-4f05-9523-53a4211f31f6)) + (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7bcbad32-174d-4336-8bd0-87727c28e580)) + (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp 8462c63a-b75a-4320-ac23-895e304b9488)) + (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp 8677718c-2fe4-4a7d-ae47-d63481eddf49)) + (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 87c348cc-f455-4292-a1ae-809282c9d698)) + (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 887ddace-23b0-43fe-b223-583fc8397a3f)) + (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 89098874-0f3d-4ffe-bd57-3c70416a59de)) + (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 89d1f92b-0c73-4af1-8349-329540534088)) + (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8a799bb5-2789-4fff-8150-f0a3dd931134)) + (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8cbd42d9-0716-4f47-a883-7ec472eef810)) + (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8db920dc-6c09-47ff-88bd-022f65597813)) + (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 9347c119-fc25-4285-add7-e9ff18ed009d)) + (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9433f0b1-17b1-417c-85f5-5d84dc4c34c8)) + (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 94ccd7e2-b9ad-4060-94d4-ec9d4ed47469)) + (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 95d7c7a6-7b10-4883-9eba-b02bf3f981c2)) + (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 9baf89b2-a5dd-41f1-814c-8c49ca50efff)) + (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9be3bdb5-ec21-47f3-bb0c-4f615e790339)) + (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp 9ccf7bf5-a564-47e1-a7eb-2f21d9509e0e)) + (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9e5fb38d-144e-4235-8681-b1bc7b0e4423)) + (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp a0287907-b531-4992-b122-e5d9aa2c7bf3)) + (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp a9691652-7919-4908-a85d-a3a1a4f67bf6)) + (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp aa0ea344-2276-4d54-88d3-0bd703e0a0a3)) + (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ab3a36a6-ea02-49dc-9d26-83f79070d4e5)) + (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp abf708e6-b733-496f-ada4-786f9e609fa1)) + (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp ae77e898-f313-4d8e-89d3-0f14e9f27538)) + (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp aeb62c25-5933-436f-9556-92ff61c6f96f)) + (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp af794a52-23e9-426a-93de-965014499fe5)) + (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp b117f5ac-d6c7-44b3-b127-ba4ebb130538)) + (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp b70c2097-3810-4749-8465-7d88634dcbd6)) + (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp b772bd7f-ed29-4f47-ac94-3e4d642b2843)) + (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b7f22e7d-45b7-4c19-b41d-bac1830c8807)) + (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp b8000dc8-0017-4011-82a9-a9b0b8d5a520)) + (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp b8947bff-7a95-4ea6-8d84-392193a0cabe)) + (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp ba557d87-1065-438c-953b-fef53fcba0f7)) + (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bc0f280f-8f7c-4b4c-a721-081d0c9b8ab3)) + (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp bfba1d27-ea4b-47cc-906c-ae0a122ca6d4)) + (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c4241693-558d-448b-8ac1-1207cb310561)) + (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c6b33335-cee7-4b8b-a461-bd4e24096417)) + (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp c90cebbd-c19b-4f56-8411-f757bbd27c34)) + (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp ca815669-7de9-4dbd-9580-e40033f02e04)) + (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp caad1ff8-2025-4ce6-a27e-a3c396d1eaa7)) + (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp cadac883-be79-4b51-a172-23d53cd51750)) + (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cb59ce31-1c5e-4dbc-b5ae-762c5ee500c3)) + (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp cb9c5b32-36ba-4c04-808d-2f3df25c85ac)) + (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp cc8f95e0-5c20-4437-a825-2fef84ac5cc7)) + (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp ce6d68c5-ce13-4e0b-96aa-729a039c9b3a)) + (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cf3bbb53-7114-4d94-b5e1-dbe976014894)) + (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cf5860c5-f7df-43c8-b812-8451d838ced6)) + (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d14f40de-6d81-48a2-a810-f96fb92ab1e6)) + (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d834d174-7533-432e-a863-658d7e4f208a)) + (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dbea2a22-5c4a-4139-ab42-46ca2eaf9e9e)) + (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dc0f35f8-d513-4a16-8c45-2c416762db8c)) + (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp dd031c2f-2c2f-4b40-9de6-8718642c041d)) + (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp df59c25b-f7ba-488c-89cb-f7894f627453)) + (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e2b27fb8-853c-4b7f-b30d-7f8909fd54ae)) + (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp e605659d-f34a-4826-87e9-fce8f3898d88)) + (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp e79271d9-9c14-4fc0-9f20-7a482daa8dd8)) + (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp ec0f99e4-854f-4426-afe3-acf5026cc500)) + (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp ef2aca1b-b9aa-405f-b78b-0d0f9fbd0322)) + (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f16375ec-716c-4232-9de7-b320a5adc528)) + (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp f7f3599d-4ec8-4b4d-94d9-5b91f01299f2)) + (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f88450c3-531d-4c27-81a0-d78e9b6dfc18)) + (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp fd9568df-cf05-4d00-a2e1-7970d39961bf)) + (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fed7e07c-d418-42b6-9a15-ee8744e02a35)) + (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 080fbdc3-8355-4fbc-95f2-09b8a9739433)) + (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp b22101ec-c6a7-401e-a8ad-e051c70fb5f6)) + (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 5d4375d5-cdae-48a3-9322-4ef5b423d210)) + (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 829e6606-09e3-4c7f-83b0-fb553f9a91ea)) + (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp ef3ff475-b81a-4cd9-ac87-fa93345c8cc1)) + (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp 57bc708a-9b7d-4a9c-8e89-a188ff304059)) + (pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 2 "Net-(C1-Pad2)") (pintype "passive") (tstamp 7da992e9-9141-4eaa-aa2e-90ce0028041d)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp 23f55bc5-218f-4c81-bcc4-297aa64fa0b2) + (at 105.5624 109.0676 180) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/02d1e0a8-bf20-455f-b69e-845f84f2ba41") + (attr through_hole) + (fp_text reference "R4" (at -1.9812 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8c6168dc-23b5-49cb-ba74-fc4d02afb57a) + ) + (fp_text value "2k2" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7b32ff3b-6778-4f80-a92c-715cc331dee2) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp d0c37a91-8441-4208-b973-e75623f190a4) + ) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 56988e68-95f0-4ef9-a284-b1aa16da465d)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 5ecb95b2-cab6-47ec-a875-e71f86b750b4)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp b2465dfc-774b-407c-bce9-430813613e8c)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp cf76f21c-9b76-4b39-91ed-d3e953e5027f)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp e0755fce-e262-4042-96c2-db73e6c3e272)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp f5470066-90fd-4711-87c0-1de3eeca1e0f)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 1a4d19ef-b470-4372-baaa-89ac51aac223)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 375db310-c8c4-401b-9f40-3c5f76ed4a26)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 3801d23a-e9db-4562-9db1-ad2dd42ad23e)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 696bdbdc-0b54-41ec-b7b3-03eb2f12773a)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 44f39aa8-4b40-43cc-93d5-c566bbad4255)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 67017086-1b5b-4a48-bb8d-eadf83eaa186)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 8979c795-c6a1-4c77-be90-664daa6d86c3)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp b24da2f9-6f79-452f-a823-baee29c0c3a7)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp c5ee13d1-46e8-48aa-94a3-10d478e81291)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp ecc5b51d-af5c-48bf-9891-1beb425c8c7e)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 5 "/VREF") (pintype "passive") (tstamp 5833bc76-722f-41da-b652-c79d4754c3ec)) + (pad "2" thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp 1f6ffd5d-6389-42e1-8084-d445c2297a0d)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp 27c4978a-2231-4bb7-bb35-e9301b587623) + (at 90.852 94.996 180) + (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*3.5mm^2, Capacitor") + (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 3.5mm Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/457f42c3-5be7-4c16-bf1a-e05a256ab5fe") + (attr through_hole) + (fp_text reference "C9" (at 7.286 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a48ae0b2-c976-4889-ab47-b1519ca8e568) + ) + (fp_text value "330nF" (at 2.5 3) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6d00df8e-5b3a-4ae1-be17-f24d170bc6a2) + ) + (fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f06d2129-236e-4b65-8683-cddb5521a2e0) + ) + (fp_line (start -1.12 1.87) (end 6.12 1.87) (layer "F.SilkS") (width 0.12) (tstamp 0ed5f7d3-71ac-42f5-b4a1-b173cdbffd29)) + (fp_line (start 6.12 -1.87) (end 6.12 1.87) (layer "F.SilkS") (width 0.12) (tstamp 42e096e2-1418-44d7-9e44-2cc0d8beee1c)) + (fp_line (start -1.12 -1.87) (end 6.12 -1.87) (layer "F.SilkS") (width 0.12) (tstamp 778a352c-253d-4551-bbab-44ffd34e2c17)) + (fp_line (start -1.12 -1.87) (end -1.12 1.87) (layer "F.SilkS") (width 0.12) (tstamp d4b90baf-67fb-4d09-a065-be123eec1112)) + (fp_line (start -1.25 -2) (end -1.25 2) (layer "F.CrtYd") (width 0.05) (tstamp 0dea6b87-ad04-46f3-8e63-d09f40b9efa3)) + (fp_line (start -1.25 2) (end 6.25 2) (layer "F.CrtYd") (width 0.05) (tstamp 637b567c-842e-4a94-9cd0-68f62d1f396a)) + (fp_line (start 6.25 2) (end 6.25 -2) (layer "F.CrtYd") (width 0.05) (tstamp a369cc91-bd9d-40b8-a16a-9f1d93adc625)) + (fp_line (start 6.25 -2) (end -1.25 -2) (layer "F.CrtYd") (width 0.05) (tstamp e367f95d-8621-4b5e-9075-f2ddeda37800)) + (fp_line (start 6 1.75) (end 6 -1.75) (layer "F.Fab") (width 0.1) (tstamp 16aea064-869a-4a44-8bd7-98ede3ea13a2)) + (fp_line (start 6 -1.75) (end -1 -1.75) (layer "F.Fab") (width 0.1) (tstamp 216b0b06-0160-43cf-96ec-cec8901b87ec)) + (fp_line (start -1 -1.75) (end -1 1.75) (layer "F.Fab") (width 0.1) (tstamp 74d0ff4c-195e-4424-8ac5-fdc868decf45)) + (fp_line (start -1 1.75) (end 6 1.75) (layer "F.Fab") (width 0.1) (tstamp b01117c2-5a90-46d0-87b6-5f6b6c8c8bff)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp aca6779d-cfd0-45d0-b17d-60dd6bd00311)) + (pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 9 "Net-(C10-Pad2)") (pintype "passive") (tstamp e6c36d63-a6d1-4f8d-a470-576dac6030cb)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W3.5mm_P5.00mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal" (layer "F.Cu") + (tedit 5AE50CD5) (tstamp 2a0f7467-556a-4ff6-88de-7b6a760ae3c5) + (at 95.377 106.934 180) + (descr "Diode, DO-41_SOD81 series, Axial, Horizontal, pin pitch=10.16mm, , length*diameter=5.2*2.7mm^2, , http://www.diodes.com/_files/packages/DO-41%20(Plastic).pdf") + (tags "Diode DO-41_SOD81 series Axial Horizontal pin pitch 10.16mm length 5.2mm diameter 2.7mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/c9a434a4-34aa-480b-bad1-26f71e1cc532") + (attr through_hole) + (fp_text reference "D1" (at 12.446 -0.127) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 27f73be5-5b6d-4dcd-9c2b-08178b3c0f10) + ) + (fp_text value "1N5817" (at 5.08 2.47) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bd3347d9-9a3d-4c9a-bd6e-b32c11e47f96) + ) + (fp_text user "K" (at 0 -2.1) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5e807c14-eb72-4699-ac5c-0e22b3b90689) + ) + (fp_text user "${REFERENCE}" (at 5.47 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8b56e564-caf5-4ced-b984-0a39ed1eebf8) + ) + (fp_text user "K" (at 0 -2.1) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e830d834-92c8-4727-8cea-5594534f3119) + ) + (fp_line (start 7.8 -1.47) (end 2.36 -1.47) (layer "F.SilkS") (width 0.12) (tstamp 156d07b6-f60e-459b-b98a-29b8c699efdc)) + (fp_line (start 1.34 0) (end 2.36 0) (layer "F.SilkS") (width 0.12) (tstamp 3532cddf-acb9-4e3a-8232-d14fb89c468b)) + (fp_line (start 3.38 -1.47) (end 3.38 1.47) (layer "F.SilkS") (width 0.12) (tstamp 59f58cc4-3f08-4913-804c-7831fc56d6da)) + (fp_line (start 2.36 1.47) (end 7.8 1.47) (layer "F.SilkS") (width 0.12) (tstamp 75ca23a8-e4ab-47d3-ac44-aa53a82245e4)) + (fp_line (start 2.36 -1.47) (end 2.36 1.47) (layer "F.SilkS") (width 0.12) (tstamp a03c10d8-cc69-4b0a-a144-2d35498b043f)) + (fp_line (start 3.26 -1.47) (end 3.26 1.47) (layer "F.SilkS") (width 0.12) (tstamp cf89459e-fd92-4e68-9587-f252ddcdb6a3)) + (fp_line (start 8.82 0) (end 7.8 0) (layer "F.SilkS") (width 0.12) (tstamp e7ff49ea-668b-4288-a4de-6d15f9f54984)) + (fp_line (start 3.14 -1.47) (end 3.14 1.47) (layer "F.SilkS") (width 0.12) (tstamp e9319d85-1dac-4df9-b9dc-43725fc1b1c0)) + (fp_line (start 7.8 1.47) (end 7.8 -1.47) (layer "F.SilkS") (width 0.12) (tstamp ef02d8bd-f5ed-4c60-b031-608f2959fcf9)) + (fp_line (start 11.51 -1.6) (end -1.35 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp 87b3ed9b-f3c1-4821-b4d5-c674b4d2515e)) + (fp_line (start -1.35 1.6) (end 11.51 1.6) (layer "F.CrtYd") (width 0.05) (tstamp e29749e1-57cf-4247-9200-dd1d45f68485)) + (fp_line (start -1.35 -1.6) (end -1.35 1.6) (layer "F.CrtYd") (width 0.05) (tstamp e8427703-debe-4022-822d-163d4fc97756)) + (fp_line (start 11.51 1.6) (end 11.51 -1.6) (layer "F.CrtYd") (width 0.05) (tstamp fbf5d368-584d-48e0-99db-d16acdb2f83d)) + (fp_line (start 0 0) (end 2.48 0) (layer "F.Fab") (width 0.1) (tstamp 0a8b24fc-e6a0-48d2-b167-0aa01fd481d4)) + (fp_line (start 7.68 -1.35) (end 2.48 -1.35) (layer "F.Fab") (width 0.1) (tstamp 3943dade-79a5-4aa1-bcfa-29a8489f1e33)) + (fp_line (start 7.68 1.35) (end 7.68 -1.35) (layer "F.Fab") (width 0.1) (tstamp 436f812d-909c-4e3f-a49b-dcc6cd7e3bb4)) + (fp_line (start 3.36 -1.35) (end 3.36 1.35) (layer "F.Fab") (width 0.1) (tstamp 43797be8-9d42-485f-bc6b-0544d45927b2)) + (fp_line (start 2.48 1.35) (end 7.68 1.35) (layer "F.Fab") (width 0.1) (tstamp 43b01be6-aa77-480b-b7b5-19275cecd379)) + (fp_line (start 3.16 -1.35) (end 3.16 1.35) (layer "F.Fab") (width 0.1) (tstamp 66072000-fd82-40b3-9a6d-05a242a146f5)) + (fp_line (start 10.16 0) (end 7.68 0) (layer "F.Fab") (width 0.1) (tstamp 7ce9a615-ce61-4432-a3e5-0f41fb589826)) + (fp_line (start 2.48 -1.35) (end 2.48 1.35) (layer "F.Fab") (width 0.1) (tstamp 7db778c0-e0fa-45c4-a549-e062652f4eaa)) + (fp_line (start 3.26 -1.35) (end 3.26 1.35) (layer "F.Fab") (width 0.1) (tstamp cb3bfe3f-4ce5-447c-b68a-f0b9a64fb392)) + (pad "1" thru_hole rect (at 0 0 180) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask) + (net 3 "+9V") (pinfunction "K") (pintype "passive") (tstamp 3f9a155b-ff8a-4cf2-8a3d-a6361ab24ec5)) + (pad "2" thru_hole oval (at 10.16 0 180) (size 2.2 2.2) (drill 1.1) (layers *.Cu *.Mask) + (net 14 "Net-(D1-Pad2)") (pinfunction "A") (pintype "passive") (tstamp 276b13d7-0a57-419c-8da2-e837b16f8ff4)) + (model "${KICAD6_3DMODEL_DIR}/Diode_THT.3dshapes/D_DO-41_SOD81_P10.16mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp 2c67684a-7a8c-4bc8-a2f8-710700e3d61b) + (at 204.530225 48.766) + (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x02 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/8b2457b3-127c-4286-b842-66ceb413ea89") + (attr through_hole) + (fp_text reference "J2" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ffd83d0d-24f0-4f90-903b-296191ef921e) + ) + (fp_text value "AudioJack2" (at 0 4.87) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 16d74262-8635-4a64-9f97-17014fb25562) + ) + (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d621368f-b1d3-448f-9ccc-2003d43ab1d4) + ) + (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 29d26dd1-1c9b-4097-8348-63ab0c86a559)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 3949f8f3-4972-460a-90a0-6906b5d7ca76)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 46605a33-9342-4627-adea-08a0c3dd1775)) + (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 9be4dac3-29bf-435c-b143-f925eed2bc97)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d3424baf-1ad2-4b36-adba-984ee9d2885e)) + (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp e3eefb2c-367e-42ae-ab55-468b9c80597b)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1b0ee7de-247a-45f1-b936-8568c530e001)) + (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 78111d72-c00e-4afe-82c8-d2e093258dae)) + (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 8e93778c-9f35-46dc-94f2-2dd1aa508a24)) + (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp d5b027fb-197d-4d7c-8fed-24b58086c9a1)) + (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 1f5d8d4c-52db-4d4d-99bb-fd209dbbc195)) + (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 540f78d0-e8b9-460c-9142-467f76fb56b5)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 64d7714a-7974-44e3-aea4-f93dec72bbab)) + (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp c33ef308-25bc-47b2-ac28-0110605d9c15)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp fe01aa44-ff8d-4666-88bd-3cf15ec20e21)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 4151bc46-891f-4121-8be3-22bb8c87ce45)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 19e24aa0-439f-4991-a889-ce0db8e4a854)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Potentiometer_THT:Potentiometer_Bourns_3299W_Vertical" (layer "F.Cu") + (tedit 5A3D4994) (tstamp 2db2a178-64e5-43fc-91c6-f6bb623ee10e) + (at 130.284 89.418 -90) + (descr "Potentiometer, vertical, Bourns 3299W, https://www.bourns.com/pdfs/3299.pdf") + (tags "Potentiometer vertical Bourns 3299W") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/f8e949a0-9d2b-4ae1-bcf4-fa22f53685b8") + (attr through_hole) + (fp_text reference "RV5" (at -2.54 -3.16 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 73884063-53ac-4945-9da0-0154e86cb156) + ) + (fp_text value "20k" (at -2.54 5.44 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 318e2232-f227-48be-bc7e-28bc039cbe1a) + ) + (fp_text user "${REFERENCE}" (at -3.175 1.14 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6734d642-1332-41b0-95a1-bc63619b364b) + ) + (fp_line (start -7.425 -2.03) (end 2.345 -2.03) (layer "F.SilkS") (width 0.12) (tstamp 6fa8145f-4c86-431d-a94b-57494552123b)) + (fp_line (start 2.345 -2.03) (end 2.345 4.31) (layer "F.SilkS") (width 0.12) (tstamp 9e3df369-56c8-45d2-96f0-0e687bfa505c)) + (fp_line (start -7.425 4.31) (end 2.345 4.31) (layer "F.SilkS") (width 0.12) (tstamp bd3cf858-166c-49d6-9961-8b94a1acf2d3)) + (fp_line (start -7.425 -2.03) (end -7.425 4.31) (layer "F.SilkS") (width 0.12) (tstamp cd00c827-3c4d-43d4-88a0-7254d92da593)) + (fp_line (start -7.6 -2.2) (end -7.6 4.45) (layer "F.CrtYd") (width 0.05) (tstamp 063eeb66-f3b2-457c-bab8-c0de47cd7eb0)) + (fp_line (start 2.5 4.45) (end 2.5 -2.2) (layer "F.CrtYd") (width 0.05) (tstamp 184867bf-791c-4155-9944-970056e9456c)) + (fp_line (start -7.6 4.45) (end 2.5 4.45) (layer "F.CrtYd") (width 0.05) (tstamp 6685d33d-3967-4149-aacf-8f23426169c8)) + (fp_line (start 2.5 -2.2) (end -7.6 -2.2) (layer "F.CrtYd") (width 0.05) (tstamp d618a2f4-ad88-44dc-943e-5f205b2a2f1b)) + (fp_line (start 0.955 4.005) (end 0.956 1.836) (layer "F.Fab") (width 0.1) (tstamp 1c4a967a-d9ff-4163-bb2a-95ccc3501bb3)) + (fp_line (start -7.305 4.19) (end 2.225 4.19) (layer "F.Fab") (width 0.1) (tstamp 75ebcaaf-8f91-4bce-95da-35daf284b36b)) + (fp_line (start -7.305 -1.91) (end -7.305 4.19) (layer "F.Fab") (width 0.1) (tstamp a5af9987-9977-4e07-84ae-8a7f052d8e4a)) + (fp_line (start 0.955 4.005) (end 0.956 1.836) (layer "F.Fab") (width 0.1) (tstamp bea2cf6d-d15b-4b74-9fb4-8f3be204ce3d)) + (fp_line (start 2.225 4.19) (end 2.225 -1.91) (layer "F.Fab") (width 0.1) (tstamp c693e6be-e81e-4dab-b2cd-37c227982b91)) + (fp_line (start 2.225 -1.91) (end -7.305 -1.91) (layer "F.Fab") (width 0.1) (tstamp f1d5f4cb-54cb-4ce5-8f0e-7cc3879c9207)) + (fp_circle (center 0.955 2.92) (end 2.05 2.92) (layer "F.Fab") (width 0.1) (fill none) (tstamp 302f10e7-ea11-468e-a7b2-970a5fb4f69e)) + (pad "1" thru_hole circle (at 0 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "1") (pintype "passive") (tstamp 881ba6c1-962a-43e8-acdf-1c75a4cb2656)) + (pad "2" thru_hole circle (at -2.54 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask) + (net 28 "Net-(RV5-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 14fc2305-fea3-47d6-9a37-84bcd115322e)) + (pad "3" thru_hole circle (at -5.08 0 270) (size 1.44 1.44) (drill 0.8) (layers *.Cu *.Mask) + (net 13 "Net-(C13-Pad2)") (pinfunction "3") (pintype "passive") (tstamp 8d91fba1-8886-4a37-831b-de5af95353f4)) + (model "${KICAD6_3DMODEL_DIR}/Potentiometer_THT.3dshapes/Potentiometer_Bourns_3299W_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp 2f3e546a-59ec-4b91-83a9-127f9ebbeb30) + (at 90.852 98.552 180) + (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor") + (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/f5a1eb5d-e013-46e5-be3e-30f1e81f1c14") + (attr through_hole) + (fp_text reference "C10" (at 7.794 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp cdccd26b-7b7d-497b-979d-3455097005a1) + ) + (fp_text value "100nF" (at 2.5 2.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ae6e4baf-527e-4a8b-bef9-c2ff1f6f4b70) + ) + (fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b1bb5126-2f4d-48a1-95fa-1212cd328890) + ) + (fp_line (start -1.12 -1.37) (end -1.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 28e91582-e8fc-4115-9c06-90bd8a934d2d)) + (fp_line (start -1.12 -1.37) (end 6.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 6b0ef497-8e7d-4f23-801d-8ef6433a9947)) + (fp_line (start -1.12 1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 80133a1c-f812-48b5-abc3-17e961d14abb)) + (fp_line (start 6.12 -1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp bc7f0745-c909-4887-aed4-7a9522266445)) + (fp_line (start 6.25 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1fe20705-4cbc-49b3-b915-ba3860c21876)) + (fp_line (start -1.25 -1.5) (end -1.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 3957454a-c8ee-4c8f-a049-4b8a768f1a61)) + (fp_line (start -1.25 1.5) (end 6.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 542fa860-f0d0-4b8e-ae8c-0d5e8cb83778)) + (fp_line (start 6.25 1.5) (end 6.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp ce7be239-d9f8-461a-89e7-f9b05ab6de4e)) + (fp_line (start -1 -1.25) (end -1 1.25) (layer "F.Fab") (width 0.1) (tstamp 258e3672-542a-49ca-adf3-2bf1e99e1d64)) + (fp_line (start 6 1.25) (end 6 -1.25) (layer "F.Fab") (width 0.1) (tstamp 4ad9dd43-279a-491a-a1b6-6c5bde60a56d)) + (fp_line (start -1 1.25) (end 6 1.25) (layer "F.Fab") (width 0.1) (tstamp 586665a1-1c11-469a-a55b-a8bca3bf4a61)) + (fp_line (start 6 -1.25) (end -1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 7185ebc1-3110-409c-aeb9-5531889373a5)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp 15819a65-73f1-4900-9fd3-6080b76286ea)) + (pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 9 "Net-(C10-Pad2)") (pintype "passive") (tstamp 9b38a7fb-f77a-46e4-bb40-36a7dd42322b)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp 3e1879c6-c2f1-4955-97c5-57e7745a210d) + (at 85.598 101.092) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/8a434250-e9ef-407d-91c4-2bbe591e0528") + (attr through_hole) + (fp_text reference "R11" (at -2.54 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 44efe958-95c0-4e7e-997e-e01acda110a8) + ) + (fp_text value "120k" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 146a0b4d-c607-4e5a-8d82-22d3a66c92aa) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 577d8b53-0c15-462b-a0fa-a038f8ba916f) + ) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 171a499b-d721-41b3-8d3c-d876635d5c27)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 44a2374b-27b7-47c9-90a0-20ef0f1d736c)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 49f0e93c-13fb-4087-a56c-c4acfc824672)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 68db9b79-1ec5-4b41-9908-5f1885041ec0)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 79a93309-cbe3-49ca-9afb-3300778f4b05)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 8b0f3b9e-a186-4c19-939f-4fc2950a760e)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 458dbda1-b0ea-4035-bda7-59a788497c21)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 7a73d090-5634-4771-b447-270625dbd9e2)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp ccb24f0e-f6d0-4a7a-b8d6-f86a7a227ce0)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp f847ca67-acb3-4b39-af05-2ea24c0d006a)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 206ca5e7-7bb9-42e7-a419-ad754efa7edb)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 65705d11-de68-4c00-aa0a-e8ee689bd0c0)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 6920b634-7783-4f90-85d8-09fe3dc53b95)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 96f2d770-3dd3-4aa5-9769-5733ecbb5ceb)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9c487c06-f48f-4aa6-b09c-39c4b47d4a0e)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp ec5c70c7-0c41-4d8d-931d-9c0d8c59ddae)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 9 "Net-(C10-Pad2)") (pintype "passive") (tstamp 60a5c237-488e-4e1b-9ba4-0545e1129824)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 22 "Net-(R11-Pad2)") (pintype "passive") (tstamp 0785bd53-02a9-486a-9ff8-6d6e9bc2e423)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp 42103527-2cdd-4e9b-9c21-3a47dc4d99ef) + (at 85.598 103.124) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/50e83388-d157-4147-9b50-698eee4a2f3a") + (attr through_hole) + (fp_text reference "R13" (at 3.81 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6d28f8f6-1bab-444b-9723-1901a2cbf674) + ) + (fp_text value "100k" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 42b0a0de-e03b-43cb-9061-eedf50e03fba) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 45434c4b-7591-44f3-b19a-337eaf953ca4) + ) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 03dd1b85-ba3c-43fb-bb6e-eb80a7d3f9e5)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 12efe8aa-ab38-4cee-b666-0449cd705039)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 85b4e94b-ec5b-4b46-9fee-e6837c107807)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 9eaf40a2-d685-42f4-af3d-2131683d2313)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp a319f6b5-5161-4f3f-b809-cdca26855831)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp eae34516-9be2-47af-9b5a-ae73c569b51a)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 52153ae9-523c-461c-9140-528aef94d414)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 7c86e4c8-f098-45ef-bc48-2fc25127363e)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp e0561ba3-e5ee-43c0-bcfd-270c0665078c)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp f90e7f74-0b73-4ff9-a86f-5f11550b8bf0)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 529bb259-a3e0-4029-a761-805ab18e45e1)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 720fc3b3-f164-476f-b6b4-83d203f46e36)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 75988360-1dc4-47b2-9b80-a87f1731c92d)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 90018d5a-8ee1-4a02-bf9e-b250b9f267b7)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 98732c8d-f378-48f2-9aaf-244bea3eca32)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp c9d18a23-eef2-434d-8487-1b587c231a91)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 9 "Net-(C10-Pad2)") (pintype "passive") (tstamp bf8caaf3-1d32-4848-aa08-a1b05d418ca5)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 17 "Net-(Q1-Pad2)") (pintype "passive") (tstamp 041eeb79-2358-451c-877e-cc2048830555)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_DIP:DIP-14_W7.62mm" (layer "F.Cu") + (tedit 5A02E8C5) (tstamp 46a53a8a-bea9-4800-8861-9ac0029cbae1) + (at 95.26 81.783) + (descr "14-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)") + (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/4191ef53-102f-4cd9-8f99-b7e26e6d4541") + (attr through_hole) + (fp_text reference "U4" (at 7.356 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp dc32b359-8b6b-45d3-b16a-494e36f4a77e) + ) + (fp_text value "ATtiny44A-P" (at 3.81 17.57) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 43de5a9c-041d-45cf-9337-dc92fbedd4ce) + ) + (fp_text user "${REFERENCE}" (at 3.81 7.62) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 10b049cc-777d-49b9-8b72-57dc3c0857d5) + ) + (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 00486478-893b-425b-a5bc-a7e44ca55943)) + (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 034761f7-89e6-4cfb-b6ff-bf1b84c7a5df)) + (fp_line (start 6.46 16.57) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 37104c1f-3fc7-450d-a4f7-b7c6a047301e)) + (fp_line (start 1.16 -1.33) (end 1.16 16.57) (layer "F.SilkS") (width 0.12) (tstamp 37e027e0-c693-46fd-91b0-bc4f7a8a75a2)) + (fp_line (start 1.16 16.57) (end 6.46 16.57) (layer "F.SilkS") (width 0.12) (tstamp f61e3e87-7314-4efb-9213-187dd15d0ffa)) + (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 49e9376f-c37c-4d53-88f7-0571c02c7826)) + (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 06b5d7ae-466e-45af-ba0d-e2062a43e01b)) + (fp_line (start -1.1 -1.55) (end -1.1 16.8) (layer "F.CrtYd") (width 0.05) (tstamp 2f8fab55-05ca-4686-80f5-c3c168b9b405)) + (fp_line (start 8.7 16.8) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 564b2d44-1560-4468-98cc-c739e80ecf33)) + (fp_line (start -1.1 16.8) (end 8.7 16.8) (layer "F.CrtYd") (width 0.05) (tstamp 7bac110b-7640-47f3-87f5-de9b955572f0)) + (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 6faf2824-be38-492e-a01b-4c105834407a)) + (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 99dcf6c1-d77b-406c-9562-097152d85a50)) + (fp_line (start 6.985 16.51) (end 0.635 16.51) (layer "F.Fab") (width 0.1) (tstamp 9f9f3fe6-4871-4e2c-ae65-3499c3b4d5f0)) + (fp_line (start 0.635 16.51) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp e15e7bb0-aee8-4314-944b-1b75c2378f49)) + (fp_line (start 6.985 -1.27) (end 6.985 16.51) (layer "F.Fab") (width 0.1) (tstamp f742decb-769e-41e1-a738-87ff6ad9b828)) + (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 6 "+5V") (pinfunction "VCC") (pintype "power_in") (tstamp 606c3e55-7d61-412d-adac-41bf5f1f1a73)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 34 "unconnected-(U4-Pad2)") (pinfunction "XTAL1/PB0") (pintype "bidirectional") (tstamp cf555f2f-3324-49c1-8485-dfee4c430451)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 31 "Net-(SW2-Pad1)") (pinfunction "XTAL2/PB1") (pintype "bidirectional") (tstamp cadaebaf-094e-410f-80ae-c1a7d87b0296)) + (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 21 "Net-(R10-Pad2)") (pinfunction "~{RESET}/PB3") (pintype "bidirectional") (tstamp 2e9befe8-1ba6-44c4-8c0c-2f6b67d813e8)) + (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 37 "unconnected-(U4-Pad5)") (pinfunction "PB2") (pintype "bidirectional") (tstamp 4c547317-fb88-4349-8693-292a4176dbba)) + (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 29 "Net-(SW1-Pad1)") (pinfunction "PA7") (pintype "bidirectional") (tstamp bb71ccf9-22ec-45a2-bf1c-bd7842c7e384)) + (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 35 "unconnected-(U4-Pad7)") (pinfunction "PA6") (pintype "bidirectional") (tstamp c9d7d0c3-aadd-4970-838b-24ec594190b9)) + (pad "8" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 23 "Net-(R12-Pad1)") (pinfunction "PA5") (pintype "bidirectional") (tstamp 07767ae5-de80-4b3a-a4c3-79672588e7fc)) + (pad "9" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 36 "unconnected-(U4-Pad9)") (pinfunction "PA4") (pintype "bidirectional") (tstamp 4d3b3dab-f2f0-46e6-90e8-341aef8b42c1)) + (pad "10" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 30 "Net-(SW1-Pad3)") (pinfunction "PA3") (pintype "bidirectional") (tstamp 92425964-3db1-4a0a-86ee-ecbd90311ff8)) + (pad "11" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 26 "Net-(RV3-Pad2)") (pinfunction "PA2") (pintype "bidirectional") (tstamp 275e3c89-0d83-4a85-9571-5807c3e775e6)) + (pad "12" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 25 "Net-(RV2-Pad2)") (pinfunction "PA1") (pintype "bidirectional") (tstamp 55c88c67-b10b-4bce-a298-bf570d07e5c7)) + (pad "13" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 24 "Net-(RV1-Pad2)") (pinfunction "AREF/PA0") (pintype "bidirectional") (tstamp e12bd674-781c-48c8-a57b-0c0baf4f4d54)) + (pad "14" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 5fb1a6fc-9a0a-4c35-ade0-460027893012)) + (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-14_W7.62mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp 49dc4156-3099-4e3f-8d79-c06d9503bcfe) + (at 111.570888 96.266) + (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/0d5a6edb-d525-4289-8e5a-53304df0385d") + (attr through_hole) + (fp_text reference "C7" (at 4.634112 -1.905) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp aeb07824-f766-4b0a-92e6-7a9336a0b98a) + ) + (fp_text value "1uF" (at 1.25 3.75) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 560debac-dd60-4872-a40b-f118709ff2d1) + ) + (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp fea6b00a-78d5-46bc-8b3b-4aefff4c663a) + ) + (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 025a60e2-6b84-4bfd-b50e-b98cb03eca8d)) + (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 06fb5a02-f278-4c85-9bd1-8392eeeb9617)) + (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0a0d3118-dfe5-4940-8bb6-9d652974e3d5)) + (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp 11776fe4-4721-440e-9d16-0f4a13d4e4d5)) + (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 11acf68e-b267-4635-86b8-6f03c2c91aff)) + (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 169243fe-9174-4d7d-938c-c3895e21e860)) + (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 17929e09-ca50-4b58-9540-ce4b261befe0)) + (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 18895a7f-8c16-42ee-86af-19690b4a7944)) + (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 1adaa1c9-f3a6-494b-a7c9-2cd14b6885d2)) + (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 1d32171f-df3d-45bb-b60c-9aaa2f680cd4)) + (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2026c058-7d9c-4384-bdc3-c0609ed4edb5)) + (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 20931fa4-7cb1-4b70-b771-567d3db4a4f0)) + (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 27848a57-7d55-4d14-bdb1-ef0bf1297d79)) + (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 27e4df6a-cd7e-4b67-9e8e-042faa4a4f93)) + (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 28eeccb7-d654-4720-bbe9-84d66ff41aaa)) + (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2bd801dc-c532-4421-bc37-2b279ebe428e)) + (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 2d2a2f0b-5f9c-4800-8240-6149ba9475e2)) + (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3039dd8c-1684-41ea-888f-c61edb5b95cb)) + (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 318b7624-a4a9-4d5f-9883-45388c9cb98c)) + (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp 31faba2f-5fb9-40bf-92f6-bf3870517aab)) + (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 341ae7ec-8429-4701-b9a1-fdc2534ed381)) + (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 35b61d7f-12fc-4193-9c15-02338ba3abfa)) + (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3b3ec974-0570-4df1-bfe3-bf4d4b6bef76)) + (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 3df3fbe4-e5dd-4996-b905-f23b9f31dd2c)) + (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp 436bd515-917a-4986-95ef-a8751f20bac8)) + (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 478db704-89c0-4a67-b76a-68175f59b969)) + (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 5072b629-d826-4ba9-a1f5-51e91aa53bc3)) + (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 544159b5-6dbe-4081-aaf3-ad1051be91e7)) + (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 565c4c98-f503-4b0d-a321-f0653b609295)) + (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 594b3eec-01c2-4c1a-93db-5cedd908303e)) + (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5a4de1a6-ed26-4299-a02c-c65c63e7eccd)) + (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp 5b9099ec-7863-4bd6-af7c-059c0cab5126)) + (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 5cca369a-4000-4866-9f59-a860c249364d)) + (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp 5cebb035-c36a-4419-94ab-4d534b2d714e)) + (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 60d54308-3755-4706-9454-1e6352a37deb)) + (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 613c4774-c907-4541-9dd6-a516ff4e6e9e)) + (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp 61d50110-9a17-47b4-b3ec-2e2781c71ef0)) + (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 62175145-985c-4a40-a8a0-75920bd581b6)) + (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 630efc03-47e7-4268-af77-c9502ef4d972)) + (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 635095fd-fae7-4eb8-8e5b-a2a3ef921bda)) + (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 64dc93ef-ce95-4e39-94b5-479c123d4c03)) + (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp 65609711-f946-4ccf-83aa-796a47e6960c)) + (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6573e35c-4e42-40f8-89cf-14ee7acc35e0)) + (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 65b05120-7261-442a-acc5-4b9bed8d2cd9)) + (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 6b5add87-d012-4b2b-ab3e-c0d68bbdd49c)) + (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 6e9f616b-a772-424b-b838-9a19a267350f)) + (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 6f079a8b-27db-4946-a08c-8fa668811365)) + (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 705f9ac9-6cd9-4c9d-a3b3-3e67490d6ef6)) + (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 76659f18-3ed7-49df-9b1d-b60abf96f437)) + (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 7c100d13-66cb-46b2-beab-f9e35dc66013)) + (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp 7ce840a3-dd92-4ce1-892c-930de04376f7)) + (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp 7d0329c4-2d74-4294-9b67-e4a275920b9e)) + (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 7d0d3114-74d5-4f28-b9bb-27d165e5e141)) + (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7d20f648-ce69-4927-ab2d-01e949c8ba34)) + (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 853367c4-35cb-44c0-8597-ec684eef7667)) + (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 853fda3b-a538-4f44-886f-f0c5f7c29185)) + (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 86050e06-3412-464d-ad52-655316076ab4)) + (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 86ff6bc9-a4e3-45ac-99df-4a9ddc250dd2)) + (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8851901f-3c78-4f66-a98a-097218f03692)) + (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8953f35e-09d6-48ab-b860-560bccd5c98e)) + (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8ce59927-c250-4944-b6b1-584205564b0e)) + (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 92f2227a-0219-4dcd-8717-9ee26bf9db99)) + (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 93b2c9a9-dc5f-40c8-b200-4056dad39463)) + (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 93e25406-e15b-409a-8a3b-26e767049f9d)) + (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 94adc3bd-a288-492f-950e-6ed892021b63)) + (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 96685ae6-619f-4135-9332-57a0a1c38916)) + (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 986405f6-522e-4b8c-99e4-246378a6ccde)) + (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 994cc8a7-bb9c-4bd7-93c9-0e8d0c739056)) + (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 9a5a8e6e-fdef-4689-b20c-e5e3df444bfa)) + (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9b5f6194-0e11-4377-a344-827067ac5b28)) + (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp 9be8903c-b3f1-402f-a587-4d98e779cb9d)) + (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 9d32faaa-5a1a-4214-8f8e-655fa6571cb4)) + (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9e702395-3f9d-42b5-a405-858db7eeb00c)) + (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a20d9308-d5ee-4496-abfb-811261151be0)) + (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp a601d807-5e32-4075-87aa-912bd9bd3b9e)) + (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp a622a20e-d939-45b6-96dd-438c2648fd91)) + (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a8a93ce9-92e4-486c-9a72-235317abb233)) + (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp aa864e9b-911d-4c51-ba1f-19794657ee1f)) + (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp adc48aa9-d974-44cc-8861-e76cf0fa5027)) + (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp ae43f06a-0f5b-47c1-909c-e6acbb4e79de)) + (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b113ae60-5b06-4a4a-8395-f5b2baf5a602)) + (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp b12c93a4-dd63-4182-904c-df2fb4a231ca)) + (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp b2a5a811-572a-47ce-a3f8-e7793a6410fb)) + (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b38ce878-fa8b-4a0f-9456-3aa77905308a)) + (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b646b007-d3a7-4b76-b772-8f62b5ca8ba5)) + (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b6c25edf-d51a-4deb-99b3-d069ce997fd3)) + (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp b79385bb-c36e-4336-953e-85417d7108ad)) + (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b9873c4a-4015-496c-92a0-d27424f65a77)) + (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp baa71a50-2fd0-4138-9b60-9e126a6553c1)) + (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp bf5d9c6c-f44f-4ffa-bec0-885349f8f0f7)) + (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp bf71cab7-b8b5-4274-9fbb-15cd46253502)) + (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bfce9b0c-e1ad-411c-8a67-af74f150c29c)) + (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c04b173e-22f4-46b2-bb83-a052254d4c29)) + (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c1a356e8-cd4b-4ed3-aa73-a9fcbf476c3c)) + (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp c3cd05ec-4b6b-4ce1-83c2-5bfd1eb7c044)) + (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c7efea67-c5c9-4d4c-a7dc-1bcddab8c606)) + (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp cf8d39cf-e9be-4edf-8e48-6df6c1feef5d)) + (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp cfd7d64a-316f-495b-bc5c-f20047eeba71)) + (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp d3cac316-9aab-4008-b9de-11106298622e)) + (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d66947fd-1875-40d2-a603-699ee2d0c4a8)) + (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp d771f29f-1b9f-4bdb-a109-6bfa7ae03227)) + (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d807b89b-e184-4965-a1eb-30576e31f551)) + (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp d8761eec-65b8-4d7e-a319-a083a712176e)) + (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp d9a9f005-22be-49e7-98b9-98ec87790a09)) + (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dffca976-4437-45af-bf62-7254ad524195)) + (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp e09ca573-64cd-4ccd-a8c2-15b7be64acff)) + (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp e3d7fa79-f9a8-4709-8a5a-4da92c956af8)) + (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e6d4936a-c72c-4dcd-afb2-46fa9e0785ab)) + (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e8478f35-b07d-4ec4-b26e-9f7aefa42ba7)) + (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f621c71d-cfd8-4aef-a6b6-8e19918dbc4c)) + (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp f7bc4354-d2d2-4f5b-b9d9-a2703e0798a2)) + (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f85023ab-2237-4399-a6a0-b992951dee4c)) + (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp f9d08046-be99-47b2-b08c-03caac8c7660)) + (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp fa5f61a0-8ac6-4f21-8368-91aa165d79de)) + (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp fc5bfec9-7dd4-4e48-8926-5ab9d5e9a24c)) + (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fc84a68c-83b8-4be3-a49a-01e55462a4b3)) + (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fc8b7bad-b178-4b74-bbbb-34c3a751f16f)) + (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp fd0b19a4-3ed4-4cd3-97a3-48992bf15368)) + (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp fdb89b58-2166-4574-89a2-dad8c17edf7a)) + (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp ff0f8a9a-afba-4a95-b01c-483d74ddfcc1)) + (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 74e66273-aaf3-4148-a412-f473a56ce72a)) + (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp df2b7e97-e1e6-40e3-b6c5-34370e2136dd)) + (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 098bb5ea-0582-440b-a84e-684388e4de55)) + (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 35de483e-d4e7-4603-84ef-f0e8fbb97a79)) + (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 16c9ad54-ac61-4d39-917f-22ccef68b137)) + (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 7 "Net-(C7-Pad1)") (pintype "passive") (tstamp d82bc7eb-ff3a-4d94-9231-87e310b81eb0)) + (pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 8 "Net-(C7-Pad2)") (pintype "passive") (tstamp b48ddcbe-2d8e-4337-a4a6-c49dabdf7413)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_DIP:DIP-8_W7.62mm" (layer "F.Cu") + (tedit 5A02E8C5) (tstamp 4d617225-5a28-4a5b-98e2-1d5600360132) + (at 116.977 81.798) + (descr "8-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)") + (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/67e4f302-4d84-4715-b3e0-6cf033d1a781") + (attr through_hole) + (fp_text reference "U1" (at 3.81 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b3d452e4-0558-44e2-b1c9-373e568f7de0) + ) + (fp_text value "TL072" (at 3.81 9.95) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b958d746-654f-4062-8f21-814245ef0de4) + ) + (fp_text user "${REFERENCE}" (at 3.81 3.81) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b68b5693-4480-4523-b6b6-527382297cb3) + ) + (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 124f4f8c-03b4-4ba1-a2f7-01211c495bb4)) + (fp_line (start 1.16 8.95) (end 6.46 8.95) (layer "F.SilkS") (width 0.12) (tstamp 5b701cbb-e617-42ef-ac32-12540c6d0846)) + (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5d5888be-bd38-40b2-895f-7aef69140f95)) + (fp_line (start 6.46 8.95) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 68ce26b8-2ed4-4e81-ad42-4ca9d904c7f2)) + (fp_line (start 1.16 -1.33) (end 1.16 8.95) (layer "F.SilkS") (width 0.12) (tstamp d8f8e27e-8551-46a4-adf5-1354e0612a9e)) + (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 5b85d65d-6257-43e4-a47c-2ca7e0fef0be)) + (fp_line (start 8.7 9.15) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 318c51b2-4765-47cb-b52c-aff3af757551)) + (fp_line (start -1.1 9.15) (end 8.7 9.15) (layer "F.CrtYd") (width 0.05) (tstamp 6f1afc3c-70d4-4911-aee8-120d3178fb7e)) + (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp a893e02b-83ac-45fa-9deb-ca44bf180ff4)) + (fp_line (start -1.1 -1.55) (end -1.1 9.15) (layer "F.CrtYd") (width 0.05) (tstamp d723146a-c312-4ba5-8e38-2cd9c8bd9bac)) + (fp_line (start 6.985 -1.27) (end 6.985 8.89) (layer "F.Fab") (width 0.1) (tstamp 13248958-fc41-4065-b195-787c63c2090c)) + (fp_line (start 6.985 8.89) (end 0.635 8.89) (layer "F.Fab") (width 0.1) (tstamp 3c85243d-6167-4f40-b65f-695be4df53e3)) + (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp 83a254be-3571-4039-804d-abf6a6152016)) + (fp_line (start 0.635 8.89) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp bcccf788-35eb-48d9-a8ed-86e3b7ac90c8)) + (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp f58309ab-5a3b-4cda-b994-805c079b6ee1)) + (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 8 "Net-(C7-Pad2)") (pintype "output") (tstamp 28dd0ef2-07c3-4fb7-a156-33bb062df93c)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 18 "Net-(R2-Pad2)") (pinfunction "-") (pintype "input") (tstamp 84ce0be5-0412-4bdd-83e3-854a7a710ced)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 5 "/VREF") (pinfunction "+") (pintype "input") (tstamp 5a5e5ad7-2c7e-4ccd-938c-3d7c6c5b04f2)) + (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "V-") (pintype "power_in") (tstamp 0cc74582-0855-4340-acc2-9d706039eeb8)) + (pad "5" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 10 "Net-(C12-Pad1)") (pinfunction "+") (pintype "input") (tstamp cb86c03f-9687-44e9-b746-5ebe7a333fb7)) + (pad "6" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 28 "Net-(RV5-Pad2)") (pinfunction "-") (pintype "input") (tstamp 62b6ceae-4979-4c7f-9abb-9d942b9ab846)) + (pad "7" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 13 "Net-(C13-Pad2)") (pintype "output") (tstamp 3a5720e7-cecc-4233-98ac-b671c0b63900)) + (pad "8" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 3 "+9V") (pinfunction "V+") (pintype "power_in") (tstamp e91905fe-58bc-4c02-8889-7bd13e1e4a1f)) + (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-8_W7.62mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp 4f30360b-37f9-42db-8257-49acb496be46) + (at 105.2684 111.8108 180) + (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor") + (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/10c03ca5-f28e-4dc2-b3ca-d8f478c80a3b") + (attr through_hole) + (fp_text reference "C4" (at 2.5 -2.5) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2500ff18-471a-4caa-bbbf-7d04f0178773) + ) + (fp_text value "100nF" (at 2.5 2.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 81d5843f-9f7e-41b6-b983-8e6a163770df) + ) + (fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 70c648d3-6955-453b-9a3f-b6008043a6f4) + ) + (fp_line (start 6.12 -1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 2eedbd72-7a58-488f-91de-929b1d7960cf)) + (fp_line (start -1.12 -1.37) (end -1.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 413842c3-3264-468f-b43f-ce99bf7c6aa1)) + (fp_line (start -1.12 1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 63a711ab-74e9-403e-b51f-9ef8ae5fb94b)) + (fp_line (start -1.12 -1.37) (end 6.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 72c285ed-1598-4cbf-aac9-d10eff9cb21f)) + (fp_line (start 6.25 1.5) (end 6.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 011b920d-f9ce-4bde-bf16-1738793dcfb7)) + (fp_line (start 6.25 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 1b2757ba-27f6-49df-a17a-4465eab0a524)) + (fp_line (start -1.25 -1.5) (end -1.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 4ab11403-08a4-4af5-b83c-2d43410ab7a4)) + (fp_line (start -1.25 1.5) (end 6.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 6577e3de-7a1b-4532-ac16-f75cdce47c8b)) + (fp_line (start 6 -1.25) (end -1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 0bef87a0-f5d7-4f04-a81a-a7980ccc5836)) + (fp_line (start 6 1.25) (end 6 -1.25) (layer "F.Fab") (width 0.1) (tstamp d2b44210-622b-4683-80c7-cc84f1e06752)) + (fp_line (start -1 -1.25) (end -1 1.25) (layer "F.Fab") (width 0.1) (tstamp da59907a-594c-4612-96b8-0b5f551ac81d)) + (fp_line (start -1 1.25) (end 6 1.25) (layer "F.Fab") (width 0.1) (tstamp db186835-30f1-48bf-a965-7df991050d0a)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 5 "/VREF") (pintype "passive") (tstamp 973a0ca4-c6e1-467f-ab72-3c96df1b4183)) + (pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp f0fed261-6643-41b7-b346-9aac97e7b61b)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp 5a81c698-d387-4692-b154-0bfd9c10038c) + (at 184.020225 68.476) + (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x02 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/554d888d-23fd-4c68-a6ec-7855a536ffbb") + (attr through_hole) + (fp_text reference "D2" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 49ab40c8-183b-4101-9f05-3f824384e68e) + ) + (fp_text value "LED_ON" (at 0 4.87) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eb1840c4-81de-4227-ba0c-2d1548f9bbf0) + ) + (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e2b1bf73-fdaf-4eb9-ae79-24d7fcba0a30) + ) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 0cfab4a2-59c7-46e7-8b03-9c436eecd7f4)) + (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 6074e365-5096-41f6-a472-327a33d814ba)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 946a8f93-f8a6-49ed-be65-22cf14da1914)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a323f70c-afa2-4c2a-b732-5b77a8cbc996)) + (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp c68df4b4-e8dc-4506-8f9d-0536788c4bf0)) + (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp f9beff27-f2a4-4b62-a53b-c03dfbafb19e)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1a16cf51-5341-44ba-bdb3-4da8305d91e0)) + (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 633ad3b8-63c2-4a66-ba43-ec1b2327d590)) + (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp c3891891-f0e9-4c69-8b6b-afef153dbd09)) + (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp ee0b93ce-5250-408a-a914-466cffa6cd49)) + (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 35b4c71d-70fe-4c5b-8de5-d1d53b101ad3)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 4c73a99d-628c-494c-9daf-26e7e7981e8e)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5125aeff-fbaf-4069-9b26-eba443c92f10)) + (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 6adf7903-65b5-4df6-8573-551f7d72bd18)) + (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp e751c3c4-256e-4063-911b-f28076fae0ea)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "K") (pintype "passive") (tstamp 1e6b6b49-a94e-4a91-aa1f-ea23bfe07c2f)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 15 "Net-(D2-Pad2)") (pinfunction "A") (pintype "passive") (tstamp a4c343d5-a6fd-4619-9a83-930a86997c7d)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_DIP:DIP-16_W7.62mm" (layer "F.Cu") + (tedit 5A02E8C5) (tstamp 5d6e084a-605f-4d05-bcd6-23a747bd3e0e) + (at 116.967 98.044) + (descr "16-lead though-hole mounted DIP package, row spacing 7.62 mm (300 mils)") + (tags "THT DIP DIL PDIP 2.54mm 7.62mm 300mil") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/f8a7bff7-2bff-42b5-9158-171579415098") + (attr through_hole) + (fp_text reference "U2" (at 3.81 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 621e1831-a143-4730-a50d-6b017889325a) + ) + (fp_text value "LM13700" (at 3.81 20.11) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp cc66be20-053f-47f4-b771-82e8e2db880a) + ) + (fp_text user "${REFERENCE}" (at 3.81 8.89) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8f13a4f9-e9b5-492f-822d-eedb13512744) + ) + (fp_line (start 1.16 19.11) (end 6.46 19.11) (layer "F.SilkS") (width 0.12) (tstamp 16a71bba-04ef-4283-a06b-f6e9ba8ea3c4)) + (fp_line (start 6.46 19.11) (end 6.46 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7a88021c-25a4-4e68-b9a6-39d9e7e27be7)) + (fp_line (start 6.46 -1.33) (end 4.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b153868b-1309-4094-8ec2-dd46019c061d)) + (fp_line (start 2.81 -1.33) (end 1.16 -1.33) (layer "F.SilkS") (width 0.12) (tstamp c39e99f9-f98a-4657-b4d3-48f953d0ee09)) + (fp_line (start 1.16 -1.33) (end 1.16 19.11) (layer "F.SilkS") (width 0.12) (tstamp d8699bf7-670e-4377-999d-283b728c81a7)) + (fp_arc (start 4.81 -1.33) (mid 3.81 -0.33) (end 2.81 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 998418c7-5071-4993-8341-9bc4d4a4c591)) + (fp_line (start 8.7 -1.55) (end -1.1 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 1657c033-a380-4cff-a9e8-625c793a9ef7)) + (fp_line (start 8.7 19.3) (end 8.7 -1.55) (layer "F.CrtYd") (width 0.05) (tstamp 8c04e57b-bc43-4b60-a800-61d5418b7f8a)) + (fp_line (start -1.1 -1.55) (end -1.1 19.3) (layer "F.CrtYd") (width 0.05) (tstamp afd398e5-6ae9-4f9a-985b-7d1f134b07c6)) + (fp_line (start -1.1 19.3) (end 8.7 19.3) (layer "F.CrtYd") (width 0.05) (tstamp bbfadc9a-287a-4a82-8c75-99db9b163071)) + (fp_line (start 0.635 -0.27) (end 1.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 57c3b217-44d7-4d3b-98b6-48841c4fa522)) + (fp_line (start 0.635 19.05) (end 0.635 -0.27) (layer "F.Fab") (width 0.1) (tstamp 8f168410-2ec5-49ad-9dfb-a3945c287065)) + (fp_line (start 1.635 -1.27) (end 6.985 -1.27) (layer "F.Fab") (width 0.1) (tstamp b87dacec-d770-4fac-bfe1-efb923046bde)) + (fp_line (start 6.985 19.05) (end 0.635 19.05) (layer "F.Fab") (width 0.1) (tstamp ed3603bf-14c3-4722-8590-15f346206a03)) + (fp_line (start 6.985 -1.27) (end 6.985 19.05) (layer "F.Fab") (width 0.1) (tstamp ee796e0c-71e8-4a8d-a561-f3ac4bb1387d)) + (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 7fcb48a4-eaa0-40c8-9cea-403711b62488)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 68de6991-e062-4bc8-a596-49c78ea4858f)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp d6c9a302-074e-4fbd-b395-daac6a438c5f)) + (pad "4" thru_hole oval (at 0 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp f8278ad5-6ca5-461c-9b25-4c719cca7061)) + (pad "5" thru_hole oval (at 0 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 0beabe83-df24-4956-ad54-548123285ceb)) + (pad "6" thru_hole oval (at 0 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "V-") (pintype "power_in") (tstamp 27f9751b-48a8-49eb-9739-541a6cdcd14d)) + (pad "7" thru_hole oval (at 0 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp 34aeed9e-00a3-473c-8d5b-e58f271df977)) + (pad "8" thru_hole oval (at 0 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) (tstamp dc1b745a-1bcc-49be-9037-b6ae2096cc21)) + (pad "9" thru_hole oval (at 7.62 17.78) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 11 "Net-(C12-Pad2)") (pintype "output") (tstamp 57789f58-c985-474f-a4e8-f2b69aed6bec)) + (pad "10" thru_hole oval (at 7.62 15.24) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 32 "Net-(U2-Pad10)") (pintype "input") (tstamp ce9b152b-4f27-4f27-a831-d0741536e6b2)) + (pad "11" thru_hole oval (at 7.62 12.7) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 3 "+9V") (pinfunction "V+") (pintype "power_in") (tstamp fd2b7010-803d-4109-9df9-ef8527ca061c)) + (pad "12" thru_hole oval (at 7.62 10.16) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 32 "Net-(U2-Pad10)") (pintype "output") (tstamp 8a21243e-853b-4133-b201-ff7cbb4d339b)) + (pad "13" thru_hole oval (at 7.62 7.62) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 20 "Net-(R9-Pad1)") (pinfunction "-") (pintype "input") (tstamp eb94383d-8bc1-4922-9579-e4057e718200)) + (pad "14" thru_hole oval (at 7.62 5.08) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 19 "Net-(R7-Pad2)") (pinfunction "+") (pintype "input") (tstamp cffe6c30-ac6b-4b1b-af26-314dfe98e44f)) + (pad "15" thru_hole oval (at 7.62 2.54) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 33 "unconnected-(U2-Pad15)") (pinfunction "DIODE_BIAS") (pintype "input+no_connect") (tstamp 9f41a514-9622-41b4-8c7a-3b0d06e58a83)) + (pad "16" thru_hole oval (at 7.62 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 22 "Net-(R11-Pad2)") (pintype "input") (tstamp b0435700-0f06-434d-9196-19b4ee26244e)) + (model "${KICAD6_3DMODEL_DIR}/Package_DIP.3dshapes/DIP-16_W7.62mm.wrl" + (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") + (tedit 59FED5CC) (tstamp 61a24e83-8a2d-40b1-8515-7b446e32e7f1) + (at 170.070225 66.876) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/3df53d8a-0ef5-4cad-9d90-e6b44aee51b9") + (attr through_hole) + (fp_text reference "SW1" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f55e0b58-ebcc-4ef6-a9c1-5b23ad9e5e30) + ) + (fp_text value "SW_SPDT_MSM" (at 0 7.41) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d9697af8-9a72-4429-bf61-d73b9e8304d1) + ) + (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 10fd1d94-746f-466c-84a0-aa85c04b7684) + ) + (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 2a7ba6bd-d126-462a-a271-00b22a36f452)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 316646cc-a018-4d5e-bf5e-e1b01aafa5b7)) + (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 6e1f6f0f-7109-457a-bfa7-6c30a9197ab0)) + (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 80e1701b-cd81-497a-ad48-20663e188d96)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp b8e30bc3-16b0-4b43-a983-ee60c4d8df20)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d3375906-4988-4cd0-a278-70122a4d171a)) + (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 19616f32-f0a5-4366-b1e4-4ec53cbdf973)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2cb77c62-4e43-42f1-ae15-2816f4671da0)) + (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 548ebe56-f848-4286-8185-c74dd22f1f5b)) + (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 6d26d4c0-d1c7-4f23-97af-c68577d970ee)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 2c0024c2-e84c-413e-ae5a-1ae05ffcb73d)) + (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 4151b6a6-9452-42af-9839-237221a93459)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 96b8b711-f40d-4aae-a044-c048034ee1fe)) + (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp b497b960-c3f1-4eb4-9c35-6ececbac3261)) + (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp f4f71385-7d42-47d8-8103-cc2b4489284b)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 29 "Net-(SW1-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 1f19efcf-6ac2-4cd3-b8d7-f2c878ef2dcc)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "2") (pintype "passive") (tstamp 8bf2b308-313a-42f2-9520-ac07c75df4c3)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 30 "Net-(SW1-Pad3)") (pinfunction "3") (pintype "passive") (tstamp 705cfb6c-6c51-4f91-8512-3711f7b510cc)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp 65d9c0cb-bdd2-4df9-aea0-b98d0f2fbef2) + (at 105.2068 115.4684 180) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/cbbb2462-23e7-4c21-8e59-d2a396195fa2") + (attr through_hole) + (fp_text reference "R5" (at 9.5504 -0.0508) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3d8af2c1-c88a-4235-ba0d-c2ef24384caf) + ) + (fp_text value "10k" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp cc64100c-e3e4-45ea-a40a-1f562e2fd631) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 51c08c94-69da-4454-a10a-5b8bd37e9060) + ) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 250c85dd-a796-426e-b7f1-e456b49bb8c4)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 25e1c3d1-3e85-4761-bdf0-c106afe8901f)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 25ffd335-6016-4ff9-a281-2e3cb33f7134)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 30c814ba-4979-47f8-bcba-fb88ed2c46a8)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 848f3dfa-e4d5-44fc-aa6d-c9f818ab3b0c)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp ea8d63de-2687-4980-b9b8-40fafffc1381)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 3f4234a5-c3b3-4f4a-ba33-970720907c8f)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 55864d43-1b26-4c66-8a7e-db3d1389ea14)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 667bc1a1-7e2b-451c-b0a7-9a8c355581e8)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 90bade5a-689a-4512-bbb6-01b80af7982e)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 0f981fb2-647e-4703-b25b-76679301bdd8)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 31e1bd35-165a-496e-9e35-cfa8a58aeb10)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 6284f75c-afd9-4523-b3b0-8b6c3dd0744b)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 7ef20c79-90e0-4123-9537-05114097945d)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp a0b5c949-abfe-4074-a0df-7c49911be6fa)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp b9a969f1-190a-4302-944d-4e7ddd6fbd63)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 15 "Net-(D2-Pad2)") (pintype "passive") (tstamp 02b2de22-bd45-481f-85ab-0fc0f67328d4)) + (pad "2" thru_hole oval (at 7.62 0 180) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 3 "+9V") (pintype "passive") (tstamp c8e4b7dc-55c3-4e3b-9778-8d13582c8182)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp 6f368d9d-c8b5-46b0-b693-ed460ca277a5) + (at 126.619 103.124) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/7164d9a4-b5a8-4780-b92f-c2f1ba0b4c99") + (attr through_hole) + (fp_text reference "R8" (at 3.81 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1e524b8f-fcc4-4ef5-bf86-3041df9285a1) + ) + (fp_text value "1k" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 74ec717e-2c7d-4324-a171-d6e4d645d152) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp f37d77d7-7aef-491b-8d47-0cd57b2097c7) + ) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 0d53e932-76e8-499a-b2f1-33270131e26e)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 167f9941-50c8-4dc6-9f0a-d61bc59413b8)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 5c04efae-090e-4c24-b647-e4c967358c26)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 7cc077d8-9f41-4ac1-95d1-07d777948019)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp a7ecebda-6788-4d6a-916c-ace18f67f981)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp eedbff9b-a626-422b-a373-de6951b131f9)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 26d5d53c-494a-4901-8026-fb0cc9b9cb33)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4148258a-b81e-4f12-b25b-a8e9f3561359)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 4c0d501b-8a5e-4c50-8643-4067d46e0899)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp aadc58b1-8e0c-43f4-a149-27df15481882)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 0e3b769c-01c4-47af-a564-b043523000ef)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 58c9d754-67ad-4d13-996d-eb46be28bfde)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 67691ab4-2231-47b6-ae28-69d2ebb581e5)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp bb19363f-b339-4e2a-9510-66fc0a341e40)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp deb8b548-1fdc-4185-a2d9-4b0b1d64d60f)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp e23f1618-ece8-4ae8-b225-3bd100cadae5)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 19 "Net-(R7-Pad2)") (pintype "passive") (tstamp 4749384e-640e-4cf0-9a5c-270ab78edeb3)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 5 "/VREF") (pintype "passive") (tstamp b3a9e1fe-f71a-479a-bc41-fb6f0a9f7c25)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp 77a5cf9b-3c8f-41dc-ac64-5818fe0b91b7) + (at 95.29 78.74) + (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor") + (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/aca917d9-776d-4afb-82cc-63883a39f6a1") + (attr through_hole) + (fp_text reference "C6" (at -0.04 -2.286) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a2339edd-2e2c-476d-9c1f-5e2008a41025) + ) + (fp_text value "100nF" (at 3.77 -2.286) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a2b386d9-992b-474b-9d77-828ba4ba5828) + ) + (fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 61872c71-ba98-44fb-9af8-f84d3488d665) + ) + (fp_line (start -1.12 -1.37) (end -1.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 008f6ca6-2e70-4bb0-bd14-ed3d7103283f)) + (fp_line (start 6.12 -1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 1b05ce81-fc60-4baa-983f-e16cb25bcd3f)) + (fp_line (start -1.12 -1.37) (end 6.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 3fc69a53-52fe-44f3-9204-58c616b2f3ee)) + (fp_line (start -1.12 1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 6bab3d59-7a60-44ee-90e2-9b6c4a3167b9)) + (fp_line (start -1.25 -1.5) (end -1.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 26f9f3c6-9c8e-42f9-8baa-ecf5b1443618)) + (fp_line (start 6.25 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 72624703-5c87-4800-9ef1-120388916f99)) + (fp_line (start 6.25 1.5) (end 6.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp b17db67d-3c57-4f69-847f-c440526f7985)) + (fp_line (start -1.25 1.5) (end 6.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d22e11eb-e118-4d10-8955-0dd3da40bc45)) + (fp_line (start -1 -1.25) (end -1 1.25) (layer "F.Fab") (width 0.1) (tstamp 0ccd2784-6f97-4d7b-a47d-8a2c6c176972)) + (fp_line (start 6 1.25) (end 6 -1.25) (layer "F.Fab") (width 0.1) (tstamp 64d5128f-c3e5-4d22-930f-a946a4b74700)) + (fp_line (start 6 -1.25) (end -1 -1.25) (layer "F.Fab") (width 0.1) (tstamp 71142a6d-7e6f-460e-ab5a-add0da5038c8)) + (fp_line (start -1 1.25) (end 6 1.25) (layer "F.Fab") (width 0.1) (tstamp be071c15-f8bc-484a-995e-e1aea52411ce)) + (pad "1" thru_hole circle (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 6 "+5V") (pintype "passive") (tstamp 992cd74b-1939-43b5-bb84-4cfbea1b8e50)) + (pad "2" thru_hole circle (at 5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp 3c5cf582-ddc0-4bed-91e1-2186d0c31b54)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp 7dee8844-eb29-4005-a053-66d8b8169e04) + (at 107.315 84.328) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/ba9dae14-ba14-4c2e-aa68-5878b7a59304") + (attr through_hole) + (fp_text reference "R2" (at 2.54 -1.778) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0994a116-4d68-4edc-ae3a-5ea2b8ff12f0) + ) + (fp_text value "100k" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ba9684ea-336b-4557-a0b8-ce94ab7579ec) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 6666d33d-a39e-4d6b-9cab-ea59cdefc98c) + ) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 12bf0593-882f-4fca-b593-1480d724dbe7)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 4c311b48-b901-4813-b8d4-18fdf4b70fcd)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 720d1fe8-4e67-41e4-a177-932762262eed)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 78b946c6-739c-4e4b-a3a2-f9486440fda1)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 91e0af6d-1d83-4249-8b23-fed9f1219f97)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp f859aaa2-7383-427a-8413-9041b3f9b2f3)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2ba07ffd-109e-4ae0-8b38-6eefae0956a6)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp bf603aa1-705f-43b1-bc8e-94f337d621b8)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp e1a08da4-3e6a-4e6c-bfc3-8f1d74bffb26)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp f1bebced-8a4f-4b73-bbf4-5469f9519e2f)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 10ab330c-a237-43a6-9b3f-0cd146ebdc04)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 6e45ad21-51af-472e-a8cc-9dfc57054ab1)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 6ffa2140-0f2e-449e-a3ac-bce57bd8faf3)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 976de9cd-ee75-4493-b747-928b2b5945f2)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp cff71eb0-b50c-40b6-bea0-b9a3aa024f62)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp f31aeb25-09c9-4ff9-8810-4e280952927d)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 1 "Net-(C1-Pad1)") (pintype "passive") (tstamp 1ce81580-1b1c-4ae3-b631-c612779a51ab)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 18 "Net-(R2-Pad2)") (pintype "passive") (tstamp e241b644-402f-4b98-babc-bb3e96394fff)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp 7f25c6dd-2bd2-4dba-b030-ccbee8cc0425) + (at 199.880225 48.766) + (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x02 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/20f7c671-f9ce-45b7-9a7b-97ed319952e7") + (attr through_hole) + (fp_text reference "J1" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eede83fb-79ae-440f-8c26-1b9e04426d7b) + ) + (fp_text value "Jack-DC" (at 0 4.87) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c97c8594-59b1-40e4-a276-c4f75cf43ad6) + ) + (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 05de7513-b1d2-4a9f-bbfc-f6ec7a15548a) + ) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 2064e202-11a6-46d1-bf37-cd65212e53d1)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 2f651a60-23e0-480f-a88d-8ba77b595202)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 72b2fb27-87a7-406a-a197-16c942eb3a82)) + (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 8e42d985-43bb-4962-a58d-4f2f73b8d90c)) + (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp be803e6c-5d74-44e0-84fc-9cefbad67bc4)) + (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp eafd0eea-ffe5-464b-8dfe-135159de6594)) + (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5aea0481-62b8-4733-9e3a-067aa0473ada)) + (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 68caf007-71f5-40ff-8296-c907b4922fba)) + (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp c504d8af-5a1f-489d-b53e-05734e316e49)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c6165119-e301-4a1d-81a4-5b8296a84df4)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 171c5510-0ea6-46cf-9852-c5fd8109ccb9)) + (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 2c5e4cc0-7f1e-442b-ab4a-95c8d799e6f7)) + (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 6fe73f15-5d69-4a4e-893e-03eb09e9b7d7)) + (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp b2d96a4c-5e16-4cc9-8201-a123e59684d2)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp b65562a7-b195-4a5a-ae25-47f9b054e265)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp 9d0a9958-db67-4fa2-a63a-2635acbcaff5)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 14 "Net-(D1-Pad2)") (pintype "passive") (tstamp 35a9e1c4-0805-4a40-866f-dd4376fe3b77)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp 801f8900-a5f5-4216-9420-01c275b068f0) + (at 109.347 92.456) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/35f8b1cf-d587-4336-a64a-a2980024e9bd") + (attr through_hole) + (fp_text reference "R1" (at 3.81 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b752a674-b27e-41b7-9b15-235ed2917d2a) + ) + (fp_text value "1M" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 209c88b4-f848-43ac-8ebf-1a28c419bee8) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp b5fbd55e-4174-4a69-a65a-a317c6b4d852) + ) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 07252027-06ac-49e0-99e6-209579ab3f88)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 66396222-b826-4b01-a788-112083c61d52)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 89dc52c4-4726-4239-8c4d-51d4dff25419)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp c5310ca0-5a39-4875-a5f8-05d105847caa)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp f11836dc-56d1-457d-ba80-29f05352c5a1)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp fb7f74a0-ae91-4793-9bba-9af953a390d1)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 36dee750-45a3-4a6b-ad19-6990338a2679)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 472a7ea1-a90d-4f78-a460-eee44bb50cae)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp da22895f-d30f-4837-a4d3-5e03354cd6e1)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp e9593dd2-f3ad-4427-b153-d98718f8c944)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 0c6308e6-b315-4296-ba93-844a34f8030a)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 3403ea9d-a69f-438b-8705-03b8365da70e)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 71a41f20-47f4-4838-81a6-c4aa5f4a93e2)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 86dc0ebf-2e4f-4860-b675-caf4d515af1b)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp d53d035d-4075-4341-bcc5-68171d64d59c)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp e1b4f7a1-5df5-4078-9427-c541a2684dcf)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 2 "Net-(C1-Pad2)") (pintype "passive") (tstamp ee570f83-5647-4f56-bb4a-7bbb662bffaf)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp 42d79e9a-2240-4419-af7e-19bb8bf5830e)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp 98fe22bc-709d-4d3a-8873-4932cf5e0728) + (at 92.772112 114.554 180) + (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/14c45caf-2ca5-4676-9993-7894f0246edd") + (attr through_hole) + (fp_text reference "C3" (at 5.142112 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ae4eb49a-b4ea-4428-a564-6e464fd000d3) + ) + (fp_text value "100uF" (at 1.25 3.75) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 5ff96a8e-b404-4d4b-aef3-4d0e3ecb453f) + ) + (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 71a2dfdf-4446-4940-b7a7-d1f78f704127) + ) + (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp 0066a7e9-740d-4979-9323-d7bdb43fd3ea)) + (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 007dedb7-93f3-4c2c-9be5-3f9f2bf1a822)) + (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 055bdf6c-8cc3-4825-bfa6-d4d011a61b81)) + (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 09a11f24-5bd2-4c74-8b2a-d8da168e22ba)) + (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0bc0a6c2-c975-4b15-ac71-9d1b6a059e02)) + (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0bcf5d75-8ae4-48da-8d28-451020f9030c)) + (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0c922188-5bf1-4230-b776-cf951d7a58b3)) + (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp 0cf558aa-1c79-4925-8ed9-ad30743a35b2)) + (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0d2ebbcf-e664-4983-b2b0-f971628c31bd)) + (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0ee99f2b-d856-4ddb-b949-0a1ac63b5108)) + (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 106f28d8-c60e-4a4c-803b-1f23a55b798b)) + (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 143e4690-8521-46ab-9d4c-af076101bd3b)) + (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp 166e12a5-d744-401f-ab92-2e94647a83ca)) + (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 173e0aa7-b2fd-4522-a0d8-d9538d85dfbf)) + (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp 1978c758-5dd0-4786-8a8e-70efc098ff2b)) + (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 19ce5174-8d79-4283-b3ad-f7b9f9eee3fe)) + (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1bac9c75-2b81-4655-a80f-743a95bd456c)) + (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1bc8967d-f2ac-442d-905d-660ea8f68fdf)) + (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 1bd1564c-81bc-4a2b-8cb6-c8766ae6514a)) + (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1c12e258-fe3b-458e-be66-2152e22bb6bc)) + (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 1c222caf-bc87-4e30-b714-6db8bdfffc40)) + (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1d1a0762-bf31-4111-a033-66fb82b96b6f)) + (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 1de7d69f-a910-4281-b9db-78b5f5c42db1)) + (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 1e521df9-76f4-4ed1-9c70-13338b4d1c3f)) + (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 1e7a2d1e-551a-48cb-b179-ae0ba0c688c4)) + (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 23edb3a2-2d08-4485-b611-b410514de126)) + (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 255f06c0-469c-4dd1-99ca-852d1b77aa09)) + (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2884b291-e42a-4f0a-9198-7ab8b40fe41a)) + (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 28ec46a0-a150-4e2c-937d-ca7ef4c29955)) + (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2af6e0c9-21c5-48a4-afd7-587c45983047)) + (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2e37981f-1f29-46e9-b23e-31d82b1d963d)) + (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 30f6c7c3-641c-4be5-82af-c97096963dd1)) + (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 31734e90-4a97-4808-b5f1-62bb29c95467)) + (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 3387302f-ab29-4c74-83e4-26210a06f63c)) + (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 34f89d32-181f-4839-97f4-3267d9970a0f)) + (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 3ae4cb2a-52da-424f-bc31-defcfe97640d)) + (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp 3b8e7aca-3832-48b9-bf7e-2fd976ed8ce6)) + (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3bc8340e-b4e8-472d-ab3a-317d18df9a32)) + (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 41d867be-02b1-4e8b-a43e-e18957b917a9)) + (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 46804efb-3158-4a51-8395-23308e0597bf)) + (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 48a1bca9-1a4e-42f6-958c-821ae46819c8)) + (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4aa30728-50ef-46bc-8ed3-fede054bffaf)) + (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4f7dccf8-2433-4876-9a50-803c8819423b)) + (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 5077015b-8e4a-49e8-9828-b85f7cd84b50)) + (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 51be1cd3-6818-44b6-991b-afb04d881433)) + (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 52ecc8cb-95a0-41fd-aecf-9a1c676da1cb)) + (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5c2c25a1-939f-44c0-89ca-75dca5f284dd)) + (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 5e69289b-8fb8-404e-a9a1-aa096bf05ed2)) + (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 64d2f608-93c9-4579-a10a-43c775f690e3)) + (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 659f4f31-5ab0-4938-a9a4-78e685040f2a)) + (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 67b487f0-5199-4563-93d2-3768e9df63d0)) + (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6b29c05f-95cc-40e6-bb90-636a59698ee1)) + (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6b3b2d24-9dda-4234-8856-f1896b7742a1)) + (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 6e1489a0-d0d2-4d4e-b714-bd2dd6a41a70)) + (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 72efb878-71c2-4f12-8db7-e4051d23253c)) + (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7828558c-887d-4682-933a-815188539e0c)) + (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 785aee8f-d298-41c1-b8d0-cc3c4749ab70)) + (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 7c33db0d-15d2-4b01-8e9e-3c450bfef772)) + (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8257232f-5404-4be4-9d0f-988051cca007)) + (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 8551163a-97a0-4c50-8f37-da5b6e0f54f0)) + (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 867cc9d6-b629-44a9-a939-2c6f3ec0ee59)) + (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 8a7f9800-1696-43b7-aff6-6134ad58f597)) + (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 8ef3d599-a2cc-488c-ae32-14d29534990f)) + (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 988b6c62-5c53-4d2b-bf6a-4f60ebe7a677)) + (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp 9929b275-3433-4f37-86c8-3118afe4dda5)) + (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 992a7a93-e753-4c7e-8f1f-5c83d6019139)) + (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9970a4e4-9b9b-4952-bbc2-df5ebabc853a)) + (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp 9b1e736d-42cc-4502-ba2a-764fb88d7221)) + (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9cb2d0c4-f93b-4982-9b8b-d868998ee380)) + (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp 9da84c40-49cd-46f1-bbf3-cd095d084e46)) + (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 9eff8ae6-0193-472a-9b66-46773062dc99)) + (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp a0402fc9-7266-4ec0-bc26-ecd8a62325c5)) + (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a118885d-8358-493a-afad-bc80b38b10dd)) + (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp a1348c74-01af-445f-9740-354d9762009b)) + (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp a1edb1f0-3ec6-4892-8059-21f0a0d45d9d)) + (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp a6b391a3-952c-45af-874e-1f7f9dc4b644)) + (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp a776e414-9046-42a3-a7a7-5139c42ce5c9)) + (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a877a5f3-dd69-4f3d-9a92-5458558de6e0)) + (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a9bcb1ea-0adb-457d-977f-1eb95764dc86)) + (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp acfc5e16-1696-4e54-811d-3eb77aca8734)) + (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ae265014-976b-4e01-a8a4-c1f801feb95f)) + (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp ae37fea0-0522-43d0-936d-6fc915e44acf)) + (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp af58de03-d505-4606-b77f-292ce8984004)) + (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b4b04194-7dc2-49a5-909f-1789c78de5ee)) + (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp b76968aa-0b36-4596-a201-4d2834cecfec)) + (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b84ffd7e-97cb-4e5b-9370-a4e1fbf35adf)) + (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp baad08c7-56ab-439d-833c-77eaa9b26615)) + (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp be32fce5-e4c1-4477-91c6-a5dc910159e1)) + (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp bf16e2d9-be98-400a-818b-6eab42dacfe9)) + (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp bf7504fd-43a6-45d8-a78e-5aecae590f83)) + (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp bf85182b-339a-404e-aa48-5bd73aa81483)) + (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp c115e7db-5c9b-4aa3-9e0e-4f39610f2a8a)) + (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp c39dfd21-eaac-48d7-9936-52bbbb40ebe2)) + (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c51adb2b-5d85-4b63-a718-063640b78248)) + (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp c568a17e-d700-4bcb-ac86-36cc0c21ddb1)) + (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp c895ee4b-5eff-476c-9baf-1d7693bb0490)) + (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp d175d98f-7129-4229-8126-91569165cd6b)) + (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d41c0358-ed3d-4d77-84d2-05ca90f2e1fd)) + (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d7599c6f-c1f2-4358-9fa7-448d9a928fb8)) + (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp dbe020bd-e4f5-4704-a1fd-cdba27a295bd)) + (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp dc2f8ea0-d325-443b-b87c-33339f9efcac)) + (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e1395f05-905f-404b-82b0-f088ce7d906a)) + (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp e14b7c9a-2b76-4e1f-b6c3-1ad0d4e18760)) + (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e1efc897-2433-463e-9f7f-94a264317c26)) + (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp e3e34885-7347-4f6f-87f5-4ad1bd21b23b)) + (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp e407e1ba-dba7-4929-978d-02e5cb99020f)) + (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e4c2cc14-8006-4ee6-b2ad-3c8c6ecb003d)) + (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e8c25efa-5f65-4dcf-aec0-eaa17b7cf964)) + (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e946171d-3ca1-4c38-ad11-25a331e3fe61)) + (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp ea32cdb4-d4ab-419b-9c74-2e7d9874baa8)) + (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ebb53e79-7506-4cd6-b335-18740d1a7f45)) + (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp ece526d0-274d-4a1e-8072-e06facb58c49)) + (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ef6af48b-457f-4371-8488-756052e5f3be)) + (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f304433d-ca32-4f40-922a-842b207702f5)) + (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f52329f2-434d-4a19-b86a-17e0b769c6e4)) + (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp f66cc2d1-f731-4bd1-944b-cfe55a8b03fc)) + (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fa1e5823-3b3e-43e5-9e6a-e0ff03309cda)) + (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp fbe5a0c2-e1a9-4944-bfbb-fe363beeedba)) + (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp fd3653f2-3fc2-4d7e-a445-dbeddc880382)) + (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp fd3e665e-4faf-4888-87b3-84b7f58127b7)) + (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 907f1282-9295-45f3-81bf-fc91e9e1e18f)) + (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 86b593a7-a7ce-4f0a-9cb7-969d38a16cfa)) + (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 3920dd2e-6714-4a95-a5b9-43f806299b9d)) + (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp d813b05e-a286-4b7c-b38c-9ed1b7c2490e)) + (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 1016d0cc-ce0b-478b-b245-ebf9b5d49a8f)) + (pad "1" thru_hole rect (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 3 "+9V") (pintype "passive") (tstamp bea4d0dd-493f-4e53-a857-cb6656982b9a)) + (pad "2" thru_hole circle (at 2.5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp 24d2be95-fe57-4aaf-a6bb-ae5f4893dbb3)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" + (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") + (tedit 59FED5CC) (tstamp 9c77e549-bc3d-407e-a17f-1f44a0465725) + (at 174.720225 66.876) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/43757849-b532-4d70-9abd-eff55e4b1df4") + (attr through_hole) + (fp_text reference "RV2" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d4cb373f-4a61-4889-9d40-64766f5c5da2) + ) + (fp_text value "10k" (at 0 7.41) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 731f883a-04ad-422c-997a-fce5c5bb4a4c) + ) + (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 628f1940-65d5-4902-9080-fb611951eb1d) + ) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 046ffd00-5d98-45b5-96ca-bd917531fbb0)) + (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 0578cc41-b7c1-4ade-903c-57e26acbfe27)) + (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 7e5b56b6-870a-4142-bf22-4849392efa83)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 837590ef-8bd0-4229-b80a-bb0e479a4548)) + (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp d8c674a4-0e15-4f14-8afc-3fe5709d5bde)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp e7553e25-6ccf-4665-b03c-8b4049aeec3e)) + (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 5c52001a-44b6-4827-8867-9a065693af27)) + (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp a4982281-cb2e-4e67-b187-3dc42a2269fa)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp c6366de0-d034-4744-8fcf-fe9160c0c045)) + (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp e1d40d67-d033-4daa-9d46-bc21ebcd0402)) + (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 3603f7c6-f204-4b31-8651-80749e01b988)) + (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 45014f2d-7e45-46c0-ab1b-ce64554cd6e8)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 53c4cf9d-b999-4420-8e07-0c308fdb7fa1)) + (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 8394cc2a-4982-4b6d-bfbd-3eb8dbfbd67c)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp dca14449-15cb-4e80-b2c9-26807b3e9ea5)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 6 "+5V") (pinfunction "1") (pintype "passive") (tstamp 905b3988-1065-47f7-9e70-74a2a9c6887f)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 25 "Net-(RV2-Pad2)") (pinfunction "2") (pintype "passive") (tstamp 4ee6b2e3-5c0a-42f0-970f-1a4d4d30771c)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "3") (pintype "passive") (tstamp 9efd5519-036a-4603-acc8-a9aaf6b168a5)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp 9fbc55db-5490-45d8-9fd5-08ea3e28ba8f) + (at 90.932 78.296888 -90) + (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/c47362ce-ad1a-4f8a-a4d2-857430559736") + (attr through_hole) + (fp_text reference "C11" (at -2.350888 0 180) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f672c58a-b429-4da8-b745-6b8c0d30d0b2) + ) + (fp_text value "47uF" (at 5.015112 0 180) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0510799c-d2a4-4680-81d2-423534f8dda4) + ) + (fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a75b3d87-3fab-4b00-9434-1a26cf886c5e) + ) + (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 070e5d32-b58a-42e3-bb4c-bc52677ffa35)) + (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp 09f55431-babc-4fb3-99a3-79783973c5a5)) + (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp 0b1dd781-9b87-4ed3-ab39-d501ec9722d1)) + (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0daeec1b-79c9-4f56-a2a3-b3e465388139)) + (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 14190108-3256-48c0-98e6-b888dc7c85a3)) + (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 163d6f63-0587-4afb-89a5-7b550b6f827f)) + (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp 22aa5a32-d812-4c4a-84da-867f7db24149)) + (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2836094b-aa44-479e-9a51-7f48718f0dbb)) + (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 2976c54c-e78b-4b88-8563-7a15be7332f1)) + (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 2ba24c6d-388c-4e3b-8762-a11a62dcda68)) + (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 2d79eec9-61ab-41e5-9726-045de1a269bc)) + (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 2dbd88b6-dc26-4fb4-a4be-97ce7d2f3452)) + (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp 335776fc-a8e6-4ba4-9e05-297c0dda9e05)) + (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 399f1a63-c5b8-4a02-8366-bafe5748e70e)) + (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 3aab6872-919b-48b9-ac84-fad819a76822)) + (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 3bf28e3d-2695-483f-9398-550e1a2e750a)) + (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 3c62d3b6-7c4a-4fb8-80e4-233438c45f29)) + (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 3ca7ece3-0aaf-4b40-af69-a8115001eb49)) + (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 42ead6c8-c715-41f8-bee3-9ed67435355e)) + (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 47e4a59c-0d0b-400d-9d13-041e7fd61536)) + (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 483c471a-9441-4eae-bda1-202ac6c7fbd5)) + (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4b240496-6b7c-4b73-a5ea-9a2f4c85f0eb)) + (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4bcfffbd-a1eb-45a3-897e-186698e02ebb)) + (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d1c5f2a-967c-492a-b7ff-8079b1fb3ec3)) + (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4e24a3f6-24c9-4482-b66e-2efdf6a97b83)) + (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp 516d2515-bde6-4f52-af72-736d7e463efa)) + (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp 536a1ea1-e317-4327-80a5-9b34b873bdc1)) + (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 543b05b9-21c6-460d-b50a-dbe347e6df4c)) + (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp 55b9e27d-2f99-4b2b-942e-dd9b421aab0b)) + (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 581bbb37-0fa6-419c-8bc9-ea0a7734f6c4)) + (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 586ee0c7-e4df-4fea-97eb-8ff9232d34ab)) + (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 5c6c5091-2322-43db-83f4-68d14db83ffc)) + (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 5dcb187b-7e65-4194-8743-c808e0f65c41)) + (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5f1e0377-88d5-4bcb-8159-cd5e98e98a95)) + (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 60d5bcc4-0c68-494b-bde1-646a55408f8f)) + (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 61a6bef7-7fb8-43f3-bae7-200ca4536a59)) + (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp 61be2b70-681f-46ce-8f64-3440b9b4eaad)) + (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 63d08f29-8185-4670-bfac-de0d082e6b3a)) + (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 69dc4fa7-c080-43fc-9ca5-2b8ce6641bbe)) + (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 6a4aaca2-967f-4de6-b4ef-b9ea2ed437fc)) + (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 6b2e33b8-2429-4614-a3b7-281966d090e0)) + (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 6f3f6547-0fe9-48da-a33c-dbf04cfbbeb7)) + (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 70109a60-e771-4f2a-8b8a-7393ae7b29cc)) + (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7193e484-59a7-4a04-8624-86468e85307e)) + (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 719a671b-3af2-4a84-9089-ff456c510a52)) + (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 73e324eb-8065-4675-8f01-4889093e5763)) + (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 74a45de6-b07b-4dda-af13-68608c70a8e8)) + (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 75ddbd9e-df6b-4aec-947c-384ed909c693)) + (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 7ad501d8-3998-4ea0-8c33-ae3aa5f5709c)) + (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7de55cd2-46f3-4de0-888e-ef99ef9b3a75)) + (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7f12cbea-6a9a-46fe-a3ec-2b65940fa7d4)) + (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7f2168a5-613c-46b0-89cf-0dad400481ae)) + (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 7fa9b8c8-e1ef-498a-9686-24633b8a0ed6)) + (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 81b56a55-5771-423c-9c1c-863621ab1118)) + (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8312d39a-9462-4149-aabb-2498eb62ef87)) + (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 86dd4b91-cc19-4c3e-9153-68403485d88b)) + (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 86ff8c21-6554-4177-ac6a-44944a16b397)) + (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp 880fdbd7-35aa-497b-8168-d99bcc294552)) + (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 8883061c-c1db-4f7e-a37e-797a62518de3)) + (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8aa266ed-e34e-4d17-a40f-5e719d00bf2f)) + (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 8adb39b7-e725-447a-97d4-fb7005b84066)) + (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp 9033a021-fb90-4557-a8be-8ec179d1093e)) + (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 90f9c8ad-c3c2-4a3e-ba4c-9d26bac67b79)) + (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp 931dd8eb-0aae-4536-9946-60b595817bf5)) + (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 98755520-3460-4768-bc9f-ddabd5c4675d)) + (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 99b165a2-b3a2-49d8-af9d-a665e38aa181)) + (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9b14d04a-c100-4215-bd88-8f59757360d0)) + (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9ca442cd-90d2-4614-a189-49b093e2448f)) + (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 9d26ef0f-b7e7-4b4a-95cc-d11292e06406)) + (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 9e82f5df-adce-4c60-b30d-617362a66c97)) + (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp a053c6fa-5d93-4d77-abf6-60de6d77a2b1)) + (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp a140ef24-c982-4e5d-80f0-6dbefe5368e6)) + (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a4259b7d-6ebe-4b37-a766-7dac40b3c370)) + (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a59492ea-8619-4ab8-af9e-3cf1d0cf97a0)) + (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp a7e6fb35-ac1f-46a3-98a8-e4a020c8da8c)) + (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a85343c8-6bd7-4d4b-b532-d80dba0c6a78)) + (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp a9f68bb6-495a-4520-8d88-d0b635904966)) + (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp aab4ac9c-19d5-4bdc-beed-7be755cd87a2)) + (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp aabb9553-512d-408c-aa49-571ebb19e0e7)) + (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp acbbe3f0-4e1f-4952-b9bb-4cd1e11e4872)) + (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp aceb02eb-26fd-4ac8-af06-58b1b3abc7aa)) + (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ad611a81-9dc9-4fd6-aded-822eb7e62fb4)) + (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp add95478-8848-4184-8a9a-9e6f262f62be)) + (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp ae68413d-34dd-4d31-8c1d-7e9e7411e5ca)) + (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp b1c04f17-3e85-41c2-ae52-4437fc01c206)) + (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b724b907-1489-4d22-a901-34e0e68b071d)) + (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp b9f5109d-196a-40f4-99b1-06e32ee56be0)) + (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bc0e3c2a-a1c7-4b6d-9d11-28620000a0ff)) + (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp beaae471-e34f-46d3-9e19-7f27c1281502)) + (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bf675b45-d81e-4b4b-b680-9314f240cfbc)) + (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp c16a9c0b-2247-4b13-a17a-730a2bb033b1)) + (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c31e70db-a337-4610-85e1-eb696de9c196)) + (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c3aad298-2a60-4727-903e-c5051401874d)) + (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c5f88183-568f-4d35-9bcc-9e7b0c82e529)) + (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c72ce567-1be6-4d0d-b8f9-3ccbe4ee43ec)) + (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp ca3c3e5d-7b9e-4b86-8dcb-0721bba7a104)) + (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d155048d-cfc3-4598-b7ba-170d4113adaf)) + (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp d2a54939-4396-4317-93a6-bb6a5d53c9b3)) + (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp d2dc5d1b-c8fb-49c3-8798-d38db8f7b008)) + (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d3390629-9b5c-4494-abb4-c184616f22bd)) + (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp d4004661-28b7-40b9-85cb-aa221803e569)) + (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d54f7ca2-d0a9-4429-ae27-555ea7ac9e18)) + (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp d5e4d0e7-52b0-467b-9e15-bf38c95e0471)) + (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp d62d5752-692e-43f3-8714-f83788269e6c)) + (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp d6c18703-337a-4816-85aa-ecfc7dee6715)) + (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp d7d45151-2b5b-4700-8595-7c811fcd836a)) + (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d82b6297-4c42-404a-88c2-bc56dbd85236)) + (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp da345378-03ba-4c38-b4a0-bb03d01b10fd)) + (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp daba3fd5-837f-4602-b67a-9b03f5a0be14)) + (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dde7b08d-aa72-439e-8217-88192bde03de)) + (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp e314a2ea-5227-4cb3-b6f8-3493ef564bff)) + (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp e98ba503-1515-432e-a623-dfd4b04ed666)) + (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e9c0df31-3cf0-4a58-9552-06378729a684)) + (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp eafb611f-a701-48b5-93da-7c541351d13d)) + (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ebf55f9a-09d5-418c-86ad-e843dab6fcaf)) + (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f04386bc-e6de-4107-8c96-e7c447dea5c4)) + (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f59bb802-3557-4eb3-bb75-c5cb111f5a2a)) + (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f76f07bd-4825-4b1b-94b1-38cbed0fc4d9)) + (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f8415580-020f-408a-a55e-f293899d178e)) + (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp ffbf103f-11ec-490b-9723-2e7d758f7eb4)) + (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 72d4278e-ae44-4c4e-b5ff-259e2d57dac0)) + (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 2f2fc486-0a0c-4add-96b6-dc553a5b91bf)) + (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 93a0149b-5380-4420-a8f9-e39ee7260d66)) + (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 9c9d419c-b975-412a-8bc5-488d17b0b817)) + (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp cf4e3c5b-03c5-4012-b1b6-011d17487ebc)) + (pad "1" thru_hole rect (at 0 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 6 "+5V") (pintype "passive") (tstamp ede091ff-4980-4295-82ca-c76933ea81f3)) + (pad "2" thru_hole circle (at 2.5 0 270) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp d4753a18-45e6-48cb-82e9-0a9b84095b95)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" + (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") + (tedit 59FED5CC) (tstamp a15b416c-01ef-427b-8db0-f5862addef22) + (at 183.680225 54.726) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/05e6021f-96e5-415b-8bf8-d37fbab0152a") + (attr through_hole) + (fp_text reference "RV4" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d4df53a4-69da-4453-b49b-215f62130f10) + ) + (fp_text value "50k LOG" (at 0 7.41) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a43b1940-18e3-4384-ba90-171437611f8f) + ) + (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 60238e3e-6bd9-4371-99da-9d416504458e) + ) + (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 03c40f1d-2ac7-4bfb-8720-d7599b4d4c69)) + (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 16579cbd-be07-412b-9772-2313bc4986a5)) + (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 1aa8d951-fe8e-4d6d-b4b1-74eda4dde559)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5f0141cc-9cf3-4670-a817-89a494e1cecc)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 9d9bc7ad-7d5b-4953-9601-837cdcf04d1c)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp a29e0839-ea6a-461f-9521-280220d0a02f)) + (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 1c46d95b-6e65-4538-beaf-c69ab0281a72)) + (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 21a2e357-9ad7-4e55-9783-020864723576)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7853d0de-59d8-4dac-aa22-9ef2ec96d6e8)) + (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp a7acf408-22c3-4595-bc3e-d678f1b68bb5)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 1c5c7e2f-94b3-4b5e-b4ad-c0a6563fc67e)) + (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 33ea8dc4-877d-4756-9eec-56ecc269d0d6)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 692e3a4a-972f-4c31-922d-e8f03a21b1e1)) + (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 7a57a81e-00c3-44e8-ad57-0ab96be3cdc7)) + (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp c866e365-6de6-426f-afc0-0b2635c862ac)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 12 "Net-(C13-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 2d414f70-a810-4b20-9372-8aff4205524e)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 27 "Net-(J3-PadT)") (pinfunction "2") (pintype "passive") (tstamp 32e61bfc-d546-4722-ac49-cbb99c79a789)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "3") (pintype "passive") (tstamp e80d91a4-7b13-44db-905d-9aa42f5f4c19)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp a4f64921-f3d5-4c46-878a-337a6c787dd8) + (at 85.598 89.408) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/abdba8ff-70b1-4b5d-b32e-fb4f4f4b356e") + (attr through_hole) + (fp_text reference "R10" (at -2.54 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp bb5b1234-5a4f-460f-82ff-647cca039209) + ) + (fp_text value "10k" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8eaf2ba4-939f-48d1-bd6c-73873ccf5ec9) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 23f7c4b9-b044-4936-9e74-e88336bdb924) + ) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 220f7e85-6438-4a49-93f9-9a424ce6d462)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 2811397c-157d-4053-9557-4b432b969d49)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 33800183-c8ef-4899-81e3-5fe030f895bb)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 49f469ff-85ca-4c94-bd56-0720482a53e3)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 54af0c93-be2f-4c9e-8c06-f045e73eb08a)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp f705d83d-e13b-45e5-8be9-49966e2b0cb3)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 1fbbb8bc-61cb-4b8f-9db0-65c383bb8485)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 3aadc47e-7247-4bf7-b1ae-22a205e87830)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 94048edb-4fbe-4c79-a9b5-99aefbf2f370)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp ddf331ef-0852-4c89-b71f-19d224a4f993)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 1e3188d4-d4ed-4480-aa85-a56fcf75861b)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 337e8ace-587c-4801-b73a-4faa81856def)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 37d172b4-94bf-4b7b-ad0c-3dd624eac7a7)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 73242ff0-5675-48ca-92ba-26fdb248b218)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9be02139-a718-46a9-9127-4ae38e8deb32)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp a2185ccc-cc39-4a73-8d24-a49e8fc88fe9)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 6 "+5V") (pintype "passive") (tstamp 571b696b-aab6-4045-9a37-9352ae1819ff)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 21 "Net-(R10-Pad2)") (pintype "passive") (tstamp d726e862-d97e-4144-b8b1-b91665ca4784)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_TO_SOT_THT:TO-92L_Inline_Wide" (layer "F.Cu") + (tedit 5A11996A) (tstamp a6b515fd-b694-4124-b49f-f92bd679b10c) + (at 95.758 103.124) + (descr "TO-92L leads in-line (large body variant of TO-92), also known as TO-226, wide, drill 0.75mm (see https://www.diodes.com/assets/Package-Files/TO92L.pdf and http://www.ti.com/lit/an/snoa059/snoa059.pdf)") + (tags "TO-92L Inline Wide transistor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/5c3fbc86-b745-4733-8ef5-b40aa9974c3c") + (attr through_hole) + (fp_text reference "Q1" (at 2.54 -3.56) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 14b21cfe-6fe2-4ee1-9681-3b244e699b0e) + ) + (fp_text value "2N4401" (at 2.54 2.79) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3ecd5e71-045c-45dd-959d-3e97c8e33089) + ) + (fp_text user "${REFERENCE}" (at 2.54 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c5c5c032-e127-4fa8-a41a-e56835647d83) + ) + (fp_line (start 0.6 1.7) (end 4.45 1.7) (layer "F.SilkS") (width 0.12) (tstamp 8faa557b-b359-464d-8084-12e64110f939)) + (fp_arc (start 2.54 -2.6) (mid 3.936979 -2.192818) (end 4.8964 -1.098807) (layer "F.SilkS") (width 0.12) (tstamp 0804e938-ad61-40c0-a804-2ce216de69d1)) + (fp_arc (start 0.6 1.7) (mid 0.389183 1.423933) (end 0.217369 1.122045) (layer "F.SilkS") (width 0.12) (tstamp 72409533-989c-4762-99b7-6b85e4e4754b)) + (fp_arc (start 4.842383 1.112264) (mid 4.666594 1.419753) (end 4.45 1.7) (layer "F.SilkS") (width 0.12) (tstamp 9d5ae7d6-a5a9-4716-84cc-3538df528ff9)) + (fp_arc (start 0.1836 -1.098807) (mid 1.143021 -2.192817) (end 2.54 -2.6) (layer "F.SilkS") (width 0.12) (tstamp f73d206d-2330-46c4-820d-c3b09f846ac8)) + (fp_line (start 6.1 1.85) (end -1 1.85) (layer "F.CrtYd") (width 0.05) (tstamp 79b5200a-3c4c-4f7b-a09f-0bfcea5ef439)) + (fp_line (start 6.1 1.85) (end 6.1 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp 9bd9e38a-68dd-40c1-b9a0-8d739580dc6b)) + (fp_line (start -1 -2.75) (end 6.1 -2.75) (layer "F.CrtYd") (width 0.05) (tstamp dc0eeaf9-5345-4d45-b56a-0e74a68b5cf7)) + (fp_line (start -1 -2.75) (end -1 1.85) (layer "F.CrtYd") (width 0.05) (tstamp dff82fbe-ee79-44c3-8e77-55b4b643c5a8)) + (fp_line (start 0.65 1.6) (end 4.4 1.6) (layer "F.Fab") (width 0.1) (tstamp 8005277a-3098-436a-a68c-33764df7e8f7)) + (fp_arc (start 2.54 -2.48) (mid 4.787211 -1.049019) (end 4.441103 1.592547) (layer "F.Fab") (width 0.1) (tstamp 79d38655-5f57-4e31-9bf8-3941bda59ecc)) + (fp_arc (start 0.647182 1.602385) (mid 0.290076 -1.043188) (end 2.54 -2.48) (layer "F.Fab") (width 0.1) (tstamp a824e723-c965-41fa-b4e2-adc2e13edd96)) + (pad "1" thru_hole rect (at 0 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "E") (pintype "passive") (tstamp 9f1a06df-af64-464d-8e41-f0fa11c764fd)) + (pad "2" thru_hole circle (at 2.54 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask) + (net 17 "Net-(Q1-Pad2)") (pinfunction "B") (pintype "passive") (tstamp bdf4f03c-8a24-4f78-8989-d168dece00c3)) + (pad "3" thru_hole circle (at 5.08 0) (size 1.5 1.5) (drill 0.8) (layers *.Cu *.Mask) + (net 16 "Net-(D3-Pad1)") (pinfunction "C") (pintype "passive") (tstamp 59cc1d2f-efa6-47ee-a723-6abd4cf20956)) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-92L_Inline_Wide.wrl" + (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") + (tedit 59FED5CC) (tstamp bbec1ed8-2df2-49e9-a459-b93fb2c94f3a) + (at 158.920225 76.716) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/0730adea-81a1-4a16-b234-8593e2de6ad4") + (attr through_hole) + (fp_text reference "RV3" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 094c773e-635b-45e6-9707-3e50d9d77da5) + ) + (fp_text value "10k" (at 0 7.41) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp b43c4d34-4429-42f2-b562-da7f1bca685e) + ) + (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0d48d793-d9e6-4535-b43d-b19a9cfaf0a8) + ) + (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 2f7cbc3a-2f90-4063-8f08-adf52871196d)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 6b210527-4628-4b35-bcc0-57c051da3023)) + (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 85e198ab-d20e-4abb-8b5a-0d97bb3da8ed)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 97c2e2b6-bb7d-4221-8351-85bcee8b7626)) + (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 9d94d3c1-5246-4e2f-b30b-526435ffb16c)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp cfa9ca81-e166-49c3-8ece-ea2d2f4b969d)) + (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 1d1628e0-13e3-40f8-9e72-fadcd6eb77cd)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 78a573e1-9ddd-4227-b014-3c138f45f799)) + (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp b9f0366b-46c1-4a4f-9c49-7e9d79cea7ed)) + (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp db11d02d-4f8f-40cf-8047-3f93fb9645f9)) + (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 1a1cd54e-557d-4ce8-a934-7e5cad7d2b43)) + (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 232997e6-1106-4d1e-88e8-7838e5446dec)) + (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp 252382df-08a7-4b0b-8609-1072db1e998e)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5209ee21-b9bc-43e7-98b8-8512844c4760)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp fc4dda32-407c-4d4d-9a1f-4ea9d8c1149a)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 6 "+5V") (pinfunction "1") (pintype "passive") (tstamp f1777ff1-42b8-432f-a12f-b835dfa74a35)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 26 "Net-(RV3-Pad2)") (pinfunction "2") (pintype "passive") (tstamp bd5d7f63-34bf-4bb3-b1c4-4c89e26a6f21)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "3") (pintype "passive") (tstamp f32414ec-8db5-499f-a295-d07be7ef7cc8)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp bd56567c-7522-4330-b9c4-a8f0065bc56a) + (at 126.619 105.664) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/a75d8798-8e4c-4d92-ae26-3ecaae523cf2") + (attr through_hole) + (fp_text reference "R9" (at 3.81 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp a5b47ad0-6730-4ee7-8a9a-92d2f37af3f0) + ) + (fp_text value "1k" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f9f59f58-cdfc-40a0-abf9-04a60eeed383) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 099b1d33-c774-459b-b985-bbc672c953d9) + ) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 675c385a-eba3-49c3-b668-44b8b5ec7659)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 67796374-175e-428b-884b-2ce8f60cb07e)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 71e730e5-6e07-4211-808c-ecb875de5a55)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp b5f645b0-7eda-4ce3-8982-1dc09909e92b)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp d7ad208d-7fd0-4b54-827a-ebe9f1328d1f)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp e45507fc-b281-4add-a52f-c018e3c1c146)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 2203daf9-cd4d-4236-a356-a5e1851852e4)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 728b2a4e-fb69-4497-b10f-92821ceb0fd7)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 86c154d1-a93e-47a0-adeb-82ad48cddb06)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp d0e71996-2bcc-4361-9d11-9474c9eec1ec)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 52bbf4e8-a9fe-423b-834b-5b7b5b59f998)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 860026d3-3656-40bc-a191-b95e5d1ffb3f)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 8836a068-d74f-431e-a1e5-f8eb4b124eae)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 8ac242d8-da35-4359-8a50-9442258964ab)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp b49cfbb2-73f6-4070-a8b7-dfb64c4820af)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp c420f986-f163-43d5-9e3f-e80e0f8c86b1)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 20 "Net-(R9-Pad1)") (pintype "passive") (tstamp bc328c71-dfb7-4730-a717-5e44731c5ef6)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 5 "/VREF") (pintype "passive") (tstamp 7a1d41d5-40a3-47cf-8084-1ca6aec90e70)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp bf118d68-f8be-4bb1-b3b7-6b82e2590c12) + (at 179.370225 68.476) + (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x02 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/049e1e3e-c904-4ddc-9991-66aa46751da7") + (attr through_hole) + (fp_text reference "SW2" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 2668c6d7-38a5-44cb-a0c9-8b4480cf9c58) + ) + (fp_text value "SW_Push" (at 0 4.87) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8bfe0179-645e-484d-8f52-4c876a96ba53) + ) + (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f5c896f1-ced2-4d3d-9587-216ca8e0d2e9) + ) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 40533609-053f-49b9-840a-d23d763aa231)) + (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 61d9b81b-8499-4933-91ed-7a8972810007)) + (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp a273aabd-9b0c-4eb2-9ce1-0a72077650f3)) + (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp d0578794-9996-4221-8748-14a950ac4714)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp d1dadecb-afff-4773-9ad8-6b4e7a3d3d40)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ff77e396-086f-4672-b860-8f0c74d04600)) + (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 7a334fe5-4c38-499d-a952-8af4828095e3)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 7e8c5677-965c-4752-b014-cabbc48db39e)) + (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 97b72635-d769-41b5-be10-7466ea4805c9)) + (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp fa9b23a5-b594-4ac7-8506-4998f1437cb6)) + (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 21abaf01-59ce-489b-ba58-2406d95a0e9b)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 5ae2ad8b-5b9a-4f0a-9ba8-60e853cebaed)) + (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 719cc8d2-94b3-4afa-83d0-53e920aa57bb)) + (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 9ea17126-4fc6-43a9-a2ae-4762c243c395)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp a8e742a3-3691-4ded-903d-26b96a651bb8)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 31 "Net-(SW2-Pad1)") (pinfunction "1") (pintype "passive") (tstamp 41fe6786-b6dd-4246-aa90-35123881d4e9)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "2") (pintype "passive") (tstamp cfa01562-09d4-4979-8f4a-30a1bc839813)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp c124feb2-fd68-47c0-8449-e77f5ec2c83f) + (at 107.315 81.788) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/32f77ed2-d2d8-4498-b1c5-1a45c90ea279") + (attr through_hole) + (fp_text reference "R6" (at 3.81 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 33606acc-3abc-4c7b-a17f-3101183617c7) + ) + (fp_text value "330k" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f57ad819-ccc9-4ec6-b8da-ab357f75618f) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp e7ef6ab2-35e1-469b-9d03-1d9f4274cfe5) + ) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 00cc4a54-e8fd-49e0-88d8-83b84abeeb9b)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 27b6d6de-2871-43ee-a31a-7e967bd77124)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 657115a9-f9a3-486c-9bd6-db095554fe5d)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 6c831069-2dc0-45f1-b7ae-529b82e6bc04)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp b96ecb72-43ee-4d6b-8b90-d5622ef0b20d)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp c839a9b5-5f07-4c3b-8403-d1477d36874a)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 0190626a-aaf6-4918-bada-cbfa199c94c4)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 7feac326-bf7e-4bf1-be49-e9239e11999c)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp d897a3f2-5a37-44ab-b0e1-156820f6c404)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp ea699d5d-18e1-4b3b-b25a-971d32e2e1c2)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 12bbac17-964f-4eff-8e1b-8b39a5c3015e)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 1800db70-b8e0-4682-af1b-658a3480d604)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 694b1b1b-5631-4912-8f97-199a3c60f57e)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 6d4ed10a-e755-4254-ae6e-93bc6b9cfad2)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9dc57386-bd37-48c8-9a85-4bd45f75c9db)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp bd3f3acc-c092-475d-8f80-843974e74de3)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 18 "Net-(R2-Pad2)") (pintype "passive") (tstamp f8b62275-7409-402d-93e4-c23d3ec79a85)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 8 "Net-(C7-Pad2)") (pintype "passive") (tstamp c9abc670-f50e-41a7-b0c8-f35a108eed71)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Package_TO_SOT_THT:TO-220-3_Vertical" (layer "F.Cu") + (tedit 5AC8BA0D) (tstamp d246b720-0b90-496e-9a97-54995820586e) + (at 86.289 83.312 90) + (descr "TO-220-3, Vertical, RM 2.54mm, see https://www.vishay.com/docs/66542/to-220-1.pdf") + (tags "TO-220-3 Vertical RM 2.54mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/172d14e9-0ed1-4942-9b95-1fe8560ad343") + (attr through_hole) + (fp_text reference "U3" (at 2.54 -4.27 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c45eb376-20e5-4c55-bbf1-6fb107c08d1c) + ) + (fp_text value "L7805" (at 2.286 -2.215 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 0f5efc4a-2193-49d0-a32c-333b0d7cd545) + ) + (fp_text user "${REFERENCE}" (at 2.54 -4.27 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp e3f943c6-6ff7-40e0-b0d6-7f23ce596a65) + ) + (fp_line (start 7.66 -3.27) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp 153a91b1-4ee0-44bd-814e-7bf2ce10885e)) + (fp_line (start -2.58 -1.76) (end 7.66 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 6117cdd0-e954-44ae-9cb6-01b213233995)) + (fp_line (start 4.391 -3.27) (end 4.391 -1.76) (layer "F.SilkS") (width 0.12) (tstamp 9a3dec6c-1ff7-4f04-98b4-bff75dbe2572)) + (fp_line (start -2.58 -3.27) (end 7.66 -3.27) (layer "F.SilkS") (width 0.12) (tstamp a7f300e1-fc8e-4028-ae64-5761dab80d60)) + (fp_line (start -2.58 -3.27) (end -2.58 1.371) (layer "F.SilkS") (width 0.12) (tstamp b7256dee-230d-4653-bad5-866a3ef6aa44)) + (fp_line (start -2.58 1.371) (end 7.66 1.371) (layer "F.SilkS") (width 0.12) (tstamp d432040b-8383-421c-8988-1e75af44816f)) + (fp_line (start 0.69 -3.27) (end 0.69 -1.76) (layer "F.SilkS") (width 0.12) (tstamp d827eb64-5eba-4fb8-9ba8-5ab2f257178d)) + (fp_line (start -2.71 1.51) (end 7.79 1.51) (layer "F.CrtYd") (width 0.05) (tstamp 28797dd3-5c25-40ea-9029-91b4bdf67bc8)) + (fp_line (start 7.79 1.51) (end 7.79 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp 54c9786b-e027-4747-b6ba-e746fd413369)) + (fp_line (start -2.71 -3.4) (end -2.71 1.51) (layer "F.CrtYd") (width 0.05) (tstamp 6510d628-3a53-4637-9090-dc42eae8a831)) + (fp_line (start 7.79 -3.4) (end -2.71 -3.4) (layer "F.CrtYd") (width 0.05) (tstamp dbe3ed1d-1e50-4ccd-ba3e-6e66d24024b4)) + (fp_line (start -2.46 -1.88) (end 7.54 -1.88) (layer "F.Fab") (width 0.1) (tstamp 1485f998-b07f-4385-8f35-cac19f2827b9)) + (fp_line (start 4.39 -3.15) (end 4.39 -1.88) (layer "F.Fab") (width 0.1) (tstamp 1d74d1d3-c636-43f6-9e92-a099b64d79d2)) + (fp_line (start 0.69 -3.15) (end 0.69 -1.88) (layer "F.Fab") (width 0.1) (tstamp 27960f40-5523-4d9a-9b35-a2a588774088)) + (fp_line (start -2.46 -3.15) (end -2.46 1.25) (layer "F.Fab") (width 0.1) (tstamp 58166378-73e4-4c77-abf1-b61da426c963)) + (fp_line (start 7.54 -3.15) (end -2.46 -3.15) (layer "F.Fab") (width 0.1) (tstamp 8d70567f-fa10-4f36-8aa4-04c7db84f38d)) + (fp_line (start -2.46 1.25) (end 7.54 1.25) (layer "F.Fab") (width 0.1) (tstamp c36d42bb-f6d0-4a15-a7e7-5c52ea0ca4d7)) + (fp_line (start 7.54 1.25) (end 7.54 -3.15) (layer "F.Fab") (width 0.1) (tstamp e7b90fe2-fc82-474f-adcc-72b4ac352978)) + (pad "1" thru_hole rect (at 0 0 90) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask) + (net 3 "+9V") (pinfunction "IN") (pintype "power_in") (tstamp aca88371-8623-494a-85ed-589c0d33a9d7)) + (pad "2" thru_hole oval (at 2.54 0 90) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "GND") (pintype "power_in") (tstamp 3d3313ad-6a20-4384-bffd-05005e1b35b6)) + (pad "3" thru_hole oval (at 5.08 0 90) (size 1.905 2) (drill 1.1) (layers *.Cu *.Mask) + (net 6 "+5V") (pinfunction "OUT") (pintype "power_out") (tstamp 71a9e027-e72a-477f-a569-f96298187ca1)) + (model "${KICAD6_3DMODEL_DIR}/Package_TO_SOT_THT.3dshapes/TO-220-3_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp d72ae8db-9df9-4072-b04c-8e65a1eedddc) + (at 127.953888 78.867) + (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/f7973c04-ae62-4ef8-8cdd-d5f31bb871f4") + (attr through_hole) + (fp_text reference "C13" (at 1.25 -3.75) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6349601a-3c16-49a3-9c53-44ba3301fa17) + ) + (fp_text value "1uF" (at 1.25 3.75) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp f825a345-2000-4949-8639-88e21cee3136) + ) + (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 56a9f435-f761-42ac-8950-6154f907bd07) + ) + (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 017a969a-6ebb-4686-8014-fad700760334)) + (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 04a00f3e-bcb2-4205-bbb6-60ba9f3c34b9)) + (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 06d8a115-7d5f-43b2-b721-7159bac9d07c)) + (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 08dd6da0-c217-4004-9c30-418056df4779)) + (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0a5a24cc-5f1c-4972-8a5c-e5a20bf458fe)) + (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0a9d52bd-4852-44a8-82f7-f0b2e974bf90)) + (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0cec9aea-5e9e-42b3-9348-b79e2a266dee)) + (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0df3eb9b-f85a-4f47-bc38-1c0dda1c466c)) + (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 0e0df4ca-022d-40e8-8814-98d128a379cb)) + (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 10aa9548-60fb-463f-8532-bfce956a1aad)) + (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 10eb842a-5cf0-4a31-be1b-bf336e97c7b6)) + (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 11ff99ea-53df-4a32-b849-29dd5bf6eafb)) + (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 132a293d-17e0-408d-a959-abc7411de4c4)) + (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 13fbcbdd-d9c5-49e3-8af0-04265a9a3c38)) + (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 165dbdf7-91b5-42e7-a9b5-bcd4e9cdc449)) + (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 19e56409-6545-4869-a2eb-ae344658e85d)) + (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 1cad4829-fedc-48f6-9f51-5b49d611f0da)) + (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 1fb3f6bd-66d7-4a74-a144-ae01112ff895)) + (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1fc7efb8-669f-4775-8d9e-28c3b782dfa0)) + (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1fec22bb-491f-4c89-ab1b-e19ae618bace)) + (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 23bd23ad-4624-4636-9d15-787a66ae40e1)) + (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2894b4b1-f44d-46a1-a92b-682ecd25eb21)) + (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2a00fcfc-f42f-435c-8453-fe9ac99fedcf)) + (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 2b25aa7f-6fcb-4f4e-aec0-330829383461)) + (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 2df0b480-c781-438a-ac58-d9dab2c7bcd2)) + (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 35e3e9e2-2e12-4a76-ba87-10955cd7f171)) + (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 39896e95-d5b7-4b2d-91fb-a97d46123782)) + (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 403312e0-b0fc-46d4-848e-a907f9d5b2eb)) + (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 50a71b10-b143-4c19-9603-60027a42589c)) + (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 52bb5c54-e446-4593-a3cc-ab3b0830f0e5)) + (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp 55217687-f3a4-4082-a9d8-61b1af93736b)) + (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 553e24b0-1f0f-4465-87f9-ce6a78aa2f8b)) + (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 55ff67f7-c63a-4fb5-9ed9-0276fd761b12)) + (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5b71ba90-f29a-4f4b-8d8a-49ab39b045ae)) + (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5bed6eeb-d7c4-4d04-aff2-87e56af49424)) + (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp 5c7f2f26-1872-4e61-8f38-905126451931)) + (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp 5d8df555-2da7-48bd-ac3e-b38106d615bf)) + (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 5ffffbd6-ac2b-45d2-95a7-5f1bdc330c04)) + (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 60fc1c33-e3a0-4018-a337-57fe6f4e78b2)) + (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6289f835-83b0-4a7e-8015-b3082879c109)) + (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 62d4e682-94b8-45d0-8e63-a198dc7635b2)) + (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 643458f0-d042-47ea-96e1-c53ac5c2a826)) + (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 64c0ed78-bf17-4598-a4c3-9256eea9b44a)) + (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 671bc4eb-3164-4a6a-8d69-f69cc83b19da)) + (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 6d0ab47c-31d0-41af-af87-72b310f1652a)) + (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 70407af4-f0dd-46d0-8a75-1a79701d2135)) + (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 70b1d244-a4b4-4769-bf56-5589643bbed7)) + (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 728baa22-287f-4959-807b-ac57d1d8b67b)) + (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 73e8e895-c9bc-4a22-b8ec-38860f261cff)) + (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 75e3c25f-813a-4449-9c13-a9673ad28de6)) + (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp 76036a72-ad77-4f78-b006-392ee0b7831e)) + (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 776e66a8-e591-44d1-90bc-eb44b994f088)) + (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 78c24dc1-6743-421c-b77c-2fe33b473e4c)) + (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp 78f2d61c-84e2-42b7-af84-ceb7ffe412d7)) + (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 7ede8f89-b447-4299-abd6-df436d88c0a9)) + (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 814ad782-092c-4b85-ad98-9be6f5431b90)) + (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 814cfd4c-5a67-4f1d-b92b-7f5c4776b13d)) + (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8152b30a-ba67-412e-aa94-76e0f3e2b1c8)) + (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 826528c1-1a7f-4e4d-89ed-c849d5e906e4)) + (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 82f33847-5620-4941-b353-3868994451d0)) + (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 83209ab1-46ce-44f3-ae48-4ef756d67e35)) + (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 8403a6c3-b2ba-4335-9d09-ef50be1585e5)) + (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 851661a0-84a0-4c39-aff6-592f3b4edb9a)) + (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp 85831c3d-6e3b-423e-b2f9-deb00483806d)) + (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 86f5e6e5-23f3-4c8e-ab3c-6efd0a8da70a)) + (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp 8af003ce-f83a-4a00-b07a-677f23d384be)) + (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 8b82fb03-e0e1-478e-a934-1ed71b680e01)) + (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 90fb1a13-846e-46d7-9240-28f871628381)) + (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 956f2f51-2321-41b3-8535-0f5468575a9e)) + (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 9a25473d-5868-4707-b081-2deb819e5794)) + (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 9fbb6057-a8b8-4be8-a652-5708b305a328)) + (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp a037353d-d246-403a-8bcd-cdb511de2f8c)) + (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a073f6ae-4add-4d1e-a29a-b1ba04ad4c77)) + (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp a25f08da-163d-4d49-ab74-017e99d1903e)) + (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp a388f71c-b3bb-480a-9e9f-bf8561e57b68)) + (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a3f3c969-160a-45eb-b1b4-c1d309f7fcfe)) + (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp a6aea586-fa7f-410e-b933-25e3766c3410)) + (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp a9a751bd-7c65-4095-9e42-f665535dba2e)) + (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp ab4b9d47-0936-4388-8152-ce1dbdbd3839)) + (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ada58538-73ec-489f-b9cf-7cd2dd6af165)) + (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp af37e14c-b4e7-4578-ad1d-807130019fa8)) + (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp b00b3f89-5c5d-46b5-afa2-7a55e245664f)) + (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b1b8f231-b641-4333-a874-5a31efdaa582)) + (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp b969f974-4fb5-44e5-8020-72502d0f034c)) + (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp babae067-688b-4a93-952a-0ac88bce6ae0)) + (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp baf18278-d51c-443e-9972-c8c9ba5d7493)) + (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp bc075142-71c4-419d-8eae-e49434bcd95f)) + (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp be41c131-91e8-4aec-927f-bb28382d5848)) + (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bf8b6280-e36d-490c-9ca8-5c227a126813)) + (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp c09fd7f1-a334-4ec4-a220-e985605306ee)) + (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp c3e8c56b-cbda-416b-abf4-be98f3850b80)) + (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c4f4a549-e6f5-496a-9563-4a841ee07124)) + (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp c76b9070-f0b2-4d10-8191-46e929f8f433)) + (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp c7780180-ed39-465b-b4f2-f403f2fe9dea)) + (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp cdd95c62-3cea-4fd5-b6f0-3b6b9ac672f2)) + (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ce110008-cdeb-427d-bfc4-dcd0e33a6945)) + (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp cec45124-c224-49d5-95c6-062097c2302c)) + (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp d02d9e55-b1b0-4493-99e6-acc29a76a7ae)) + (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp d3bac476-fed5-4b43-9fe3-e9c0b3352e92)) + (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d4ec1f91-d46c-477e-8058-9652008afc58)) + (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp d6356ce7-06c9-48c7-9d63-32bfae9c62e5)) + (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp d9974485-27a7-4a5b-8212-d6d6a76806c7)) + (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp db747edd-718f-4f20-a4d6-9c83e51dfd55)) + (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp dcc63e41-7a7c-4c52-ba38-f7110bb55e13)) + (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp dfd2f74c-df43-4fe0-bc3e-0b88f2e9cb22)) + (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp e00859b8-20fb-47f3-80aa-68a67bfcd82a)) + (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp e2759511-811d-43af-b323-dabdab27c032)) + (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e50c3882-1458-4578-b6a8-9d82b8a466e2)) + (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp e723e9bf-71e9-41ab-8d07-1a9d87117e4d)) + (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e7be84d2-ce88-4ba0-a02f-73ed986f4835)) + (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp eb776799-1bfe-4fa7-a1d7-db0ca285476c)) + (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp eeb9756f-b822-4940-b48f-2002898caff3)) + (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f1a716ce-ad17-4854-8fce-093eee9628c0)) + (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp f3bc82f5-5346-4619-b5e6-3e9e047408d5)) + (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f562549e-0917-481f-b622-a70420df2541)) + (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp f8309a4b-29b7-4617-afe5-c966a72fe855)) + (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f90ee054-7411-4f02-a1a4-afa7c4a5b372)) + (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp fe67815a-82ee-4289-972d-0b18c7f1725b)) + (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ff2bdbb5-a12d-435c-b35b-55ddaa72a977)) + (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp ff780e79-7d7c-406f-bd6f-2a5c3936e3e8)) + (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 411cad6c-1f1b-4cea-aedb-ed19b513cd72)) + (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 511b6a3a-1c8a-4bae-86ae-5ac68978671e)) + (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp 25e8ebdf-c948-4a65-977c-ec55547f9ca9)) + (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp b71d1072-ae2d-49ad-8cc4-6755a10b9d34)) + (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp 26634530-22c2-4841-9bb9-39f7818f537f)) + (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 12 "Net-(C13-Pad1)") (pintype "passive") (tstamp 00403462-7687-4c9b-ac64-8e35fee06550)) + (pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 13 "Net-(C13-Pad2)") (pintype "passive") (tstamp 2e89db2b-cd67-4cdf-87aa-3e161a187690)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp dd3aeaf3-855e-4aec-9f5d-6a2135460538) + (at 128.207888 94.869) + (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/cafe7d40-c316-4f68-8f05-8f4fa2790967") + (attr through_hole) + (fp_text reference "C12" (at 1.25 -3.75) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 23e0511b-eae7-484c-82df-ca84c12fb6a2) + ) + (fp_text value "1uF" (at 1.25 3.75) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp c0f6f2b4-0d61-4a61-828f-24fa7bbec8f7) + ) + (fp_text user "${REFERENCE}" (at 1.25 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 58e47519-8f90-4e14-a396-3dd7c15bfb36) + ) + (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 010e4de9-a55a-4adb-942d-8d12603f67d8)) + (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp 0433233d-4805-48da-bc2d-6604d00cd666)) + (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 07367c31-4734-4073-8ef2-3ccadddfa0ab)) + (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 08bfa616-fe36-4649-b7f6-295acbf03c7d)) + (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0ba4a0b7-79ac-4929-b13f-46ba4c492b68)) + (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 10f5d427-ea39-4c0a-ba5d-b8056dc22140)) + (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 13715874-de3e-4989-85ee-1819141fb4a8)) + (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 17178243-b447-4a3b-a56d-c9e1b393a1f6)) + (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 172121e0-32ee-465f-925d-2b20b7974859)) + (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 19b3a6c2-bd8d-439f-a012-fd2ec45ebc5e)) + (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1d83402d-d3a9-461e-9fbf-0b28758d39d6)) + (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 1e53588d-0f72-497d-b1dc-dfb2329eeb47)) + (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1e782d70-1703-4d01-bb98-8a71974c66f6)) + (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp 2146507f-1ce1-4211-b5e6-818dc0e58bc9)) + (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp 23cb0754-8e03-4012-ba61-007473511e5a)) + (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 24dedb31-0009-497f-8e86-a8461ae7f007)) + (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp 25d3ff1d-c44a-4420-8e9c-050df8693eb1)) + (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp 27296ef3-be64-4716-9627-3ba40faca72c)) + (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp 2735cfd2-165c-45fc-9b04-7ec5543b2163)) + (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp 2b8815e0-1adb-443e-868b-1ec60eca55db)) + (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 2c1318da-2b3a-47cf-b57d-33ddc99b17a3)) + (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 2fe907e6-293e-4d60-b30f-1178bdf03579)) + (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 32e3ca30-4eca-44ef-941e-f3f6b3516882)) + (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 339b01d2-bcfd-4eb8-a6bd-9d366aa7cf8e)) + (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 34d1acd9-1bda-444d-8cb1-fe262ebe38a8)) + (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3751f9a7-5c11-4ab1-9e70-665d6c0bc6ab)) + (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 39395e6a-5b3d-494f-b7f8-217a7fa5295e)) + (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3959c7f8-9e71-48d3-80ae-a8d6e72ce4f2)) + (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 39de02e0-3e89-4b41-9a6a-5ee3a810b119)) + (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3bd7ff13-7446-4f5d-8d15-fdb3b4b18598)) + (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3fcc46fa-be5e-49d3-b22f-059250e947d7)) + (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp 43a15abc-59db-4ba2-a4c1-a0734fa792f5)) + (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 455589a2-78b4-413e-bdfb-69dec58363ae)) + (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 46022869-9d4b-45dd-b127-51ad22283dec)) + (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 46239a4f-fbf0-4817-8bb1-16f1c09e7ae6)) + (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 46e5fd42-6a7a-49f4-91bd-c58159e7c925)) + (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 471df956-f167-4629-81cc-24a805d6fc97)) + (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp 4768331f-da24-46f7-88b6-5aec3bda1ecc)) + (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp 47a2438b-9b43-4da0-99f7-4cae1aff7e0d)) + (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 47a6651e-f425-4f7a-9502-36b237842647)) + (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 48181262-263e-4a4a-b419-db2b7f6e6b6c)) + (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp 4843e2e9-45f8-47c9-b136-80f3db86800c)) + (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp 49cbca2f-19fa-434e-93d3-2fdc019c761e)) + (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp 4b8416cb-1438-4c09-b3a9-4ce42f13f2b0)) + (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4cbf9665-cfff-4a14-858f-2b8857902944)) + (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 4e36bee2-986b-418c-a8cc-7db565aa9699)) + (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4e8b8c7b-3494-4b98-94fc-b24608211867)) + (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 530e8dca-5483-4175-be20-1a09d044f984)) + (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 53ec9950-af2c-478c-85aa-9fa7242ff27c)) + (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp 57fcf6d6-f783-4b60-b0fd-e0d466fd0d11)) + (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 5bc3beed-1b41-4143-879c-5ca9c94b1e63)) + (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 5eb5b00b-c36c-4253-b050-526a0e9e66f7)) + (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 648ac16b-9a76-4bd7-a663-a540c11def69)) + (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 64def72a-29ab-4577-9bcb-96a02171081b)) + (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 676a32e8-0ef8-4a93-b0a1-14fd387a25cc)) + (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 679f5032-9c45-45a4-93d9-7913f1c01f09)) + (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 685a9003-827a-44b8-bf95-6a475a0c46a3)) + (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6cc6c20a-58fa-4b25-b218-7eba11658274)) + (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp 6daf7c59-8f30-40c0-8911-0ce85614a347)) + (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6ddd9e79-3c48-40e8-9c7a-107eb3df61a8)) + (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp 6e5a6b06-eadb-4c90-b05c-f95332cc4927)) + (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 71291006-1d87-4389-ac89-5a695a014951)) + (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 759cc334-153e-4264-94c4-6fee644e2cd1)) + (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 78a592ce-e752-4fa0-8283-ad1df65707b4)) + (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 793ecb55-c0ce-45cd-b91b-6d80809b17de)) + (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 81d69f8c-4fc6-4c1a-8299-30c6d3266855)) + (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 82d82ddf-64a7-4b34-bace-d452b05a2557)) + (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp 84fb8e86-ce0d-4c0e-9104-978204bcc3f3)) + (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 862cb8fb-93fb-403c-b8d3-4a45fbbe0b8c)) + (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 87a96cf7-674a-46c6-9291-e2e7321f3b85)) + (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 8a4f3bf9-a6ce-40fb-8aee-1d9198b17f35)) + (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp 8b63e8ea-5329-4f05-8328-44f729aa4703)) + (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp 8ce3b04c-1268-4d78-83db-560a4a3fb824)) + (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 8d48fd36-ff00-490c-a194-2f13ea583db2)) + (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8ecfe30a-8f20-4cbc-97ae-19d421284cbb)) + (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 8f6c400e-10e8-4ce0-8e2b-07472e4f8ab4)) + (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 90a8d5a1-407e-4fda-a680-0a52efce47a3)) + (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 9262b32a-6556-49aa-9d5f-9f0281057ef3)) + (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 92fef008-1fef-4fe8-8f87-7a064f0de9f8)) + (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp 93ec7e25-57a3-41dc-ac50-865b0d71b967)) + (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 95436ec4-57b4-4808-8a3c-b52fb5bf7994)) + (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 974b88df-71f0-47a1-9f43-b34250611736)) + (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 9c1f2fd1-e931-4488-8225-18aa8bc9d41b)) + (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 9c5b533c-5517-440e-a471-430f3cb1b56c)) + (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 9e3d945e-424a-41e8-89d1-75b5f5750000)) + (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a1a1378d-ce75-4723-8d1c-5463557ff051)) + (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp a330a68a-7c31-41a3-95da-04a0c2db05d5)) + (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a5f132f3-7d07-498c-8fe5-8b671199cb60)) + (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp a7281fb7-5c55-488b-90a7-b9f60292d667)) + (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a78d7856-6245-47ec-8f15-7b51ddd71f8b)) + (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp af2146fd-6ce3-4727-bd22-a58a5d6fbd97)) + (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp afa7e60c-e8e0-4935-8783-596799bf91fa)) + (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp afdbdffb-932a-451e-980b-438fec3b4892)) + (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp b80fae11-b433-481c-a559-1e5693972257)) + (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp ba3f7d63-e755-4a73-9eb9-18525a81ee3d)) + (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp ba4783a7-ef90-4579-82b9-7e033e166d6f)) + (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bcc29a41-3fb7-4b74-befd-51496a31ad69)) + (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bf7cbf67-8820-4a65-9c23-3255975275ba)) + (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c15782eb-b8fe-4ce4-a100-89d9b5a87aeb)) + (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp c1eba359-c0f8-4f27-beb2-b84e627b57b1)) + (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp cc41e02e-ea2f-4ca0-9c73-89f8e3062b8e)) + (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d1c7579d-8331-4901-8f92-56512208ce2e)) + (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d381ed3b-1bb0-4289-8279-b16bec9869c7)) + (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp d5168efd-4579-4d96-811f-f3e680491b0c)) + (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp d62861b6-578e-45a1-be0c-8618901da5ed)) + (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d9bb3577-2e21-4a67-9a5d-e9fa4a6cb3ac)) + (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp db787cb7-507f-4d45-83b2-82c5712b4b5d)) + (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp df1a4d72-9834-4e7e-8458-504893047af9)) + (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp df9a1c6b-e430-445d-a923-d082e5cab515)) + (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp e00e8262-46c6-439c-96b1-d98f2d807356)) + (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp e1cd42d9-8980-460a-9102-6279cbcff78b)) + (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp e27ecf25-54e2-428e-b2c8-e19df01bb771)) + (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e3f4f9ad-a251-41be-abd6-19fae91257d5)) + (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ec747baf-96fd-4558-9c1b-a06302a6b16a)) + (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ed3be2c7-58a1-40ab-ae96-e0975131da8a)) + (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp edf0ebe9-5596-49bc-ba4f-82da0e5557d3)) + (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f8bb7364-429e-484e-b713-351e3fefdb5f)) + (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f9219649-1dcd-4aaf-be75-57508d68c297)) + (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp fb9bab52-85b8-4f78-a50a-2eb9b7261488)) + (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp fc89a5cd-6e0d-4115-b37b-11c69693823c)) + (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 3a720f35-4195-4ffe-9683-3e764ef84d22)) + (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 6fc676e9-d186-4ec5-bff7-f74efb14fc73)) + (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp 15c755f2-272c-423a-91c2-225495f57ace)) + (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp fac850b9-1d25-4bb1-a26d-98999faf6741)) + (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp d76a82b2-5356-4cb8-bfe6-daa483c62320)) + (pad "1" thru_hole rect (at 0 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 10 "Net-(C12-Pad1)") (pintype "passive") (tstamp 0de8f893-45c1-4339-9bcf-234a48f68377)) + (pad "2" thru_hole circle (at 2.5 0) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 11 "Net-(C12-Pad2)") (pintype "passive") (tstamp bd9d0e05-0378-4a6f-b970-0dcdb7aec031)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp e5844a2b-4e5a-4d85-b66c-391d093d9a55) + (at 103.632 103.124 180) + (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x02 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/3cfe6a7f-8a66-4cb9-9d30-79a2918ce977") + (attr through_hole) + (fp_text reference "D3" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp edca0ba6-e2e8-41d5-99f9-48fcceb34d1a) + ) + (fp_text value "LED_PULSE" (at 0 4.87) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d7eefcf1-4152-42c5-9a13-77a79af31eea) + ) + (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp eceae738-f868-4a27-865f-4f1341621a21) + ) + (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 04d92a38-c0ee-46a7-9bff-dfc25562ae25)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 101b9004-de6a-429a-bd02-539398ea7a21)) + (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp a33a372f-e98e-45f9-aee1-35cfb578ac8c)) + (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp a57f6de9-743d-4ea3-b8e2-8c4602f7a501)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp a8bb4afa-35b0-41db-8d99-8ea42d121830)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp ff2e1d87-114b-4132-93a8-d79306376fee)) + (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 088a5abf-5280-4acd-9be5-182deee4161f)) + (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 25fbefaa-e48c-445c-af72-b50d6e1c164b)) + (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 37344a60-9e86-4df3-9c42-0691a6fe5042)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 487c4890-ae05-4d1e-8757-f717bdd9f770)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp 255f078f-82bf-4233-800e-d2ab34ddc8f2)) + (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 3dc389b4-c3d1-4db3-bee2-3a8f0cdedb7d)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 46668c88-3f06-41f8-b568-1e6389e30b47)) + (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 7d947cab-410d-4c5a-8435-102c12460ceb)) + (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp c011eb92-f949-4fc0-8d41-c50363471dcc)) + (pad "1" thru_hole rect (at 0 0 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 16 "Net-(D3-Pad1)") (pinfunction "K") (pintype "passive") (tstamp c6ef0440-131b-401e-8963-9c8502c56fe6)) + (pad "2" thru_hole oval (at 0 2.54 180) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 6 "+5V") (pinfunction "A") (pintype "passive") (tstamp 9493f840-6e63-4723-aa65-1c73c699cd97)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (layer "F.Cu") + (tedit 59FED5CC) (tstamp e81cfe7f-3741-4103-b0ec-57b3d131555e) + (at 196.880225 58.466) + (descr "Through hole straight pin header, 1x02, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x02 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/e9f20a31-f5b0-448b-bec5-24209555c87d") + (attr through_hole) + (fp_text reference "J3" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3207d9a5-d5f5-4799-8863-a0af0cc4240a) + ) + (fp_text value "AudioJack2" (at 0 4.87) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 8bea7c60-0973-4ef1-b69e-d4e63069d39f) + ) + (fp_text user "${REFERENCE}" (at 0 1.27 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7222796c-3f24-42f8-95ec-33d97cdbe82f) + ) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 1fb32039-a12b-427e-b06a-f0e9a133d6f9)) + (fp_line (start 1.33 1.27) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 4ba23528-30cb-49aa-9f96-de0d953c9c90)) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 64ef6931-b07b-458e-9636-3a1724eb2319)) + (fp_line (start -1.33 1.27) (end -1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 740ec1b0-e90e-4583-b668-950439b0e80c)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 7e6ab295-96cd-4f42-96b2-71b4a71a7366)) + (fp_line (start -1.33 3.87) (end 1.33 3.87) (layer "F.SilkS") (width 0.12) (tstamp 874c767b-d9dd-4c7e-855e-363a6e29321f)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 2ab61216-e31b-4540-b8e8-7261287f8aec)) + (fp_line (start -1.8 -1.8) (end -1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 328d1402-4958-47d2-b0f1-71018e3fb92d)) + (fp_line (start 1.8 4.35) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp 68f8d355-8d91-4cd5-8946-4ff5b53363c9)) + (fp_line (start -1.8 4.35) (end 1.8 4.35) (layer "F.CrtYd") (width 0.05) (tstamp 92f206ba-0b74-4aff-a139-97255e30fd4b)) + (fp_line (start -1.27 3.81) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 210a18c4-d1db-4cca-8cea-4f3641135455)) + (fp_line (start 1.27 -1.27) (end 1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 3f775266-cc7f-49e6-b89d-e69ba5f3895e)) + (fp_line (start 1.27 3.81) (end -1.27 3.81) (layer "F.Fab") (width 0.1) (tstamp 68377e50-69bc-450e-988d-db77ebfcf394)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 74343e9f-cac0-4aec-a43c-c4538e48108c)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp a043b20e-4815-45ef-a4a1-91f8d5a7f42e)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 1e0ba953-460b-4ddb-ba5b-e01c556e61f7)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) (tstamp 9d93c53b-c8ce-4a41-8871-5169db872dd3)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x02_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp ead985a3-ef86-4581-8f98-2afcbbb5ff8d) + (at 109.7788 114.387512 90) + (descr "CP, Radial series, Radial, pin pitch=2.50mm, , diameter=5mm, Electrolytic Capacitor") + (tags "CP Radial series Radial pin pitch 2.50mm diameter 5mm Electrolytic Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/85c0451d-072e-4e38-bbeb-fb726bdf1588") + (attr through_hole) + (fp_text reference "C8" (at 1.25 -3.75 90) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp ef4ffdfe-2c9b-4d56-b112-fe42d6b6f704) + ) + (fp_text value "47uF" (at 1.25 3.75 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp cc4e4a4b-2049-496a-bbfb-200000aa2f3a) + ) + (fp_text user "${REFERENCE}" (at 1.25 0 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 1ee65ff3-19d7-41a4-bb19-7b38fa2752a5) + ) + (fp_line (start 1.73 -2.536) (end 1.73 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 02563a0d-24d6-4e0f-a055-dcde5b97df01)) + (fp_line (start 2.131 -2.428) (end 2.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 026b6b5c-d4c9-4004-a586-e9338d888842)) + (fp_line (start 3.411 -1.443) (end 3.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 033282c8-e154-4f07-8f3b-cd8d603fdf18)) + (fp_line (start 2.171 -2.414) (end 2.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 03f79986-92c2-410c-8aa8-dbaeb54e0394)) + (fp_line (start 2.211 1.04) (end 2.211 2.398) (layer "F.SilkS") (width 0.12) (tstamp 0780814d-dfc8-418c-995f-655c158473ff)) + (fp_line (start 2.331 -2.348) (end 2.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 08381e2a-0e80-4218-98c4-e5d5bfc45979)) + (fp_line (start 3.611 -1.098) (end 3.611 1.098) (layer "F.SilkS") (width 0.12) (tstamp 08c28911-a706-4f25-96ef-010149480d52)) + (fp_line (start 1.89 -2.501) (end 1.89 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 0c998359-2cc6-49f1-9100-ef81c4143a91)) + (fp_line (start 2.531 1.04) (end 2.531 2.247) (layer "F.SilkS") (width 0.12) (tstamp 0dec29e9-afd2-4017-bdd9-65ae6438b7ca)) + (fp_line (start 1.49 1.04) (end 1.49 2.569) (layer "F.SilkS") (width 0.12) (tstamp 0f2cf18b-ac12-4241-9fcc-027b1053468c)) + (fp_line (start 3.291 1.04) (end 3.291 1.605) (layer "F.SilkS") (width 0.12) (tstamp 0f98d23a-76eb-4113-8685-a83a8dbc2642)) + (fp_line (start 2.691 1.04) (end 2.691 2.149) (layer "F.SilkS") (width 0.12) (tstamp 123e1e04-8dc6-4bcd-82f8-b59efdd00d38)) + (fp_line (start 3.811 -0.518) (end 3.811 0.518) (layer "F.SilkS") (width 0.12) (tstamp 1651762a-1deb-4b3f-80d5-eda0c401b482)) + (fp_line (start 3.011 -1.901) (end 3.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 191dd244-9621-4454-95c8-324527ce4c0f)) + (fp_line (start 3.171 1.04) (end 3.171 1.743) (layer "F.SilkS") (width 0.12) (tstamp 1a363f87-d884-498a-a09f-7f25e49f9631)) + (fp_line (start 2.811 -2.065) (end 2.811 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 1c109d1a-c533-4aad-96b2-0b5fb7fefb0d)) + (fp_line (start 2.051 1.04) (end 2.051 2.455) (layer "F.SilkS") (width 0.12) (tstamp 1c8c3197-734e-4b5f-bdac-971cda40a3ba)) + (fp_line (start 1.89 1.04) (end 1.89 2.501) (layer "F.SilkS") (width 0.12) (tstamp 21c8dde1-359d-465c-8e96-fa6fda973003)) + (fp_line (start 1.93 1.04) (end 1.93 2.491) (layer "F.SilkS") (width 0.12) (tstamp 21e21c41-d131-41cf-92c2-5db0b488e77e)) + (fp_line (start 2.851 -2.035) (end 2.851 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 22272888-11c6-4210-843d-607f7be64774)) + (fp_line (start 1.29 -2.58) (end 1.29 2.58) (layer "F.SilkS") (width 0.12) (tstamp 242d256f-f045-4165-b0e3-82b141a5ce8a)) + (fp_line (start 3.491 -1.319) (end 3.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 28a51196-4218-4de6-a92e-9e3e7f9c1f8a)) + (fp_line (start 2.411 -2.31) (end 2.411 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 32313dc1-d724-4b71-8d92-9030c03462a4)) + (fp_line (start 1.53 -2.565) (end 1.53 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 32960417-e3f5-42d9-b2c1-3dc2df6a8e15)) + (fp_line (start 1.61 1.04) (end 1.61 2.556) (layer "F.SilkS") (width 0.12) (tstamp 361ff292-b32d-400f-a3be-cbd312d327b2)) + (fp_line (start 3.491 1.04) (end 3.491 1.319) (layer "F.SilkS") (width 0.12) (tstamp 3a0466e7-fd03-4405-b64b-870c020a6b26)) + (fp_line (start 2.931 1.04) (end 2.931 1.971) (layer "F.SilkS") (width 0.12) (tstamp 3a554c3d-8932-4c1e-bdda-48a0be801bd1)) + (fp_line (start 2.331 1.04) (end 2.331 2.348) (layer "F.SilkS") (width 0.12) (tstamp 3b5d98bd-b98f-4df1-90ba-d49ad05fac8c)) + (fp_line (start 2.491 1.04) (end 2.491 2.268) (layer "F.SilkS") (width 0.12) (tstamp 3cb08055-3d16-42f0-a872-e988a54210e2)) + (fp_line (start 1.971 -2.48) (end 1.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 3d402e06-e5bc-4781-9269-c331d9a2baa4)) + (fp_line (start -1.304775 -1.725) (end -1.304775 -1.225) (layer "F.SilkS") (width 0.12) (tstamp 3de6d6a7-c88c-45c0-9274-0970b22aa090)) + (fp_line (start 2.251 1.04) (end 2.251 2.382) (layer "F.SilkS") (width 0.12) (tstamp 422e26fc-3198-4dff-babd-22573544771d)) + (fp_line (start 1.57 1.04) (end 1.57 2.561) (layer "F.SilkS") (width 0.12) (tstamp 431a3c76-57fc-4bad-9c92-05543daa6f9c)) + (fp_line (start 2.371 1.04) (end 2.371 2.329) (layer "F.SilkS") (width 0.12) (tstamp 435d1cb8-6c38-4e34-89ee-d397bfffcc46)) + (fp_line (start 2.891 -2.004) (end 2.891 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 458c95d1-615e-4f9d-a4c3-75317be5f658)) + (fp_line (start 2.451 1.04) (end 2.451 2.29) (layer "F.SilkS") (width 0.12) (tstamp 46a9a86f-e671-47ae-b4bb-466a9442cde0)) + (fp_line (start 2.651 -2.175) (end 2.651 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4b22340f-d88d-4061-a4aa-79bd8cdfc532)) + (fp_line (start 2.731 -2.122) (end 2.731 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4b6c34fa-b1fb-45f3-a671-d72ce337273b)) + (fp_line (start 1.93 -2.491) (end 1.93 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d27c546-69b8-415d-ad57-797194b34e8d)) + (fp_line (start 3.131 1.04) (end 3.131 1.785) (layer "F.SilkS") (width 0.12) (tstamp 4d578b45-360b-48d7-b257-a5753557fbae)) + (fp_line (start 2.611 -2.2) (end 2.611 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4d83d86f-f8f0-4779-a6c8-c3a72630fd43)) + (fp_line (start 3.851 -0.284) (end 3.851 0.284) (layer "F.SilkS") (width 0.12) (tstamp 4d9ea438-1b92-4adb-988a-7e733947e301)) + (fp_line (start 2.571 -2.224) (end 2.571 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 4e8bb86e-898c-427b-ae68-eec4a7941fd0)) + (fp_line (start 2.251 -2.382) (end 2.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5017e1f8-d2ae-41a3-9da4-7103c814b67e)) + (fp_line (start 3.651 -1.011) (end 3.651 1.011) (layer "F.SilkS") (width 0.12) (tstamp 50469af5-38af-466d-84ab-54717ebc9ef8)) + (fp_line (start 3.051 -1.864) (end 3.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 5056e871-99d9-43eb-906d-5abe79266aae)) + (fp_line (start 2.971 1.04) (end 2.971 1.937) (layer "F.SilkS") (width 0.12) (tstamp 50abc602-6284-447a-b85f-5e494009632d)) + (fp_line (start 3.091 -1.826) (end 3.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 54e308dc-3c0f-4ffb-a960-81104ad37a1f)) + (fp_line (start 1.69 1.04) (end 1.69 2.543) (layer "F.SilkS") (width 0.12) (tstamp 559ef468-233e-401e-ae24-b5096d20cac6)) + (fp_line (start 1.85 1.04) (end 1.85 2.511) (layer "F.SilkS") (width 0.12) (tstamp 55fe2c1a-4c16-4a3a-8802-379f4abc68c5)) + (fp_line (start 1.73 1.04) (end 1.73 2.536) (layer "F.SilkS") (width 0.12) (tstamp 56779582-3459-4668-8043-bdee5f51472b)) + (fp_line (start 2.131 1.04) (end 2.131 2.428) (layer "F.SilkS") (width 0.12) (tstamp 613662dd-6892-426b-a8b3-531d5fccc955)) + (fp_line (start 1.65 1.04) (end 1.65 2.55) (layer "F.SilkS") (width 0.12) (tstamp 635946fe-bbde-4f6a-897b-fdc6c1984258)) + (fp_line (start 3.331 -1.554) (end 3.331 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 648bfcac-dd23-4c73-8d07-b8d87d1d14a1)) + (fp_line (start 3.531 1.04) (end 3.531 1.251) (layer "F.SilkS") (width 0.12) (tstamp 66e5c050-d395-4176-a588-fb2a7a1bba5d)) + (fp_line (start 3.451 1.04) (end 3.451 1.383) (layer "F.SilkS") (width 0.12) (tstamp 68436a53-e454-456a-b552-671611f04900)) + (fp_line (start 3.131 -1.785) (end 3.131 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 69e4a35b-8501-4eb2-9e32-8229389ab3e1)) + (fp_line (start 3.211 -1.699) (end 3.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6bc10602-e8bd-4e57-bc9a-718fdabe768f)) + (fp_line (start 3.571 -1.178) (end 3.571 1.178) (layer "F.SilkS") (width 0.12) (tstamp 6be68c0c-8fc3-4b67-bece-9f51ba607cb0)) + (fp_line (start 1.49 -2.569) (end 1.49 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6c35aba3-69c6-4c39-bd51-ff6e08bb6b9b)) + (fp_line (start 1.53 1.04) (end 1.53 2.565) (layer "F.SilkS") (width 0.12) (tstamp 6cce322d-2f4a-4b08-b03a-18f638ef22a2)) + (fp_line (start 1.81 1.04) (end 1.81 2.52) (layer "F.SilkS") (width 0.12) (tstamp 6ded487d-d025-41c0-9c57-ac2a338d87bb)) + (fp_line (start 1.65 -2.55) (end 1.65 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 6e959f55-7b8a-4262-bfea-6610933bd6df)) + (fp_line (start 3.411 1.04) (end 3.411 1.443) (layer "F.SilkS") (width 0.12) (tstamp 71330db2-2bfc-4f08-9b44-2ea8d294ebb4)) + (fp_line (start 3.011 1.04) (end 3.011 1.901) (layer "F.SilkS") (width 0.12) (tstamp 74ba317a-85ad-440e-b769-867e2ba05900)) + (fp_line (start 3.331 1.04) (end 3.331 1.554) (layer "F.SilkS") (width 0.12) (tstamp 7610efc5-ebf5-4bf7-815c-b7cfba1a6df4)) + (fp_line (start 1.25 -2.58) (end 1.25 2.58) (layer "F.SilkS") (width 0.12) (tstamp 76b7b6da-293f-4e07-93a8-4f76b6ac597c)) + (fp_line (start 3.371 -1.5) (end 3.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 78e52f76-ace8-47a2-9210-968bc2cb0ec6)) + (fp_line (start 1.57 -2.561) (end 1.57 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 808e221e-c76b-4029-90e2-a7dacd5f15e2)) + (fp_line (start 2.851 1.04) (end 2.851 2.035) (layer "F.SilkS") (width 0.12) (tstamp 80a04cac-d0dd-4498-a27c-19404e6a1473)) + (fp_line (start 1.85 -2.511) (end 1.85 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 80b081b8-83aa-43e0-a1b9-7c052996a559)) + (fp_line (start 2.531 -2.247) (end 2.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 80bc5799-bf17-45d1-8e20-cd63fbb9f9f5)) + (fp_line (start 2.571 1.04) (end 2.571 2.224) (layer "F.SilkS") (width 0.12) (tstamp 85551f15-0f33-47d7-86ee-ba0e98f74214)) + (fp_line (start 3.451 -1.383) (end 3.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 899a4213-b876-41f4-9597-7246b70f2d75)) + (fp_line (start 2.811 1.04) (end 2.811 2.065) (layer "F.SilkS") (width 0.12) (tstamp 8a1b7411-5944-45c1-9d82-2ccdf25d3ed9)) + (fp_line (start 1.77 -2.528) (end 1.77 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 8b607a7a-9c94-4b50-8679-3cc6b66e9d9c)) + (fp_line (start 2.091 -2.442) (end 2.091 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 908cb72f-8120-4f1c-9a46-eed2781e803e)) + (fp_line (start 1.69 -2.543) (end 1.69 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 90d4598d-ee99-4042-8eef-c70c60d8f153)) + (fp_line (start 1.61 -2.556) (end 1.61 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 92807f99-3d32-4e6d-92be-3d869869dedd)) + (fp_line (start 2.051 -2.455) (end 2.051 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 943b3ed1-984f-4516-84cd-faf53ca7cb02)) + (fp_line (start 3.251 1.04) (end 3.251 1.653) (layer "F.SilkS") (width 0.12) (tstamp 95d0df45-ded6-4bbf-900b-3a4e9df245f9)) + (fp_line (start 2.771 1.04) (end 2.771 2.095) (layer "F.SilkS") (width 0.12) (tstamp 96cb522f-679e-44d3-9cee-7339c21a6d60)) + (fp_line (start 3.211 1.04) (end 3.211 1.699) (layer "F.SilkS") (width 0.12) (tstamp 972abb8b-a1ab-4a5f-8821-a24d90da4170)) + (fp_line (start 2.691 -2.149) (end 2.691 -1.04) (layer "F.SilkS") (width 0.12) (tstamp 991c7d65-28f9-476c-aacb-06c07e301cb4)) + (fp_line (start 2.211 -2.398) (end 2.211 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a172aa28-ef1a-415f-a9dd-0a552c0843ae)) + (fp_line (start 3.171 -1.743) (end 3.171 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a291093c-6147-4694-aa5e-b9856ed49277)) + (fp_line (start 2.451 -2.29) (end 2.451 -1.04) (layer "F.SilkS") (width 0.12) (tstamp a2c88d56-13ba-4194-bb2a-5a3600accd19)) + (fp_line (start 2.611 1.04) (end 2.611 2.2) (layer "F.SilkS") (width 0.12) (tstamp aa29e7bd-50d9-4533-b61e-a33dfe8b7f6d)) + (fp_line (start 3.771 -0.677) (end 3.771 0.677) (layer "F.SilkS") (width 0.12) (tstamp acd447c9-ba63-41f5-8b38-d452a1847733)) + (fp_line (start 2.411 1.04) (end 2.411 2.31) (layer "F.SilkS") (width 0.12) (tstamp b35b6dba-2626-42de-a4f0-3825b0c7d808)) + (fp_line (start 1.41 -2.576) (end 1.41 2.576) (layer "F.SilkS") (width 0.12) (tstamp b3ae3800-e3cc-411d-aa4c-21d201f8ed19)) + (fp_line (start 3.691 -0.915) (end 3.691 0.915) (layer "F.SilkS") (width 0.12) (tstamp baebd298-dd45-4f9f-9b28-932c5f6872b4)) + (fp_line (start 2.771 -2.095) (end 2.771 -1.04) (layer "F.SilkS") (width 0.12) (tstamp bb4563d4-c376-4320-a9df-b8fd23457b1c)) + (fp_line (start 1.37 -2.578) (end 1.37 2.578) (layer "F.SilkS") (width 0.12) (tstamp bb5b54b4-6ce3-4d69-9ff4-0a56a62b3fbd)) + (fp_line (start 3.731 -0.805) (end 3.731 0.805) (layer "F.SilkS") (width 0.12) (tstamp c1eba4b2-7576-4888-9ba8-24fc9a7ff28f)) + (fp_line (start 1.971 1.04) (end 1.971 2.48) (layer "F.SilkS") (width 0.12) (tstamp c6340368-c1bf-4df1-bec4-391ec11b9819)) + (fp_line (start 2.371 -2.329) (end 2.371 -1.04) (layer "F.SilkS") (width 0.12) (tstamp c8ae8493-b9fc-48d8-bb8e-7bf92d5d98dd)) + (fp_line (start 1.77 1.04) (end 1.77 2.528) (layer "F.SilkS") (width 0.12) (tstamp cbeb6c00-5592-4ffd-9144-fe984b2daa34)) + (fp_line (start 3.371 1.04) (end 3.371 1.5) (layer "F.SilkS") (width 0.12) (tstamp cc0c57d5-922e-4a2e-9e22-081ca6c8e6cf)) + (fp_line (start 3.531 -1.251) (end 3.531 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ce5d6968-14ae-420f-a773-292dba1233c7)) + (fp_line (start 2.291 -2.365) (end 2.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp ce6ac7c6-a3f9-4bc2-93bf-8c6d164b7332)) + (fp_line (start 3.091 1.04) (end 3.091 1.826) (layer "F.SilkS") (width 0.12) (tstamp cfb666cc-14d0-49d8-8ba9-7960c37850cf)) + (fp_line (start 3.291 -1.605) (end 3.291 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d2c22ffb-1b0a-4a95-ac20-5a2a86ea08a1)) + (fp_line (start 3.051 1.04) (end 3.051 1.864) (layer "F.SilkS") (width 0.12) (tstamp d4e5c863-50e9-496b-a937-18a01f7f398b)) + (fp_line (start 2.731 1.04) (end 2.731 2.122) (layer "F.SilkS") (width 0.12) (tstamp d4edcfe9-4886-4538-a467-6bf86afbc841)) + (fp_line (start 2.011 -2.468) (end 2.011 -1.04) (layer "F.SilkS") (width 0.12) (tstamp d97bad62-2c9d-4291-8a06-442e93969ac1)) + (fp_line (start -1.554775 -1.475) (end -1.054775 -1.475) (layer "F.SilkS") (width 0.12) (tstamp d9889431-8968-4fdc-b4d6-c5639728a93e)) + (fp_line (start 2.651 1.04) (end 2.651 2.175) (layer "F.SilkS") (width 0.12) (tstamp dca39685-145a-4de6-b6d9-009e401d672a)) + (fp_line (start 2.891 1.04) (end 2.891 2.004) (layer "F.SilkS") (width 0.12) (tstamp e21f4eaa-49b3-4d80-b1be-1dd95d13b782)) + (fp_line (start 1.45 -2.573) (end 1.45 2.573) (layer "F.SilkS") (width 0.12) (tstamp e7051393-9d2e-4eb1-acc9-42b7655f9382)) + (fp_line (start 2.491 -2.268) (end 2.491 -1.04) (layer "F.SilkS") (width 0.12) (tstamp e9b267c3-1731-4843-8a3a-6559e85766fc)) + (fp_line (start 2.011 1.04) (end 2.011 2.468) (layer "F.SilkS") (width 0.12) (tstamp eb3bc926-e80d-44b3-9765-a80f95b8faef)) + (fp_line (start 2.091 1.04) (end 2.091 2.442) (layer "F.SilkS") (width 0.12) (tstamp eec76c30-ad56-4dcb-ae01-1ee467caf498)) + (fp_line (start 3.251 -1.653) (end 3.251 -1.04) (layer "F.SilkS") (width 0.12) (tstamp efa21103-f138-4563-ba8d-267e0787b6d2)) + (fp_line (start 2.291 1.04) (end 2.291 2.365) (layer "F.SilkS") (width 0.12) (tstamp f1b9662f-975e-4ee8-9f23-7fba2b7622cf)) + (fp_line (start 2.171 1.04) (end 2.171 2.414) (layer "F.SilkS") (width 0.12) (tstamp f6b70f0b-7462-4e28-b687-24433a1ad77c)) + (fp_line (start 2.971 -1.937) (end 2.971 -1.04) (layer "F.SilkS") (width 0.12) (tstamp f7eefc30-dafd-4f10-b301-6afdeeb8f04a)) + (fp_line (start 1.33 -2.579) (end 1.33 2.579) (layer "F.SilkS") (width 0.12) (tstamp fbff7ac2-ab67-45e4-b8fd-4bdaa1ef5cb7)) + (fp_line (start 2.931 -1.971) (end 2.931 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fd2f1fe1-ace2-40eb-8e5c-304684d1016d)) + (fp_line (start 1.81 -2.52) (end 1.81 -1.04) (layer "F.SilkS") (width 0.12) (tstamp fde8694c-2c48-49bf-b4db-23ae0bbf03d2)) + (fp_circle (center 1.25 0) (end 3.87 0) (layer "F.SilkS") (width 0.12) (fill none) (tstamp 2aea3dcd-2a2e-4db7-9521-e916b895b97c)) + (fp_circle (center 1.25 0) (end 4 0) (layer "F.CrtYd") (width 0.05) (fill none) (tstamp 19fc4ca5-1a28-4586-8cd3-df1475332678)) + (fp_line (start -0.883605 -1.0875) (end -0.383605 -1.0875) (layer "F.Fab") (width 0.1) (tstamp a3edf98d-14e9-436a-98c4-192509cefb43)) + (fp_line (start -0.633605 -1.3375) (end -0.633605 -0.8375) (layer "F.Fab") (width 0.1) (tstamp dbe8564c-66f2-4224-9b11-bad0283fbb96)) + (fp_circle (center 1.25 0) (end 3.75 0) (layer "F.Fab") (width 0.1) (fill none) (tstamp cb3f2533-60ed-463d-a7f8-e2940af2f151)) + (pad "1" thru_hole rect (at 0 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 5 "/VREF") (pintype "passive") (tstamp 98c53e39-7d00-4876-bdf3-a33a1ee11377)) + (pad "2" thru_hole circle (at 2.5 0 90) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp 4af80611-f7ce-47a9-bdf4-1d8f9d818608)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/CP_Radial_D5.0mm_P2.50mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (layer "F.Cu") + (tedit 5AE50EF0) (tstamp f7a6fcee-a779-48ec-acb7-3ad34620fa0d) + (at 95.297 110.109 180) + (descr "C, Rect series, Radial, pin pitch=5.00mm, , length*width=7*2.5mm^2, Capacitor") + (tags "C Rect series Radial pin pitch 5.00mm length 7mm width 2.5mm Capacitor") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/55c4d32d-7c5a-4dbb-a08c-04da9db11983") + (attr through_hole) + (fp_text reference "C2" (at 7.667 0) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 72563271-0773-4d22-8cb2-e5a877a3ed1e) + ) + (fp_text value "100nF" (at 2.5 2.5) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp aa2bb9ca-2415-43a5-90e0-9a31e5554a95) + ) + (fp_text user "${REFERENCE}" (at 2.5 0) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 3329d70a-e63c-4d5e-931e-47cd246c0742) + ) + (fp_line (start -1.12 -1.37) (end 6.12 -1.37) (layer "F.SilkS") (width 0.12) (tstamp 03dd338b-d7c5-48de-bc2b-4b9a797c1896)) + (fp_line (start 6.12 -1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 3a252aca-81f3-46e6-ba84-42f4fcac3f95)) + (fp_line (start -1.12 1.37) (end 6.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp 59e9c0f7-5bd2-4ce6-be1f-9498f2546617)) + (fp_line (start -1.12 -1.37) (end -1.12 1.37) (layer "F.SilkS") (width 0.12) (tstamp f9679bf7-9b73-4183-8072-4655075ba7d7)) + (fp_line (start 6.25 -1.5) (end -1.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp 35b4d8c3-19b3-43a8-8cf7-e176a37a65ef)) + (fp_line (start -1.25 1.5) (end 6.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp 723472f1-eeb6-42eb-a425-1ae0c77bbe76)) + (fp_line (start 6.25 1.5) (end 6.25 -1.5) (layer "F.CrtYd") (width 0.05) (tstamp c0933ea2-7dbb-47bb-a3e8-70303d718fd5)) + (fp_line (start -1.25 -1.5) (end -1.25 1.5) (layer "F.CrtYd") (width 0.05) (tstamp d0ca41d7-a171-4280-9eff-fa0a3ea70930)) + (fp_line (start -1 1.25) (end 6 1.25) (layer "F.Fab") (width 0.1) (tstamp 28ebbdf8-9134-41b5-9db3-8f4dc2a0744d)) + (fp_line (start -1 -1.25) (end -1 1.25) (layer "F.Fab") (width 0.1) (tstamp 8ea6c513-5c00-4cee-a591-7be71c01b515)) + (fp_line (start 6 1.25) (end 6 -1.25) (layer "F.Fab") (width 0.1) (tstamp a216d1a9-9859-48c9-8c8d-105044973a07)) + (fp_line (start 6 -1.25) (end -1 -1.25) (layer "F.Fab") (width 0.1) (tstamp a7c295f2-2eb4-4199-833d-a21909fcfb1a)) + (pad "1" thru_hole circle (at 0 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 3 "+9V") (pintype "passive") (tstamp ee7292a6-bb17-44f7-9c41-a2e0d7beadd4)) + (pad "2" thru_hole circle (at 5 0 180) (size 1.6 1.6) (drill 0.8) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp a782a237-2aff-4fa8-8289-ffb63502d305)) + (model "${KICAD6_3DMODEL_DIR}/Capacitor_THT.3dshapes/C_Rect_L7.0mm_W2.5mm_P5.00mm.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp f948fa56-9488-4665-909f-a500ddaa100d) + (at 126.619 108.204) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/713e480c-bb1d-4324-8bc5-d294a306dffc") + (attr through_hole) + (fp_text reference "R14" (at 3.81 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 7603b5dc-740e-4bc4-9f41-541d9a136b45) + ) + (fp_text value "4k7" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 6faadf13-f9c0-45f4-8ebb-f2169cbeeea2) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 9875154d-0870-45d5-a166-4432a0c201e6) + ) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 2bcdb2d3-b685-45cc-ad48-4680eba1719c)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 4fcd07e6-04ff-4b0c-9a26-ad572d904615)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp 5f376f99-0132-43e4-a1da-67a62ee1c2a0)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 8497dc53-c3f6-4da0-a40c-42f6064ce7d3)) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp be87b9e5-d801-49be-93c3-a5563c3027f4)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp cb5c9111-b32f-4590-91a8-f81502e49500)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 0900abb3-df33-4d13-895b-590f31b1badf)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp a27ad094-0ff8-4d48-8081-6c0b4405a4b0)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp c3719376-8b15-466a-a815-4c853e33d12f)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp dbcaf9a0-30f6-40c5-8106-7af5cd389e7c)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 0f3bf25c-cd0e-4d7f-b42e-c7b3a516582e)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp 4d3d23d8-5bcb-41b1-af71-a392e5e7248e)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp 9205052b-9151-40c8-8008-2e11b809c566)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 9c6df3ec-9e0e-4040-b211-c975e61fa631)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp 9f83be1f-72c8-47c9-924d-00c6442e6660)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp acda3f31-ee4b-4027-aaa3-df8ef53feb3a)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 4 "GND") (pintype "passive") (tstamp 2c997624-2542-425f-9864-43a971a018b0)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 11 "Net-(C12-Pad2)") (pintype "passive") (tstamp 00fe095e-7d94-499d-bfbd-f019c78b765d)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (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") + (tedit 59FED5CC) (tstamp f9d0b3fa-efb7-4be3-ae92-bc47608a138f) + (at 195.230225 48.766) + (descr "Through hole straight pin header, 1x03, 2.54mm pitch, single row") + (tags "Through hole pin header THT 1x03 2.54mm single row") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/4423bffb-196e-4324-b4ae-a6a7f4a011d5") + (attr through_hole) + (fp_text reference "RV1" (at 0 -2.33) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp cf34bccf-cdde-4b03-a71d-39e082be13a7) + ) + (fp_text value "10k" (at 0 7.41) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp d0ffda38-fa2f-48a6-a48b-dd7dac6a0e40) + ) + (fp_text user "${REFERENCE}" (at 0 2.54 90) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp dce99a8b-de3c-4122-b335-77b552b374c3) + ) + (fp_line (start -1.33 -1.33) (end 0 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 1ca98c90-ef83-4ef8-a81e-659cbd838484)) + (fp_line (start -1.33 1.27) (end -1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 3dfa29f5-3d3c-4113-b7b2-1069978e3ef6)) + (fp_line (start -1.33 1.27) (end 1.33 1.27) (layer "F.SilkS") (width 0.12) (tstamp 5539f204-71d3-4c7f-aadd-d0fdb16275ab)) + (fp_line (start 1.33 1.27) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp 8684d3c1-d057-487b-aaa6-dc4b86cca625)) + (fp_line (start -1.33 0) (end -1.33 -1.33) (layer "F.SilkS") (width 0.12) (tstamp 90ed6a4c-9919-45e9-bb22-bd1b5e7df928)) + (fp_line (start -1.33 6.41) (end 1.33 6.41) (layer "F.SilkS") (width 0.12) (tstamp c282349f-355a-48d2-9c25-82262223438d)) + (fp_line (start -1.8 -1.8) (end -1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp 23a42d1d-1892-4f05-9287-bf22e0c2c039)) + (fp_line (start -1.8 6.85) (end 1.8 6.85) (layer "F.CrtYd") (width 0.05) (tstamp a9d6e118-1126-476c-be4f-98f751cb96f6)) + (fp_line (start 1.8 6.85) (end 1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp baf9226b-4716-4578-a466-149cc036931f)) + (fp_line (start 1.8 -1.8) (end -1.8 -1.8) (layer "F.CrtYd") (width 0.05) (tstamp f97de881-8bfb-4372-b126-60b4f681768d)) + (fp_line (start -1.27 -0.635) (end -0.635 -1.27) (layer "F.Fab") (width 0.1) (tstamp 73b19b83-770c-4207-9dc3-0552baffc670)) + (fp_line (start -1.27 6.35) (end -1.27 -0.635) (layer "F.Fab") (width 0.1) (tstamp 74877c48-dbb9-48f8-9bae-f34ee171fe73)) + (fp_line (start 1.27 -1.27) (end 1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp b8025aae-ed0a-4f39-812c-281f96b48862)) + (fp_line (start -0.635 -1.27) (end 1.27 -1.27) (layer "F.Fab") (width 0.1) (tstamp e199dafd-e73b-4100-b50a-1b86c968dfdb)) + (fp_line (start 1.27 6.35) (end -1.27 6.35) (layer "F.Fab") (width 0.1) (tstamp e518c06b-c015-432a-9fa4-f08ea16b1039)) + (pad "1" thru_hole rect (at 0 0) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 6 "+5V") (pinfunction "1") (pintype "passive") (tstamp 9a5111a9-cfd6-4f66-ac1e-77ac47b40b9e)) + (pad "2" thru_hole oval (at 0 2.54) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 24 "Net-(RV1-Pad2)") (pinfunction "2") (pintype "passive") (tstamp ecbf1a68-fc63-4122-8ccc-c4e83fc57cff)) + (pad "3" thru_hole oval (at 0 5.08) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask) + (net 4 "GND") (pinfunction "3") (pintype "passive") (tstamp fff2d7fe-fca7-48ca-9685-598f037a8f61)) + (model "${KICAD6_3DMODEL_DIR}/Connector_PinHeader_2.54mm.3dshapes/PinHeader_1x03_P2.54mm_Vertical.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (layer "F.Cu") + (tedit 5AE5139B) (tstamp ff87bb86-8284-4dc8-a067-51349974dfc2) + (at 116.967 95.25) + (descr "Resistor, Axial_DIN0204 series, Axial, Horizontal, pin pitch=7.62mm, 0.167W, length*diameter=3.6*1.6mm^2, http://cdn-reichelt.de/documents/datenblatt/B400/1_4W%23YAG.pdf") + (tags "Resistor Axial_DIN0204 series Axial Horizontal pin pitch 7.62mm 0.167W length 3.6mm diameter 1.6mm") + (property "Sheetfile" "Trem.kicad_sch") + (property "Sheetname" "") + (path "/22c9e179-6c43-4e67-909d-1f02b37451fb") + (attr through_hole) + (fp_text reference "R7" (at 3.81 -1.92) (layer "F.SilkS") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 70310694-46ef-4188-b791-0f86e75d4e4c) + ) + (fp_text value "100k" (at 3.81 1.92) (layer "F.Fab") + (effects (font (size 1 1) (thickness 0.15))) + (tstamp 91610a08-4c8b-4d15-a63e-66e2bea5ae3a) + ) + (fp_text user "${REFERENCE}" (at 3.81 0) (layer "F.Fab") + (effects (font (size 0.72 0.72) (thickness 0.108))) + (tstamp 184465e6-9325-4fda-bf34-4f51b333a762) + ) + (fp_line (start 5.73 0.92) (end 5.73 -0.92) (layer "F.SilkS") (width 0.12) (tstamp 543fa3ff-950c-4833-87ec-47639ac5ece2)) + (fp_line (start 1.89 0.92) (end 5.73 0.92) (layer "F.SilkS") (width 0.12) (tstamp 6c9ee98f-e31e-4bc1-ae6a-fd9ec348b0fc)) + (fp_line (start 6.68 0) (end 5.73 0) (layer "F.SilkS") (width 0.12) (tstamp 7ae831ba-e270-42ef-9170-be9607b8008c)) + (fp_line (start 1.89 -0.92) (end 1.89 0.92) (layer "F.SilkS") (width 0.12) (tstamp 92883531-3c3c-4b1e-a56c-16b01c1be7fb)) + (fp_line (start 5.73 -0.92) (end 1.89 -0.92) (layer "F.SilkS") (width 0.12) (tstamp cf729a2f-0f6d-44e9-a029-10c6c683a196)) + (fp_line (start 0.94 0) (end 1.89 0) (layer "F.SilkS") (width 0.12) (tstamp ea2c22bf-1cbc-4f3a-9eb4-5e877698dfbd)) + (fp_line (start -0.95 -1.05) (end -0.95 1.05) (layer "F.CrtYd") (width 0.05) (tstamp 276b86cd-ee7c-4aee-94b2-b14a9032bf48)) + (fp_line (start 8.57 -1.05) (end -0.95 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp 33fca84b-9ef7-4eee-a20e-af274c8e6956)) + (fp_line (start 8.57 1.05) (end 8.57 -1.05) (layer "F.CrtYd") (width 0.05) (tstamp eeb89802-edb3-44c6-8bb1-ba9032402146)) + (fp_line (start -0.95 1.05) (end 8.57 1.05) (layer "F.CrtYd") (width 0.05) (tstamp f8acd4e9-0d28-4ebb-8b39-0098e9a90f67)) + (fp_line (start 2.01 0.8) (end 5.61 0.8) (layer "F.Fab") (width 0.1) (tstamp 33a8092a-58f0-4025-a7ea-9fe6f8f1f488)) + (fp_line (start 0 0) (end 2.01 0) (layer "F.Fab") (width 0.1) (tstamp 5e3f5cc0-6b11-487c-a7d5-d19ea7a86c0d)) + (fp_line (start 7.62 0) (end 5.61 0) (layer "F.Fab") (width 0.1) (tstamp 84236167-2bac-4a5c-9847-16e4259b8366)) + (fp_line (start 5.61 -0.8) (end 2.01 -0.8) (layer "F.Fab") (width 0.1) (tstamp c1617f4d-76cc-49b5-a99a-84641184fce7)) + (fp_line (start 2.01 -0.8) (end 2.01 0.8) (layer "F.Fab") (width 0.1) (tstamp c35a082e-733e-4427-b04c-9802e85913c2)) + (fp_line (start 5.61 0.8) (end 5.61 -0.8) (layer "F.Fab") (width 0.1) (tstamp f7984a9f-1661-4393-9db7-6cf77e757224)) + (pad "1" thru_hole circle (at 0 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 7 "Net-(C7-Pad1)") (pintype "passive") (tstamp 313f4f58-587e-4fd3-bad3-279cac4b5079)) + (pad "2" thru_hole oval (at 7.62 0) (size 1.4 1.4) (drill 0.7) (layers *.Cu *.Mask) + (net 19 "Net-(R7-Pad2)") (pintype "passive") (tstamp 7856aa6f-305b-4975-8880-2063afe64d35)) + (model "${KICAD6_3DMODEL_DIR}/Resistor_THT.3dshapes/R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal.wrl" + (offset (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (segment (start 107.315 88.581112) (end 107.379888 88.646) (width 0.25) (layer "F.Cu") (net 1) (tstamp b93bb512-ca88-4cb8-8934-250c8ad759e9)) + (segment (start 107.315 84.328) (end 107.315 88.581112) (width 0.25) (layer "F.Cu") (net 1) (tstamp f53a6bc4-f079-44ff-8333-e3b5ae202c06)) + (segment (start 109.347 89.178888) (end 109.879888 88.646) (width 0.25) (layer "F.Cu") (net 2) (tstamp 881959d8-6561-4c7d-8718-871f78b29977)) + (segment (start 109.347 92.456) (end 109.347 89.178888) (width 0.25) (layer "F.Cu") (net 2) (tstamp e9d8d2f3-fe52-40b2-b17a-5c119c246e85)) + (segment (start 92.772112 114.554) (end 92.772112 112.633888) (width 1.5) (layer "F.Cu") (net 3) (tstamp 06c20961-edb1-4233-9544-d5a7a21eb537)) + (segment (start 135.513511 109.088489) (end 133.858 110.744) (width 0.75) (layer "F.Cu") (net 3) (tstamp 1111744a-0467-4093-9ece-d59e3afb3352)) + (segment (start 129.574716 81.798) (end 135.513511 87.736795) (width 0.75) (layer "F.Cu") (net 3) (tstamp 1b4f7cb2-8413-4736-8426-5dedf7a282e9)) + (segment (start 86.289 83.312) (end 87.4776 84.5006) (width 0.75) (layer "F.Cu") (net 3) (tstamp 254f2e26-4167-4092-90e9-6b458443b76a)) + (segment (start 95.416623 117.198511) (end 97.533089 117.198511) (width 0.75) (layer "F.Cu") (net 3) (tstamp 2a1795ff-b8aa-4d53-9c02-7fa49e438f32)) + (segment (start 87.4776 104.3432) (end 90.0684 106.934) (width 0.75) (layer "F.Cu") (net 3) (tstamp 3999e884-6a63-4a1e-9228-6b3352815aed)) + (segment (start 126.1364 110.744) (end 124.587 110.744) (width 0.75) (layer "F.Cu") (net 3) (tstamp 42514db4-1d55-4ac1-9e92-724ce6f2b554)) + (segment (start 97.533089 117.198511) (end 125.156342 117.198511) (width 0.75) (layer "F.Cu") (net 3) (tstamp 47dbf7bc-faeb-461c-bc37-619431c02f5d)) + (segment (start 92.772112 112.633888) (end 95.297 110.109) (width 1.5) (layer "F.Cu") (net 3) (tstamp 51d7ff9d-4e31-4141-adff-f47fbee78e4b)) + (segment (start 95.377 106.934) (end 97.9424 106.934) (width 1.5) (layer "F.Cu") (net 3) (tstamp 56d0d0ff-6ee5-4d2b-9135-68997b41ed03)) + (segment (start 133.858 110.744) (end 126.1364 110.744) (width 0.75) (layer "F.Cu") (net 3) (tstamp 7a221ab8-fcf1-4612-985d-aa70207bf9f6)) + (segment (start 95.377 106.934) (end 95.377 110.029) (width 1.5) (layer "F.Cu") (net 3) (tstamp 84de8326-d5a5-477b-94ad-325ff7447959)) + (segment (start 90.0684 106.934) (end 95.377 106.934) (width 0.75) (layer "F.Cu") (net 3) (tstamp 9a01c218-52a3-4688-87bb-0b9134358e96)) + (segment (start 126.1364 116.218453) (end 126.1364 110.744) (width 0.75) (layer "F.Cu") (net 3) (tstamp 9f8da3f8-3f41-4939-a889-df96a4ebddb4)) + (segment (start 97.5868 117.1448) (end 97.533089 117.198511) (width 0.25) (layer "F.Cu") (net 3) (tstamp a8827b9f-9984-4963-a1a2-a4a5bfeefba1)) + (segment (start 87.4776 84.5006) (end 87.4776 104.3432) (width 0.75) (layer "F.Cu") (net 3) (tstamp a8e6c8d8-1788-4899-9925-fc0a187d065d)) + (segment (start 95.377 110.029) (end 95.297 110.109) (width 1.5) (layer "F.Cu") (net 3) (tstamp bf46ff89-10d0-4b24-8c15-01e38e403b52)) + (segment (start 125.156342 117.198511) (end 126.1364 116.218453) (width 0.75) (layer "F.Cu") (net 3) (tstamp c07db8a9-866c-48b2-8c64-89a2abe138da)) + (segment (start 124.597 81.798) (end 129.574716 81.798) (width 0.75) (layer "F.Cu") (net 3) (tstamp ea3caa94-d3b5-4e34-86be-40f111606a9c)) + (segment (start 97.5868 115.4684) (end 97.5868 117.1448) (width 0.25) (layer "F.Cu") (net 3) (tstamp ee0d6cf1-fd85-41fc-a0a5-0895b3a66025)) + (segment (start 135.513511 87.736795) (end 135.513511 109.088489) (width 0.75) (layer "F.Cu") (net 3) (tstamp ef60633a-681f-4293-82c1-4395d2ddac2a)) + (segment (start 92.772112 114.554) (end 95.416623 117.198511) (width 0.75) (layer "F.Cu") (net 3) (tstamp fc416211-f442-4d29-9371-ed18a9e10d1a)) + (segment (start 102.88 81.33) (end 102.88 81.783) (width 0.25) (layer "F.Cu") (net 4) (tstamp 6303bc37-0abf-4fef-8d68-2d323171c79e)) + (segment (start 90.907112 80.772) (end 90.932 80.796888) (width 0.25) (layer "F.Cu") (net 4) (tstamp 7b35ae46-c879-4e99-b7f0-0221a3d14bc4)) + (segment (start 100.29 78.74) (end 102.88 81.33) (width 0.25) (layer "F.Cu") (net 4) (tstamp 7d734108-857d-4b2d-94d7-c830d7624e4a)) + (segment (start 95.758 103.124) (end 95.758 102.124) (width 0.25) (layer "F.Cu") (net 4) (tstamp 9f04b3ff-48e8-49a4-b619-dd01ab2a0c5f)) + (segment (start 95.758 102.124) (end 92.186 98.552) (width 0.25) (layer "F.Cu") (net 4) (tstamp d31f2aa8-ec4f-40f0-b832-4fce2cce0c7c)) + (segment (start 90.297 114.529112) (end 90.272112 114.554) (width 1.5) (layer "F.Cu") (net 4) (tstamp d393d9af-7323-446d-85c0-68b48aedac54)) + (segment (start 92.186 98.552) (end 90.852 98.552) (width 0.25) (layer "F.Cu") (net 4) (tstamp efad44ce-d720-4861-9808-09c5d80c2f8b)) + (segment (start 90.852 80.876888) (end 90.932 80.796888) (width 0.25) (layer "F.Cu") (net 4) (tstamp fb03b7bb-2297-4d63-a835-8827b2d106f1)) + (segment (start 116.967 89.428) (end 116.977 89.418) (width 0.25) (layer "F.Cu") (net 4) (tstamp fe638edd-a545-4d1b-a717-c94012ada7cc)) + (segment (start 90.297 110.109) (end 90.297 99.107) (width 0.75) (layer "B.Cu") (net 4) (tstamp 04ba7a5f-bcfe-44e0-851c-3133349b998e)) + (segment (start 97.457511 104.823511) (end 95.758 103.124) (width 1.5) (layer "B.Cu") (net 4) (tstamp 0f282f3b-939d-42d5-b488-120aa4fdbe97)) + (segment (start 97.9424 111.753822) (end 97.837711 111.858511) (width 1.5) (layer "B.Cu") (net 4) (tstamp 216acc87-ba98-4850-a8b7-3eaa48bc2a8a)) + (segment (start 115.823488 111.887512) (end 109.7788 111.887512) (width 0.75) (layer "B.Cu") (net 4) (tstamp 289bd755-66ca-4c2b-a2cd-8c051af0e967)) + (segment (start 97.9424 109.0676) (end 98.932349 109.0676) (width 1.5) (layer "B.Cu") (net 4) (tstamp 2ba384fa-dfef-429f-99df-81705c428b87)) + (segment (start 97.9424 109.0676) (end 97.9424 111.753822) (width 1.5) (layer "B.Cu") (net 4) (tstamp 3097f3b7-4336-4c01-8c55-dcbca130d511)) + (segment (start 92.046511 111.858511) (end 97.837711 111.858511) (width 1.5) (layer "B.Cu") (net 4) (tstamp 3f8a6faf-1295-4c52-a908-c21e4c3f82a4)) + (segment (start 90.852 94.996) (end 90.852 80.876888) (width 0.75) (layer "B.Cu") (net 4) (tstamp 41588e54-0440-4bba-9125-5af285729e0e)) + (segment (start 118.341511 109.369489) (end 125.453511 109.369489) (width 0.25) (layer "B.Cu") (net 4) (tstamp 4548087a-95cd-41c0-83af-70193f0b265a)) + (segment (start 86.313888 80.796888) (end 86.289 80.772) (width 0.75) (layer "B.Cu") (net 4) (tstamp 45943c90-d07a-4ce9-be5d-fac72068e549)) + (segment (start 118.341511 109.369489) (end 118.341511 90.782511) (width 0.75) (layer "B.Cu") (net 4) (tstamp 4859750a-891d-4344-8a11-a479a7019931)) + (segment (start 90.297 99.107) (end 90.852 98.552) (width 0.75) (layer "B.Cu") (net 4) (tstamp 497dcaa6-0c98-45f8-ba00-95a2fd315224)) + (segment (start 97.837711 111.858511) (end 100.220689 111.858511) (width 1.5) (layer "B.Cu") (net 4) (tstamp 4e55292b-2dab-4f03-af3b-6968000be37f)) + (segment (start 90.272112 114.554) (end 90.272112 110.133888) (width 1.5) (layer "B.Cu") (net 4) (tstamp 5b1e76bd-529e-4734-b929-3f1a34b317e6)) + (segment (start 94.113399 77.615489) (end 90.932 80.796888) (width 0.25) (layer "B.Cu") (net 4) (tstamp 5bb39c8a-bf36-4aa9-988a-95eb79177c59)) + (segment (start 98.164673 104.823511) (end 97.457511 104.823511) (width 1.5) (layer "B.Cu") (net 4) (tstamp 64c60c9a-a827-4481-9281-f7af6a9e3abf)) + (segment (start 118.341511 90.782511) (end 116.977 89.418) (width 0.75) (layer "B.Cu") (net 4) (tstamp 6a459b9a-b358-480a-83cb-7a1590dbaee3)) + (segment (start 102.017911 113.560311) (end 100.2684 111.8108) (width 1.5) (layer "B.Cu") (net 4) (tstamp 6a6fc7db-efb3-4098-91da-2cf64d841eb0)) + (segment (start 99.165489 77.615489) (end 94.113399 77.615489) (width 0.25) (layer "B.Cu") (net 4) (tstamp 77e59548-89b8-4f55-bd7a-1926c768b552)) + (segment (start 98.932349 109.0676) (end 99.591911 108.408038) (width 1.5) (layer "B.Cu") (net 4) (tstamp 92ed9f63-5bb2-4042-9811-9e919686e16b)) + (segment (start 116.967 110.744) (end 115.823488 111.887512) (width 0.75) (layer "B.Cu") (net 4) (tstamp 954a42da-0ed8-477c-b720-61e8a87245cb)) + (segment (start 90.852 98.552) (end 90.852 94.996) (width 0.75) (layer "B.Cu") (net 4) (tstamp 98ece263-ebeb-4ca3-85d9-ae02debdafec)) + (segment (start 100.29 78.74) (end 99.165489 77.615489) (width 0.25) (layer "B.Cu") (net 4) (tstamp a459176a-9213-4378-b6f8-70a8f8b817f7)) + (segment (start 90.852 80.876888) (end 90.932 80.796888) (width 0.75) (layer "B.Cu") (net 4) (tstamp ad8cd3cb-5209-4f07-8fc7-0713ad986b5e)) + (segment (start 90.932 80.796888) (end 86.313888 80.796888) (width 0.75) (layer "B.Cu") (net 4) (tstamp b17bd9ab-8b8c-4261-b98f-cab9b5f4f559)) + (segment (start 100.220689 111.858511) (end 100.2684 111.8108) (width 1.5) (layer "B.Cu") (net 4) (tstamp b1b8ac5f-104a-4878-b57a-135e061159e5)) + (segment (start 116.967 89.428) (end 116.977 89.418) (width 0.25) (layer "B.Cu") (net 4) (tstamp b6225f8f-29a7-4020-94af-4947fc2f5073)) + (segment (start 90.297 110.109) (end 92.046511 111.858511) (width 1.5) (layer "B.Cu") (net 4) (tstamp be8f0de6-aef5-44a7-933a-555df32901c0)) + (segment (start 125.453511 109.369489) (end 126.619 108.204) (width 0.25) (layer "B.Cu") (net 4) (tstamp c27bdcd4-e970-418f-ab59-5b01991cf5af)) + (segment (start 116.967 92.456) (end 116.967 89.428) (width 0.25) (layer "B.Cu") (net 4) (tstamp cf2979b7-a635-4a96-b431-cbc86a80670c)) + (segment (start 116.967 110.744) (end 118.341511 109.369489) (width 0.75) (layer "B.Cu") (net 4) (tstamp d161836e-828e-45cc-a044-eff868f36333)) + (segment (start 105.993072 113.560311) (end 102.017911 113.560311) (width 1.5) (layer "B.Cu") (net 4) (tstamp d23bb093-eeba-4d59-a2c3-491b3c03f5df)) + (segment (start 109.7788 111.887512) (end 107.665871 111.887512) (width 1.5) (layer "B.Cu") (net 4) (tstamp d3a13958-7d50-42bb-919a-65fc56ac8075)) + (segment (start 107.665871 111.887512) (end 105.993072 113.560311) (width 1.5) (layer "B.Cu") (net 4) (tstamp d4ae8f62-dbbc-43dc-8a9c-c1139bf2b007)) + (segment (start 99.591911 106.250749) (end 98.164673 104.823511) (width 1.5) (layer "B.Cu") (net 4) (tstamp d86fe92e-5dcd-4062-b20f-862124bfec2e)) + (segment (start 90.297 110.109) (end 90.272112 110.133888) (width 0.75) (layer "B.Cu") (net 4) (tstamp e93299e6-f608-427b-bd49-de6a01e5629c)) + (segment (start 99.591911 108.408038) (end 99.591911 106.250749) (width 1.5) (layer "B.Cu") (net 4) (tstamp eccd5c04-9486-46ff-a964-be55e62f8362)) + (segment (start 105.5624 109.0676) (end 105.5624 111.5168) (width 1.5) (layer "F.Cu") (net 5) (tstamp 03956d8d-78aa-44d9-b1ee-8d46e243ee1b)) + (segment (start 118.10837 86.878) (end 129.6416 98.41123) (width 0.25) (layer "F.Cu") (net 5) (tstamp 232e8801-adb1-4510-88b5-979b871d9ac5)) + (segment (start 109.7788 114.387512) (end 107.845112 114.387512) (width 1.5) (layer "F.Cu") (net 5) (tstamp 413c9a39-1cfe-4d55-a405-faf25da26889)) + (segment (start 134.239 105.664) (end 134.239 103.124) (width 0.25) (layer "F.Cu") (net 5) (tstamp 4bd4a458-d5d4-4625-8ba1-1bce0aea73d6)) + (segment (start 117.432789 114.408511) (end 122.3772 109.4641) (width 0.25) (layer "F.Cu") (net 5) (tstamp 5572436f-d8e5-454a-b4fb-b7ab18085293)) + (segment (start 122.3772 106.172) (end 124.206 104.3432) (width 0.25) (layer "F.Cu") (net 5) (tstamp 851229ae-e1c2-4cac-8b4b-7f8f43cee7bd)) + (segment (start 107.845112 114.387512) (end 105.2684 111.8108) (width 1.5) (layer "F.Cu") (net 5) (tstamp 8f88fc75-49b6-40cc-84d0-e8f526e7e83c)) + (segment (start 116.977 86.878) (end 118.10837 86.878) (width 0.25) (layer "F.Cu") (net 5) (tstamp 9915628f-115e-446a-915b-9862b08bc5da)) + (segment (start 122.3772 109.4641) (end 122.3772 106.172) (width 0.25) (layer "F.Cu") (net 5) (tstamp a908c23d-93f7-488b-8e24-0f3a2db8d2d4)) + (segment (start 129.6416 98.41123) (end 129.6416 104.3432) (width 0.25) (layer "F.Cu") (net 5) (tstamp ae1d4553-1fc6-49e7-9616-921be66476de)) + (segment (start 109.799799 114.408511) (end 117.432789 114.408511) (width 0.25) (layer "F.Cu") (net 5) (tstamp c456002f-aeb9-4803-bfe7-c4672a8e9c0b)) + (segment (start 105.5624 111.5168) (end 105.2684 111.8108) (width 1.5) (layer "F.Cu") (net 5) (tstamp ce821a12-7a6e-48a2-b2c3-0a8772386e7c)) + (segment (start 109.7788 114.387512) (end 109.799799 114.408511) (width 0.25) (layer "F.Cu") (net 5) (tstamp d2cffed5-1222-429f-a5fe-9cf581f752fe)) + (segment (start 124.206 104.3432) (end 129.6416 104.3432) (width 0.25) (layer "F.Cu") (net 5) (tstamp dbd05a4a-6f63-4c94-9f90-a818caef0c17)) + (segment (start 105.5624 109.0676) (end 105.5624 106.934) (width 1.5) (layer "F.Cu") (net 5) (tstamp f1b90cba-d675-4f86-be26-1ab31f5313f0)) + (via (at 129.6416 104.3432) (size 0.8) (drill 0.4) (layers "F.Cu" "B.Cu") (net 5) (tstamp e4697557-e145-4187-90cf-39f9c131e595)) + (segment (start 133.0198 104.3432) (end 134.239 103.124) (width 0.25) (layer "B.Cu") (net 5) (tstamp 1682532c-8c3d-4c3e-b6a9-4e7cf639369a)) + (segment (start 129.6416 104.3432) (end 133.0198 104.3432) (width 0.25) (layer "B.Cu") (net 5) (tstamp f4432edc-d467-45b6-87b6-5122f0e7c7d5)) + (segment (start 103.632 100.584) (end 94.853718 100.584) (width 0.25) (layer "F.Cu") (net 6) (tstamp 16a4f718-7e21-48b8-b357-8ae11b9b22c3)) + (segment (start 84.898 79.623) (end 86.289 78.232) (width 0.25) (layer "F.Cu") (net 6) (tstamp 33c37f17-d91c-4310-b63e-63189c023bcf)) + (segment (start 95.29 78.74) (end 95.29 81.753) (width 0.25) (layer "F.Cu") (net 6) (tstamp 36b37c46-8a8d-49b6-b080-5b1e3ebc9c1c)) + (segment (start 92.193489 97.923771) (end 92.193489 79.558377) (width 0.25) (layer "F.Cu") (net 6) (tstamp 387c2074-4ea3-4936-87d4-4887502dbd52)) + (segment (start 85.598 89.408) (end 84.898 88.708) (width 0.25) (layer "F.Cu") (net 6) (tstamp 3b197539-e243-4640-a4c2-52b5a941112d)) + (segment (start 90.867112 78.232) (end 90.932 78.296888) (width 0.25) (layer "F.Cu") (net 6) (tstamp 457d739c-70e9-44a5-a3fe-6f8eb63f20d5)) + (segment (start 94.853718 100.584) (end 92.193489 97.923771) (width 0.25) (layer "F.Cu") (net 6) (tstamp 46ac5df4-b883-4601-8fe2-642e465745b2)) + (segment (start 84.898 88.708) (end 84.898 79.623) (width 0.25) (layer "F.Cu") (net 6) (tstamp 48a33c72-ea39-48e9-aedf-859570132c93)) + (segment (start 86.289 78.232) (end 90.867112 78.232) (width 0.25) (layer "F.Cu") (net 6) (tstamp 4e51dc68-ee17-48dc-a5b5-c78d1ddc74b5)) + (segment (start 95.29 81.753) (end 95.26 81.783) (width 0.25) (layer "F.Cu") (net 6) (tstamp b2a9f409-eaca-4fbd-83ce-7334f0a6ed51)) + (segment (start 90.932 78.296888) (end 94.846888 78.296888) (width 0.25) (layer "F.Cu") (net 6) (tstamp dd03ef82-8997-4808-96f3-764c5c45f2af)) + (segment (start 92.193489 79.558377) (end 90.932 78.296888) (width 0.25) (layer "F.Cu") (net 6) (tstamp e3a1cf71-8569-4bfc-b4fa-b77dddb9aa66)) + (segment (start 94.846888 78.296888) (end 95.29 78.74) (width 0.25) (layer "F.Cu") (net 6) (tstamp f56a39c2-c551-43b6-a327-af470b3459c0)) + (segment (start 111.570888 96.266) (end 112.695399 97.390511) (width 0.25) (layer "F.Cu") (net 7) (tstamp 1d762aa0-c74f-4c21-aaae-7d4406561f42)) + (segment (start 114.826489 97.390511) (end 116.967 95.25) (width 0.25) (layer "F.Cu") (net 7) (tstamp c970f9c4-5a37-4dab-9ae3-c999d86a67d7)) + (segment (start 112.695399 97.390511) (end 114.826489 97.390511) (width 0.25) (layer "F.Cu") (net 7) (tstamp d223e811-8711-4e58-a6d5-8f5ce4294091)) + (segment (start 116.802189 85.462511) (end 117.483489 85.462511) (width 0.25) (layer "F.Cu") (net 8) (tstamp 0d902e17-6326-4499-94a4-8c04d7a8f45e)) + (segment (start 118.101511 82.922511) (end 116.977 81.798) (width 0.25) (layer "F.Cu") (net 8) (tstamp 112ef3b2-3e05-432c-b562-4c679c8dd7d3)) + (segment (start 114.935 81.788) (end 116.967 81.788) (width 0.25) (layer "F.Cu") (net 8) (tstamp 1522ec1b-c498-4f12-9be0-b749b8f014c9)) + (segment (start 114.070888 88.193812) (end 116.802189 85.462511) (width 0.25) (layer "F.Cu") (net 8) (tstamp 2e5331ca-6e74-4892-a1dd-eeeceb837ea3)) + (segment (start 116.967 81.788) (end 116.977 81.798) (width 0.25) (layer "F.Cu") (net 8) (tstamp 9f95ad0c-e1ad-4a1e-ac2e-ab257fe80636)) + (segment (start 118.101511 84.844489) (end 118.101511 82.922511) (width 0.25) (layer "F.Cu") (net 8) (tstamp cdc654d9-e712-40f1-9d6e-d4b77e386eae)) + (segment (start 117.483489 85.462511) (end 118.101511 84.844489) (width 0.25) (layer "F.Cu") (net 8) (tstamp d5cf697f-883b-4b37-b2dd-ac9fa10019a2)) + (segment (start 114.070888 96.266) (end 114.070888 88.193812) (width 0.25) (layer "F.Cu") (net 8) (tstamp f7728990-54b4-4a4d-9f2a-d6ace98bef52)) + (segment (start 85.598 94.742) (end 85.852 94.996) (width 0.25) (layer "F.Cu") (net 9) (tstamp 1592dbac-6ad3-482f-aadf-0fef3591f96e)) + (segment (start 85.852 98.552) (end 85.852 94.996) (width 0.25) (layer "F.Cu") (net 9) (tstamp 6603a5b7-9eb1-4222-8f0a-1f8baf8c36e5)) + (segment (start 85.598 91.948) (end 85.598 94.742) (width 0.25) (layer "F.Cu") (net 9) (tstamp 86f53075-d2f4-4dd3-8899-912101187387)) + (segment (start 85.598 98.806) (end 85.852 98.552) (width 0.25) (layer "F.Cu") (net 9) (tstamp a3ba17ff-7f4e-4eb9-96bb-b4fa74db731f)) + (segment (start 85.598 101.092) (end 85.598 98.806) (width 0.25) (layer "F.Cu") (net 9) (tstamp ecd4762b-b099-47b8-8db9-332b93538490)) + (segment (start 124.597 91.258112) (end 128.207888 94.869) (width 0.25) (layer "F.Cu") (net 10) (tstamp 71df2a4c-d38a-4168-86d8-db70e1c671e7)) + (segment (start 124.597 89.418) (end 124.597 91.258112) (width 0.25) (layer "F.Cu") (net 10) (tstamp 852c96a8-b345-4cc7-b019-80519e6cae59)) + (segment (start 124.1397 107.061) (end 131.572 107.061) (width 0.25) (layer "F.Cu") (net 11) (tstamp 012299a4-84aa-49df-8f12-ca0e62127500)) + (segment (start 130.707888 94.869) (end 130.707888 106.831888) (width 0.25) (layer "F.Cu") (net 11) (tstamp 39f922ca-8899-4a75-b597-276a3ab7a43f)) + (segment (start 133.096 107.061) (end 134.239 108.204) (width 0.25) (layer "F.Cu") (net 11) (tstamp 59a23512-0a2f-47cf-a925-8318a5183b17)) + (segment (start 123.012969 114.249969) (end 123.012969 108.187731) (width 0.25) (layer "F.Cu") (net 11) (tstamp 6488f31c-aced-4e3e-b37f-a051d57228a8)) + (segment (start 131.572 107.061) (end 133.096 107.061) (width 0.25) (layer "F.Cu") (net 11) (tstamp 71d8a410-ef92-47e4-a172-aa96e13fda1a)) + (segment (start 130.937 107.061) (end 131.572 107.061) (width 0.25) (layer "F.Cu") (net 11) (tstamp 94b74b6d-38d7-4e39-8382-b1d742965b21)) + (segment (start 130.707888 106.831888) (end 130.937 107.061) (width 0.25) (layer "F.Cu") (net 11) (tstamp b774d230-5da9-4025-8a0e-17d409a1fb91)) + (segment (start 123.012969 108.187731) (end 124.1397 107.061) (width 0.25) (layer "F.Cu") (net 11) (tstamp dbd68565-174c-4268-880c-87251b0b2039)) + (segment (start 124.587 115.824) (end 123.012969 114.249969) (width 0.25) (layer "F.Cu") (net 11) (tstamp fd98d21d-0c43-4ae1-ac16-bdef35830f4b)) + (segment (start 130.453888 78.867) (end 128.650488 80.6704) (width 0.25) (layer "F.Cu") (net 13) (tstamp 451f0685-eeae-4b97-a842-306d9bbc9585)) + (segment (start 123.444 83.185) (end 124.597 84.338) (width 0.25) (layer "F.Cu") (net 13) (tstamp 467af1a2-c131-4e44-8305-2290c6ce6dfa)) + (segment (start 128.650488 80.6704) (end 124.1343 80.6704) (width 0.25) (layer "F.Cu") (net 13) (tstamp 769b7f67-6db8-49cf-b41a-444fd3e7a566)) + (segment (start 123.444 81.3607) (end 123.444 83.185) (width 0.25) (layer "F.Cu") (net 13) (tstamp d8e00eac-9b1d-410c-864b-26c7d30d571a)) + (segment (start 124.597 84.338) (end 130.284 84.338) (width 0.25) (layer "F.Cu") (net 13) (tstamp e4298263-57fd-4b02-9d65-2dbdc528e881)) + (segment (start 124.1343 80.6704) (end 123.444 81.3607) (width 0.25) (layer "F.Cu") (net 13) (tstamp ef97ddb6-e661-4a52-af80-7aa81090a835)) + (segment (start 130.284 84.338) (end 130.284 79.036888) (width 0.25) (layer "B.Cu") (net 13) (tstamp 61c538ce-5749-4db0-a518-f60c5cd03cbc)) + (segment (start 130.284 79.036888) (end 130.453888 78.867) (width 0.25) (layer "B.Cu") (net 13) (tstamp c591474d-238d-4c84-a612-ee496f305afe)) + (segment (start 100.838 103.124) (end 103.632 103.124) (width 0.25) (layer "F.Cu") (net 16) (tstamp b41c5c2c-d8d1-4d98-adcc-5999ddd12bc1)) + (segment (start 97.223489 104.198511) (end 98.298 103.124) (width 0.25) (layer "F.Cu") (net 17) (tstamp 8826a1d1-df88-45a1-aa5f-e1afae085e95)) + (segment (start 93.218 103.124) (end 94.292511 104.198511) (width 0.25) (layer "F.Cu") (net 17) (tstamp e79478d3-49ee-4e88-bbe3-ed777a529425)) + (segment (start 94.292511 104.198511) (end 97.223489 104.198511) (width 0.25) (layer "F.Cu") (net 17) (tstamp efaf8832-b4f5-42b0-8afe-8b5026ade3e5)) + (segment (start 114.935 84.328) (end 116.967 84.328) (width 0.25) (layer "F.Cu") (net 18) (tstamp 29325b91-9017-4cc0-9d68-1cef4a4e6e72)) + (segment (start 107.315 81.788) (end 109.855 84.328) (width 0.25) (layer "F.Cu") (net 18) (tstamp 5bede952-d039-4d2c-9b6d-ad9bcdc39551)) + (segment (start 116.967 84.328) (end 116.977 84.338) (width 0.25) (layer "F.Cu") (net 18) (tstamp 6c154a66-f972-4c37-991c-53e3a22229c8)) + (segment (start 109.855 84.328) (end 114.935 84.328) (width 0.25) (layer "F.Cu") (net 18) (tstamp ec6b94cb-6aba-4266-9138-c9d20213493c)) + (segment (start 124.587 103.124) (end 126.619 103.124) (width 0.25) (layer "F.Cu") (net 19) (tstamp 77a0d5bc-b05d-4ed0-9f16-c3d93331e4ca)) + (segment (start 126.619 97.282) (end 126.619 103.124) (width 0.25) (layer "F.Cu") (net 19) (tstamp ddae10f1-2878-4f29-9d5d-dbc078d18bd7)) + (segment (start 124.587 95.25) (end 126.619 97.282) (width 0.25) (layer "F.Cu") (net 19) (tstamp ed94568e-beb6-48e0-812e-7cd1e759bcf9)) + (segment (start 124.587 105.664) (end 126.619 105.664) (width 0.25) (layer "F.Cu") (net 20) (tstamp 205d6271-71ef-4ddd-a9ee-3a5582f5bc1c)) + (segment (start 92.964 89.408) (end 95.255 89.408) (width 0.25) (layer "F.Cu") (net 21) (tstamp 0d690537-13a6-4078-9583-dd796e6052a9)) + (segment (start 95.255 89.408) (end 95.26 89.403) (width 0.25) (layer "F.Cu") (net 21) (tstamp 17cf038e-0287-4174-817b-19cf96cc597e)) + (segment (start 123.462489 99.168511) (end 124.587 98.044) (width 0.25) (layer "F.Cu") (net 22) (tstamp 16d9130d-25f9-44d3-8ec8-47a8e24100de)) + (segment (start 93.218 101.092) (end 92.193489 102.116511) (width 0.25) (layer "F.Cu") (net 22) (tstamp 65a346c4-9540-4542-a138-ec5f3eafcdb3)) + (segment (start 116.731489 99.168511) (end 123.462489 99.168511) (width 0.25) (layer "F.Cu") (net 22) (tstamp 7c18c260-9637-4ad7-bbc4-995460e93f9c)) + (segment (start 92.193489 103.623489) (end 93.218031 104.648031) (width 0.25) (layer "F.Cu") (net 22) (tstamp 86fe76c3-35c3-4421-8b8f-9172e918d139)) + (segment (start 92.193489 102.116511) (end 92.193489 103.623489) (width 0.25) (layer "F.Cu") (net 22) (tstamp a17264e1-ea7a-4dbf-adf1-ebecb539d242)) + (segment (start 93.218031 104.648031) (end 111.251969 104.648031) (width 0.25) (layer "F.Cu") (net 22) (tstamp c1426dfe-f6a7-4167-969f-5c05642cf905)) + (segment (start 111.251969 104.648031) (end 116.731489 99.168511) (width 0.25) (layer "F.Cu") (net 22) (tstamp c15cebbb-a6ee-4e47-89b1-ddec340a2783)) + (segment (start 102.88 97.023) (end 101.755489 98.147511) (width 0.25) (layer "F.Cu") (net 23) (tstamp 32740eb5-90d6-41e7-a9da-5571154a6a60)) + (segment (start 93.218 96.647) (end 93.218 91.948) (width 0.25) (layer "F.Cu") (net 23) (tstamp 3c82d5c1-5193-4038-80f6-21e6a90f1c83)) + (segment (start 94.718511 98.147511) (end 93.218 96.647) (width 0.25) (layer "F.Cu") (net 23) (tstamp 52fad88d-d5bd-466d-ba7f-1e9db609ab3c)) + (segment (start 101.755489 98.147511) (end 94.718511 98.147511) (width 0.25) (layer "F.Cu") (net 23) (tstamp e85b00bd-d0fe-4f4b-866e-9e87721affe1)) + (segment (start 124.597 86.878) (end 130.284 86.878) (width 0.25) (layer "F.Cu") (net 28) (tstamp e89614cf-46dc-4e8c-9f9d-884c1f045f07)) + (segment (start 124.587 113.284) (end 123.462489 112.159489) (width 0.25) (layer "F.Cu") (net 32) (tstamp 0cb1f993-0946-450e-8e81-b0e2e0b7bd53)) + (segment (start 123.462489 109.328511) (end 124.587 108.204) (width 0.25) (layer "F.Cu") (net 32) (tstamp 1be3ab3b-222e-4094-b7f5-e00534383aa2)) + (segment (start 123.462489 112.159489) (end 123.462489 109.328511) (width 0.25) (layer "F.Cu") (net 32) (tstamp fb509c51-ac90-459b-90e3-307a4653271e)) + (segment (start 95.255 91.948) (end 95.26 91.943) (width 0.25) (layer "F.Cu") (net 37) (tstamp d2c81f6d-240e-49f1-bff3-1ec7514ff47e)) + +) diff --git a/Schematics/Trem.kicad_sch b/Schematics/Trem.kicad_sch index 0c7235e..093bd4a 100644 --- a/Schematics/Trem.kicad_sch +++ b/Schematics/Trem.kicad_sch @@ -1,3996 +1,3996 @@ -(kicad_sch (version 20211123) (generator eeschema) - - (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) - - (paper "A4") - - (title_block - (title "Tremelo Pedal V1") - (date "2022-07-17") - (rev "2") - (company "Dennis Gunia") - (comment 1 "https://github.com/dennis9819/Tremelo-Effect-Pedal") - (comment 3 "Good shielding is required! Use a aluminium box and prevent radio interference") - (comment 4 "9V DC Supply (max 50mA power consumption)") - ) - - (lib_symbols - (symbol "Amplifier_Operational:LM13700" (pin_names (offset 0.127)) (in_bom yes) (on_board yes) - (property "Reference" "U" (id 0) (at 3.81 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "LM13700" (id 1) (at 5.08 -5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at -7.62 0.635 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm13700.pdf" (id 3) (at -7.62 0.635 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_locked" "" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "operational transconductance amplifier OTA" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Dual Operational Transconductance Amplifiers with Linearizing Diodes and Buffers, DIP-16/SOIC-16" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SOIC*3.9x9.9mm*P1.27mm* DIP*W7.62mm*" (id 7) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LM13700_1_1" - (polyline - (pts - (xy 3.81 -0.635) - (xy 3.81 -2.54) - (xy 5.08 -2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - (xy 5.08 0) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 0 0) (length 2.54) - (name "DIODE_BIAS" (effects (font (size 0.508 0.508)))) - (number "15" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at 7.62 -2.54 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "16" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LM13700_2_0" - (polyline - (pts - (xy -1.905 2.54) - (xy -3.175 2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "LM13700_2_1" - (circle (center -2.54 1.905) (radius 0.254) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (polyline - (pts - (xy -3.81 -0.635) - (xy -2.54 -1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.81 1.27) - (xy -3.81 -1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 -1.905) - (xy -1.27 -2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 0) - (xy -2.54 -2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.81 0.635) - (xy -2.54 1.27) - (xy -2.54 1.905) - (xy -2.54 2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 -1.27) - (xy -3.175 -0.635) - (xy -3.175 -1.27) - (xy -2.54 -1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (polyline - (pts - (xy -2.54 -0.635) - (xy -1.27 0) - (xy -1.27 1.905) - (xy -2.54 1.905) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 -2.54) - (xy -1.905 -1.905) - (xy -1.905 -2.54) - (xy -1.27 -2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (text "V+" (at -2.54 3.81 0) - (effects (font (size 1.27 1.27))) - ) - (pin input line (at -7.62 0 0) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 2.54 -2.54 180) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LM13700_3_1" - (polyline - (pts - (xy 3.81 -0.635) - (xy 3.81 -2.54) - (xy 5.08 -2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - (xy 5.08 0) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - (pin input line (at 7.62 -2.54 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 0 0) (length 2.54) - (name "DIODE_BIAS" (effects (font (size 0.508 0.508)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LM13700_4_0" - (polyline - (pts - (xy -3.175 2.54) - (xy -1.905 2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (text "V+" (at -2.54 3.81 0) - (effects (font (size 1.27 1.27))) - ) - ) - (symbol "LM13700_4_1" - (circle (center -2.54 1.905) (radius 0.254) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (polyline - (pts - (xy -3.81 -0.635) - (xy -2.54 -1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.81 1.27) - (xy -3.81 -1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 -1.905) - (xy -1.27 -2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 0) - (xy -2.54 -2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.81 0.635) - (xy -2.54 1.27) - (xy -2.54 2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.54 -1.27) - (xy -3.175 -0.635) - (xy -3.175 -1.27) - (xy -2.54 -1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (polyline - (pts - (xy -2.54 -0.635) - (xy -1.27 0) - (xy -1.27 1.905) - (xy -2.54 1.905) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 -2.54) - (xy -1.905 -1.905) - (xy -1.905 -2.54) - (xy -1.27 -2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (pin input line (at -7.62 0 0) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 2.54 -2.54 180) (length 3.81) - (name "~" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "LM13700_5_1" - (pin power_in line (at -2.54 7.62 270) (length 3.81) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 -7.62 90) (length 3.81) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Amplifier_Operational:TL072" (pin_names (offset 0.127)) (in_bom yes) (on_board yes) - (property "Reference" "U" (id 0) (at 0 5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "TL072" (id 1) (at 0 -5.08 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_locked" "" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27))) - ) - (property "ki_keywords" "dual opamp" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Dual Low-Noise JFET-Input Operational Amplifiers, DIP-8/SOIC-8" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* TO*99* OnSemi*Micro8* TSSOP*3x3mm*P0.65mm* TSSOP*4.4x3mm*P0.65mm* MSOP*3x3mm*P0.65mm* SSOP*3.9x4.9mm*P0.635mm* LFCSP*2x2mm*P0.5mm* *SIP* SOIC*5.3x6.2mm*P1.27mm*" (id 7) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "TL072_1_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "TL072_2_1" - (polyline - (pts - (xy -5.08 5.08) - (xy 5.08 0) - (xy -5.08 -5.08) - (xy -5.08 5.08) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - (pin input line (at -7.62 2.54 0) (length 2.54) - (name "+" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin input line (at -7.62 -2.54 0) (length 2.54) - (name "-" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin output line (at 7.62 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - ) - (symbol "TL072_3_1" - (pin power_in line (at -2.54 -7.62 90) (length 3.81) - (name "V-" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at -2.54 7.62 270) (length 3.81) - (name "V+" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Connector:AudioJack2" (in_bom yes) (on_board yes) - (property "Reference" "J" (id 0) (at 0 8.89 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "AudioJack2" (id 1) (at 0 6.35 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "audio jack receptacle mono phone headphone TS connector" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Audio Jack, 2 Poles (Mono / TS)" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Jack*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "AudioJack2_0_1" - (rectangle (start -3.81 0) (end -2.54 -2.54) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start -2.54 3.81) (end 2.54 -2.54) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - (polyline - (pts - (xy 0 0) - (xy 0.635 -0.635) - (xy 1.27 0) - (xy 2.54 0) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 2.54) - (xy -0.635 2.54) - (xy -0.635 0) - (xy -1.27 -0.635) - (xy -1.905 0) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "AudioJack2_1_1" - (pin passive line (at 5.08 2.54 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "S" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 5.08 0 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "T" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Connector:Jack-DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) - (property "Reference" "J" (id 0) (at 0 5.334 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "Jack-DC" (id 1) (at 0 -5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at 1.27 -1.016 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 1.27 -1.016 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "DC power barrel jack connector" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "DC Barrel Jack" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "BarrelJack*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Jack-DC_0_1" - (rectangle (start -5.08 3.81) (end 5.08 -3.81) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - (arc (start -3.302 3.175) (mid -3.937 2.54) (end -3.302 1.905) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (arc (start -3.302 3.175) (mid -3.937 2.54) (end -3.302 1.905) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (polyline - (pts - (xy 5.08 2.54) - (xy 3.81 2.54) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.81 -2.54) - (xy -2.54 -2.54) - (xy -1.27 -1.27) - (xy 0 -2.54) - (xy 2.54 -2.54) - (xy 5.08 -2.54) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 3.683 3.175) (end -3.302 1.905) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - ) - (symbol "Jack-DC_1_1" - (pin passive line (at 7.62 2.54 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 7.62 -2.54 180) (length 2.54) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) - (property "Reference" "C" (id 0) (at 0.635 2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "C" (id 1) (at 0.635 -2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "C_0_1" - (polyline - (pts - (xy -2.032 -0.762) - (xy 2.032 -0.762) - ) - (stroke (width 0.508) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -2.032 0.762) - (xy 2.032 0.762) - ) - (stroke (width 0.508) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "C_1_1" - (pin passive line (at 0 3.81 270) (length 2.794) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -3.81 90) (length 2.794) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) - (property "Reference" "C" (id 0) (at 0.635 2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "C_Polarized_0_1" - (rectangle (start -2.286 0.508) (end 2.286 1.016) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.778 2.286) - (xy -0.762 2.286) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 2.794) - (xy -1.27 1.778) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (rectangle (start 2.286 -0.508) (end -2.286 -1.016) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - ) - (symbol "C_Polarized_1_1" - (pin passive line (at 0 3.81 270) (length 2.794) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -3.81 90) (length 2.794) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "D" (id 0) (at 0 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "D" (id 1) (at 0 -2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "diode" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Diode" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "D_0_1" - (polyline - (pts - (xy -1.27 1.27) - (xy -1.27 -1.27) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 0) - (xy -1.27 0) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 1.27) - (xy 1.27 -1.27) - (xy -1.27 0) - (xy 1.27 1.27) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "D_1_1" - (pin passive line (at -3.81 0 0) (length 2.54) - (name "K" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 3.81 0 180) (length 2.54) - (name "A" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "D" (id 0) (at 0 2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "LED" (id 1) (at 0 -2.54 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "LED diode" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "LED_0_1" - (polyline - (pts - (xy -1.27 -1.27) - (xy -1.27 1.27) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.27 0) - (xy 1.27 0) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 -1.27) - (xy 1.27 1.27) - (xy -1.27 0) - (xy 1.27 -1.27) - ) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -3.048 -0.762) - (xy -4.572 -2.286) - (xy -3.81 -2.286) - (xy -4.572 -2.286) - (xy -4.572 -1.524) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.778 -0.762) - (xy -3.302 -2.286) - (xy -2.54 -2.286) - (xy -3.302 -2.286) - (xy -3.302 -1.524) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "LED_1_1" - (pin passive line (at -3.81 0 0) (length 2.54) - (name "K" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 3.81 0 180) (length 2.54) - (name "A" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:Q_NPN_EBC" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) - (property "Reference" "Q" (id 0) (at 5.08 1.27 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "Q_NPN_EBC" (id 1) (at 5.08 -1.27 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 5.08 2.54 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "transistor NPN" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "NPN transistor, emitter/base/collector" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "Q_NPN_EBC_0_1" - (polyline - (pts - (xy 0.635 0.635) - (xy 2.54 2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.635 -0.635) - (xy 2.54 -2.54) - (xy 2.54 -2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 0.635 1.905) - (xy 0.635 -1.905) - (xy 0.635 -1.905) - ) - (stroke (width 0.508) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.27 -1.778) - (xy 1.778 -1.27) - (xy 2.286 -2.286) - (xy 1.27 -1.778) - (xy 1.27 -1.778) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (circle (center 1.27 0) (radius 2.8194) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "Q_NPN_EBC_1_1" - (pin passive line (at 2.54 -5.08 90) (length 2.54) - (name "E" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 0 0) (length 5.715) - (name "B" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 2.54 5.08 270) (length 2.54) - (name "C" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "R" (id 0) (at 2.032 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "R" (id 1) (at 0 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at -1.778 0 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Resistor" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "R_0_1" - (rectangle (start -1.016 -2.54) (end 1.016 2.54) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "R_1_1" - (pin passive line (at 0 3.81 270) (length 1.27) - (name "~" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 0 -3.81 90) (length 1.27) - (name "~" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Device:R_Potentiometer" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "RV" (id 0) (at -4.445 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "R_Potentiometer" (id 1) (at -2.54 0 90) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "resistor variable" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Potentiometer" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "Potentiometer*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "R_Potentiometer_0_1" - (polyline - (pts - (xy 2.54 0) - (xy 1.524 0) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 1.143 0) - (xy 2.286 0.508) - (xy 2.286 -0.508) - (xy 1.143 0) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type outline)) - ) - (rectangle (start 1.016 2.54) (end -1.016 -2.54) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "R_Potentiometer_1_1" - (pin passive line (at 0 3.81 270) (length 1.27) - (name "1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 3.81 0 180) (length 1.27) - (name "2" (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 1.27) - (name "3" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "MCU_Microchip_ATtiny:ATtiny44A-P" (in_bom yes) (on_board yes) - (property "Reference" "U" (id 0) (at -12.7 21.59 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - ) - (property "Value" "ATtiny44A-P" (id 1) (at 2.54 -21.59 0) - (effects (font (size 1.27 1.27)) (justify left top)) - ) - (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27) italic) hide) - ) - (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc8183.pdf" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "AVR 8bit Microcontroller tinyAVR" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "20MHz, 4kB Flash, 256B SRAM, 256B EEPROM, debugWIRE, DIP-14" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "DIP*W7.62mm*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "ATtiny44A-P_0_1" - (rectangle (start -12.7 -20.32) (end 12.7 20.32) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - ) - (symbol "ATtiny44A-P_1_1" - (pin power_in line (at 0 22.86 270) (length 2.54) - (name "VCC" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 7.62 180) (length 2.54) - (name "PA3" (effects (font (size 1.27 1.27)))) - (number "10" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 10.16 180) (length 2.54) - (name "PA2" (effects (font (size 1.27 1.27)))) - (number "11" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 12.7 180) (length 2.54) - (name "PA1" (effects (font (size 1.27 1.27)))) - (number "12" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 15.24 180) (length 2.54) - (name "AREF/PA0" (effects (font (size 1.27 1.27)))) - (number "13" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -22.86 90) (length 2.54) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "14" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -7.62 180) (length 2.54) - (name "XTAL1/PB0" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -10.16 180) (length 2.54) - (name "XTAL2/PB1" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -15.24 180) (length 2.54) - (name "~{RESET}/PB3" (effects (font (size 1.27 1.27)))) - (number "4" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -12.7 180) (length 2.54) - (name "PB2" (effects (font (size 1.27 1.27)))) - (number "5" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 -2.54 180) (length 2.54) - (name "PA7" (effects (font (size 1.27 1.27)))) - (number "6" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 0 180) (length 2.54) - (name "PA6" (effects (font (size 1.27 1.27)))) - (number "7" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 2.54 180) (length 2.54) - (name "PA5" (effects (font (size 1.27 1.27)))) - (number "8" (effects (font (size 1.27 1.27)))) - ) - (pin bidirectional line (at 15.24 5.08 180) (length 2.54) - (name "PA4" (effects (font (size 1.27 1.27)))) - (number "9" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Regulator_Linear:L7805" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) - (property "Reference" "U" (id 0) (at -3.81 3.175 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "L7805" (id 1) (at 0 3.175 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 0.635 -3.81 0) - (effects (font (size 1.27 1.27) italic) (justify left) hide) - ) - (property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/41/4f/b3/b0/12/d4/47/88/CD00000444.pdf/files/CD00000444.pdf/jcr:content/translations/en.CD00000444.pdf" (id 3) (at 0 -1.27 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "Voltage Regulator 1.5A Positive" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Positive 1.5A 35V Linear Regulator, Fixed Output 5V, TO-220/TO-263/TO-252" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_fp_filters" "TO?252* TO?263* TO?220*" (id 6) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "L7805_0_1" - (rectangle (start -5.08 1.905) (end 5.08 -5.08) - (stroke (width 0.254) (type default) (color 0 0 0 0)) - (fill (type background)) - ) - ) - (symbol "L7805_1_1" - (pin power_in line (at -7.62 0 0) (length 2.54) - (name "IN" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin power_in line (at 0 -7.62 90) (length 2.54) - (name "GND" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - (pin power_out line (at 7.62 0 180) (length 2.54) - (name "OUT" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) - (property "Reference" "SW" (id 0) (at 1.27 2.54 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "SW_Push" (id 1) (at 0 -1.524 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at 0 5.08 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 5.08 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "SW_Push_0_1" - (circle (center -2.032 0) (radius 0.508) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 1.27) - (xy 0 3.048) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 2.54 1.27) - (xy -2.54 1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (circle (center 2.032 0) (radius 0.508) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (pin passive line (at -5.08 0 0) (length 2.54) - (name "1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at 5.08 0 180) (length 2.54) - (name "2" (effects (font (size 1.27 1.27)))) - (number "2" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "Switch:SW_SPDT_MSM" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) - (property "Reference" "SW" (id 0) (at 0 5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Value" "SW_SPDT_MSM" (id 1) (at 0 -5.08 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "switch spdt single-pole double-throw ON-OFF-ON" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Switch, single pole double throw, center OFF position" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "SW_SPDT_MSM_0_0" - (circle (center -2.032 0) (radius 0.508) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy -1.524 0.127) - (xy 1.778 1.016) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (circle (center 2.032 -2.54) (radius 0.508) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "SW_SPDT_MSM_0_1" - (circle (center 2.032 2.54) (radius 0.508) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (circle (center 2.286 0) (radius 0.508) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "SW_SPDT_MSM_1_1" - (pin passive line (at 5.08 2.54 180) (length 2.54) - (name "1" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - (pin passive line (at -5.08 0 0) (length 2.54) - (name "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 2.54) - (name "3" (effects (font (size 1.27 1.27)))) - (number "3" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (id 1) (at 0 3.556 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "+5V_0_1" - (polyline - (pts - (xy -0.762 1.27) - (xy 0 2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 0) - (xy 0 2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 2.54) - (xy 0.762 1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "+5V_1_1" - (pin power_in line (at 0 0 90) (length 0) hide - (name "+5V" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:+9V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+9V" (id 1) (at 0 3.556 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"+9V\"" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "+9V_0_1" - (polyline - (pts - (xy -0.762 1.27) - (xy 0 2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 0) - (xy 0 2.54) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - (polyline - (pts - (xy 0 2.54) - (xy 0.762 1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "+9V_1_1" - (pin power_in line (at 0 0 90) (length 0) hide - (name "+9V" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) - (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 0 -3.81 0) - (effects (font (size 1.27 1.27))) - ) - (property "Footprint" "" (id 2) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) - (effects (font (size 1.27 1.27)) hide) - ) - (symbol "GND_0_1" - (polyline - (pts - (xy 0 0) - (xy 0 -1.27) - (xy 1.27 -1.27) - (xy 0 -2.54) - (xy -1.27 -1.27) - (xy 0 -1.27) - ) - (stroke (width 0) (type default) (color 0 0 0 0)) - (fill (type none)) - ) - ) - (symbol "GND_1_1" - (pin power_in line (at 0 0 270) (length 0) hide - (name "GND" (effects (font (size 1.27 1.27)))) - (number "1" (effects (font (size 1.27 1.27)))) - ) - ) - ) - ) - - (junction (at 141.605 25.4) (diameter 0) (color 0 0 0 0) - (uuid 1ae850f4-d021-43fa-ab6f-dddb52536f0d) - ) - (junction (at 81.915 88.9) (diameter 0) (color 0 0 0 0) - (uuid 1b161928-e34e-4737-a937-0395bfcf9fbe) - ) - (junction (at 187.96 135.255) (diameter 0) (color 0 0 0 0) - (uuid 1c4555b0-5091-4d50-9931-dcb24aeebf11) - ) - (junction (at 167.005 70.485) (diameter 0) (color 0 0 0 0) - (uuid 21297d1c-7d09-4591-9a2c-a4496845e8c6) - ) - (junction (at 86.995 43.18) (diameter 0) (color 0 0 0 0) - (uuid 25bd36d2-bb7a-4e9a-b5ee-dda5cbb99034) - ) - (junction (at 88.265 66.04) (diameter 0) (color 0 0 0 0) - (uuid 25dec10f-b1f9-4cec-b992-7bac2134a6a6) - ) - (junction (at 93.345 76.2) (diameter 0) (color 0 0 0 0) - (uuid 265ec7f8-e65e-4c35-a9ec-8ac438e025fc) - ) - (junction (at 93.345 88.9) (diameter 0) (color 0 0 0 0) - (uuid 3a77d73c-9add-4213-9a0b-76d71d494c8f) - ) - (junction (at 188.595 40.64) (diameter 0) (color 0 0 0 0) - (uuid 3aac1803-9108-480d-abc5-940229148d14) - ) - (junction (at 81.915 76.2) (diameter 0) (color 0 0 0 0) - (uuid 407d7d19-3029-4022-8a9f-eb5980b195ed) - ) - (junction (at 66.675 88.9) (diameter 0) (color 0 0 0 0) - (uuid 4127b6bc-26fd-49e2-92fa-33cbff0664f7) - ) - (junction (at 247.015 44.45) (diameter 0) (color 0 0 0 0) - (uuid 5222214e-9eca-4fcc-b516-3a851bbf14a7) - ) - (junction (at 109.855 105.41) (diameter 0) (color 0 0 0 0) - (uuid 58db1402-172b-4613-b7b1-3b274b1522ae) - ) - (junction (at 133.985 25.4) (diameter 0) (color 0 0 0 0) - (uuid 5a0bd9a6-0934-4225-b966-f0a3b84e77ab) - ) - (junction (at 151.765 70.485) (diameter 0) (color 0 0 0 0) - (uuid 601d9520-7ca2-43e8-a600-f6c62d25fc46) - ) - (junction (at 133.985 40.64) (diameter 0) (color 0 0 0 0) - (uuid 618e54c5-115b-4114-9fd4-7cbaaec48c7d) - ) - (junction (at 66.675 66.04) (diameter 0) (color 0 0 0 0) - (uuid 64a8c911-6ac6-4eef-a66a-daab671d483a) - ) - (junction (at 109.855 96.52) (diameter 0) (color 0 0 0 0) - (uuid 6597588f-cc04-4f33-9248-1b8bdafb67f6) - ) - (junction (at 167.005 65.405) (diameter 0) (color 0 0 0 0) - (uuid 6a0d7fd5-ec74-4c26-a53f-c24ffc609d6d) - ) - (junction (at 88.265 25.4) (diameter 0) (color 0 0 0 0) - (uuid 7653512d-7c5e-46df-b160-95349616235f) - ) - (junction (at 113.665 76.2) (diameter 0) (color 0 0 0 0) - (uuid 7bdcd188-697b-45da-822c-fdf7bfb2d9fe) - ) - (junction (at 74.295 66.04) (diameter 0) (color 0 0 0 0) - (uuid 9d8d7b4d-2223-4af6-8132-3626f9449703) - ) - (junction (at 85.725 88.9) (diameter 0) (color 0 0 0 0) - (uuid 9efea54c-6552-48d1-ad1e-d118f0d36a6f) - ) - (junction (at 65.405 53.34) (diameter 0) (color 0 0 0 0) - (uuid a9ee738a-72b3-43fb-b905-3f0e42eec87c) - ) - (junction (at 97.155 105.41) (diameter 0) (color 0 0 0 0) - (uuid adcab203-cf85-458d-9bde-361e506660f9) - ) - (junction (at 205.105 142.24) (diameter 0) (color 0 0 0 0) - (uuid bc7f88c3-8e45-44bf-a34d-e98a4463c570) - ) - (junction (at 205.105 132.715) (diameter 0) (color 0 0 0 0) - (uuid c19e0efb-34a3-49d0-a0c3-02e74e4cec3f) - ) - (junction (at 65.405 43.18) (diameter 0) (color 0 0 0 0) - (uuid cae40463-4313-49bd-bca6-6f60af70ac68) - ) - (junction (at 231.775 34.29) (diameter 0) (color 0 0 0 0) - (uuid d178a976-ceac-4446-92bd-a15abdb74d2c) - ) - (junction (at 74.295 88.9) (diameter 0) (color 0 0 0 0) - (uuid db4e8a23-0d97-4b92-9c8e-dc9901bdd15b) - ) - (junction (at 167.005 38.1) (diameter 0) (color 0 0 0 0) - (uuid e352bae8-13e3-401d-89fc-f89b77477545) - ) - (junction (at 81.915 66.04) (diameter 0) (color 0 0 0 0) - (uuid fd0f017c-fd55-4c79-ae34-f9da7a319b38) - ) - (junction (at 107.315 40.64) (diameter 0) (color 0 0 0 0) - (uuid fdabea90-8011-491c-ba8c-6810370a7153) - ) - - (no_connect (at 149.225 38.1) (uuid 9a78a0c9-9986-4d50-9037-603f280c3485)) - (no_connect (at 194.945 144.78) (uuid f6ae9d5c-279d-4c55-a926-a007b5c8f62c)) - - (wire (pts (xy 208.28 93.345) (xy 207.01 93.345)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 013d1f3b-805c-4a53-8ec8-a564d634f807) - ) - (wire (pts (xy 102.235 53.34) (xy 107.315 53.34)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 0191e7cd-57e8-4a66-b8b1-c6c919dea6a2) - ) - (wire (pts (xy 205.105 142.24) (xy 205.105 144.145)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 05148e51-6c7f-460b-a76a-2e3c14343ec2) - ) - (wire (pts (xy 66.675 66.04) (xy 74.295 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 06c1e68b-5ff0-4636-b607-e0789ffb0b2b) - ) - (polyline (pts (xy 192.405 58.42) (xy 274.955 58.42)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 08804f55-705c-43f9-831b-afe1db0c7cbf) - ) - - (wire (pts (xy 141.605 33.02) (xy 141.605 35.56)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 093c16b6-b6b4-4763-b7fa-aea46694cde5) - ) - (wire (pts (xy 107.315 40.64) (xy 107.315 53.34)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 09743f62-cc08-493f-b843-947492d0e70c) - ) - (wire (pts (xy 167.005 40.64) (xy 164.465 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 09a121d6-6650-4c08-be41-7dc64da4372a) - ) - (wire (pts (xy 93.345 88.9) (xy 113.665 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 09d877ca-482e-4d5b-a58c-100fa468dced) - ) - (wire (pts (xy 259.715 41.91) (xy 253.365 41.91)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 09eaf0de-1c55-4484-babe-61a6522fb52a) - ) - (wire (pts (xy 81.915 76.2) (xy 93.345 76.2)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 0b4e7df1-f063-4647-a85a-2ed2a2610610) - ) - (wire (pts (xy 167.005 43.815) (xy 167.005 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 0c07059f-6482-4a9c-b418-4aacad648414) - ) - (wire (pts (xy 247.015 43.18) (xy 247.015 44.45)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 0e094661-2e48-41bd-bb5e-f81a27073860) - ) - (wire (pts (xy 208.28 109.855) (xy 208.28 93.345)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 0fe6f6c1-0223-478b-a8ec-f20e3977237c) - ) - (polyline (pts (xy 125.095 81.915) (xy 274.955 81.915)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 1142b19c-a818-4ddd-8471-a94f1dae0b64) - ) - - (wire (pts (xy 187.96 135.255) (xy 207.645 135.255)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 1844a2be-04a4-4332-ac74-87544ce29c70) - ) - (wire (pts (xy 189.865 132.715) (xy 194.945 132.715)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 1a4cee9c-0cdc-42ca-a658-b9a308dad563) - ) - (wire (pts (xy 59.055 45.72) (xy 60.325 45.72)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 1af271ab-eaf4-4453-ad9f-6b3493d5dff3) - ) - (wire (pts (xy 167.005 51.435) (xy 167.005 65.405)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 1bd8d8f4-5862-405e-b922-d1ffd4c6bf17) - ) - (wire (pts (xy 97.155 105.41) (xy 109.855 105.41)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 21ddc724-20e1-499e-b5cc-004fe5177f06) - ) - (wire (pts (xy 53.975 80.645) (xy 53.975 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 21ec8565-ab59-4b97-a431-0acdb77205e0) - ) - (wire (pts (xy 167.005 33.02) (xy 167.005 38.1)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 22be73ca-f70c-470e-9535-40b4f7917278) - ) - (wire (pts (xy 141.605 35.56) (xy 149.225 35.56)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 2462605b-695a-4cb6-b652-b17bdd8b2943) - ) - (wire (pts (xy 167.005 70.485) (xy 167.005 65.405)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 2482e87e-1cb0-40cf-b202-f54966213394) - ) - (wire (pts (xy 88.265 38.1) (xy 90.805 38.1)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 266895fa-6ad4-44ed-bb39-fadda6cfebc1) - ) - (wire (pts (xy 86.995 43.18) (xy 90.805 43.18)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 26f468b2-3062-41e2-b2c1-23540eb1fbba) - ) - (wire (pts (xy 187.96 135.255) (xy 187.96 132.715)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 27d1b9c9-c408-4112-9f24-c3e854a42e10) - ) - (wire (pts (xy 118.11 105.41) (xy 118.11 104.14)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 2854693c-9461-4e71-8a0d-9fcc75cce790) - ) - (wire (pts (xy 65.405 52.07) (xy 65.405 53.34)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 29a77cf4-e91e-46dd-a713-0f4c9181869d) - ) - (wire (pts (xy 60.325 45.72) (xy 60.325 53.34)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 29b142bc-34ac-4fbb-80ca-4dd4cc58aea8) - ) - (wire (pts (xy 88.265 25.4) (xy 88.265 38.1)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 2fe1b1db-e62c-431e-8bcb-4da57360987a) - ) - (wire (pts (xy 167.005 65.405) (xy 163.195 65.405)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 324c36e1-319d-402d-8de9-c709df497929) - ) - (polyline (pts (xy 274.955 58.42) (xy 274.955 22.225)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 36451553-0cff-424e-a248-75af2a38161a) - ) - - (wire (pts (xy 88.265 96.52) (xy 89.535 96.52)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 379cb15a-78df-45c8-8b3e-4938c028b927) - ) - (wire (pts (xy 158.115 144.145) (xy 158.115 146.05)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3951b10e-6432-449a-b8bc-97a2a4697f3d) - ) - (wire (pts (xy 113.665 76.2) (xy 113.665 78.74)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3c5b8895-c85c-4fc5-8068-da322add33b5) - ) - (wire (pts (xy 65.405 43.18) (xy 67.945 43.18)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3cc778e2-aa7c-4f85-b25b-d661d0e5cf4f) - ) - (wire (pts (xy 190.5 65.405) (xy 190.5 64.135)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3cd67fb7-b6e8-44fd-bb28-37434d804abf) - ) - (wire (pts (xy 86.995 53.34) (xy 94.615 53.34)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3d71a606-a600-406b-a3ca-a48ed454ec83) - ) - (wire (pts (xy 189.865 127.635) (xy 189.865 121.92)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3d93c9c7-db37-4229-bc5d-f98e40794c80) - ) - (polyline (pts (xy 125.095 149.86) (xy 274.955 149.86)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3f2db771-23b6-434f-8ab5-c5d628b8c7b9) - ) - (polyline (pts (xy 21.59 149.86) (xy 125.095 149.86)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3f8dc7ab-c5c9-4f53-a103-c374c4451d80) - ) - (polyline (pts (xy 125.095 149.86) (xy 125.095 58.42)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 3fb91045-dca9-4bc5-841c-97409136b6df) - ) - - (wire (pts (xy 207.645 135.255) (xy 207.645 138.43)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 421eb1de-a9ec-410d-a023-f0292952a246) - ) - (wire (pts (xy 109.855 105.41) (xy 118.11 105.41)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 4310665b-814c-4c30-9aa3-b5e28b45a80c) - ) - (wire (pts (xy 81.915 64.77) (xy 81.915 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 4709173f-fab0-46d0-803e-338cfaee027e) - ) - (wire (pts (xy 88.265 25.4) (xy 133.985 25.4)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 483d8c74-f6ea-4eab-8970-1fcf906192db) - ) - (polyline (pts (xy 108.585 58.42) (xy 21.59 58.42)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 4902387e-4ba8-4435-895a-c122e90a915b) - ) - - (wire (pts (xy 133.985 33.02) (xy 133.985 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 49a7ab2b-49b4-4f36-bf06-05294ecce5e6) - ) - (wire (pts (xy 205.105 119.38) (xy 205.105 132.715)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 4ab0e173-2d71-4dff-a7f3-bacf52638677) - ) - (wire (pts (xy 83.185 43.18) (xy 86.995 43.18)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 4ad9cf11-95a2-4997-a207-cdc1d11c8bde) - ) - (wire (pts (xy 213.995 36.83) (xy 215.265 36.83)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 4be73c54-cff3-4e9f-8338-2d8be1a7c47a) - ) - (wire (pts (xy 66.675 88.9) (xy 74.295 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5155fb3d-2aa9-4087-a838-d055ab0fcfeb) - ) - (wire (pts (xy 231.775 34.29) (xy 230.505 34.29)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 52061f07-2824-4a50-864c-66286432fea4) - ) - (wire (pts (xy 156.21 130.175) (xy 189.865 130.175)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5352b0fe-31bc-4d3b-8cbd-175477c2cdbb) - ) - (wire (pts (xy 85.725 88.9) (xy 85.725 105.41)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 537f2bf0-c1ef-4b01-a609-ef79ad172560) - ) - (wire (pts (xy 167.005 146.05) (xy 167.005 144.78)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 55dfea33-34fe-4f71-b60b-7139624fe266) - ) - (wire (pts (xy 62.865 66.04) (xy 66.675 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5620b424-67a5-49ad-9448-84241b11a1ce) - ) - (wire (pts (xy 151.765 73.025) (xy 151.765 70.485)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 58cb38ea-7be7-406c-b523-8cf5aa68e4c6) - ) - (wire (pts (xy 81.915 86.36) (xy 81.915 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5a128969-5504-4d99-8d57-dd94457ee4b6) - ) - (wire (pts (xy 59.055 43.18) (xy 65.405 43.18)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5cbceb7a-6bf3-4550-b36a-2132af52d5df) - ) - (wire (pts (xy 205.105 132.715) (xy 205.105 142.24)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5d4eabec-2e61-442a-8a56-d8f050041c7b) - ) - (wire (pts (xy 53.975 88.9) (xy 66.675 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5d92586c-cbb9-4955-939c-4878b886b8ea) - ) - (wire (pts (xy 203.835 64.135) (xy 215.265 64.135)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5de6a793-bcfb-42e0-8007-8ca8078067b7) - ) - (wire (pts (xy 207.645 138.43) (xy 210.82 138.43)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5e883b3e-d728-4d24-9e70-a09cc3fce57f) - ) - (wire (pts (xy 60.325 53.34) (xy 65.405 53.34)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 5f02029d-42cb-4300-a66b-ec2f8f9688fc) - ) - (wire (pts (xy 93.345 76.2) (xy 113.665 76.2)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 60225a2d-72c2-4c09-81c0-cfa025d979d6) - ) - (wire (pts (xy 109.855 105.41) (xy 109.855 104.14)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 60c3b4d0-d09c-4eeb-ac93-983fae796986) - ) - (wire (pts (xy 201.295 40.64) (xy 207.645 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 62251fb0-46e8-4a87-9356-3e4cd823f490) - ) - (wire (pts (xy 156.21 127.635) (xy 189.865 127.635)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 627df8b3-14c9-45df-9bf1-391e3c220dde) - ) - (wire (pts (xy 65.405 44.45) (xy 65.405 43.18)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 6287def5-62b2-4024-b166-e38fa9a13630) - ) - (wire (pts (xy 213.995 42.545) (xy 213.995 36.83)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 630104b3-93a7-481a-acf6-38a9485989dc) - ) - (wire (pts (xy 81.915 74.93) (xy 81.915 76.2)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 6429b8c8-7e66-4150-bc2e-1bbdf6d519b1) - ) - (wire (pts (xy 113.665 76.2) (xy 122.555 76.2)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 653fdf05-7ad5-427f-9ad5-b898b68fc587) - ) - (wire (pts (xy 151.765 70.485) (xy 155.575 70.485)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 65c7b335-50f8-4e94-8d86-a184c6bc3561) - ) - (wire (pts (xy 81.915 76.2) (xy 81.915 78.74)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 67384fc6-b401-4db0-9217-86a7af4c7533) - ) - (wire (pts (xy 190.5 64.135) (xy 196.215 64.135)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 67443fbf-7fe2-4837-993c-0dba01d657e0) - ) - (polyline (pts (xy 21.59 22.225) (xy 108.585 22.225)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 677608de-5fc2-4ce0-8fe7-41629f6caad8) - ) - - (wire (pts (xy 109.855 96.52) (xy 118.11 96.52)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 69e88ec0-0bf0-43c7-807f-e6ef251571a1) - ) - (wire (pts (xy 81.915 66.04) (xy 81.915 67.31)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 6c85efa9-a16c-4bc5-aa44-24a3ff9b819b) - ) - (wire (pts (xy 194.945 139.7) (xy 187.96 139.7)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 6f0c03fe-7c32-44c6-b492-9caf1578dbe8) - ) - (polyline (pts (xy 108.585 58.42) (xy 192.405 58.42)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 6f61af0a-24b7-49ed-9edf-873069062204) - ) - - (wire (pts (xy 156.21 122.555) (xy 187.96 122.555)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 72793ace-37f1-4a9c-a0f5-24fcd884768b) - ) - (wire (pts (xy 207.645 31.75) (xy 215.265 31.75)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 72883522-157e-408a-9117-c099cdcd6f32) - ) - (wire (pts (xy 207.645 46.355) (xy 207.645 52.07)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 74b9059d-63b1-4a60-94fd-9503991a30b2) - ) - (wire (pts (xy 203.2 119.38) (xy 205.105 119.38)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7537c03d-ec79-4a5d-9580-45ae5654d35b) - ) - (wire (pts (xy 247.015 34.29) (xy 247.015 35.56)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 78db2b97-67f2-4189-ba2b-e6b4e3d2637d) - ) - (wire (pts (xy 194.31 93.345) (xy 193.04 93.345)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 790c00aa-0a57-4422-ae7d-52ff696f728e) - ) - (wire (pts (xy 53.975 66.04) (xy 55.245 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7b26c7aa-4385-42c2-9201-3991ef596e00) - ) - (wire (pts (xy 158.115 136.525) (xy 158.115 135.255)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7c2dfef8-9473-495c-82d1-8053132293e3) - ) - (wire (pts (xy 156.21 107.315) (xy 194.31 107.315)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7c696931-d3b1-42b1-8fbf-da30126d66ae) - ) - (wire (pts (xy 107.315 40.64) (xy 109.855 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7f4a3ee4-131c-4681-bda1-7f567bae03ce) - ) - (wire (pts (xy 167.005 70.485) (xy 167.005 73.025)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 7f75d061-6c03-491e-b857-3d2b9fddd14f) - ) - (wire (pts (xy 88.265 66.04) (xy 90.17 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 832e54de-e213-43ec-9e8a-ef42739d25b2) - ) - (wire (pts (xy 164.465 38.1) (xy 167.005 38.1)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 848411e3-ea9a-4bb6-a872-09a4ee92303b) - ) - (wire (pts (xy 167.005 70.485) (xy 173.99 70.485)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 848470c0-08b9-4de1-9d57-0deb204c083d) - ) - (wire (pts (xy 239.395 34.29) (xy 247.015 34.29)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 850816fe-2900-4511-a878-72e55f2f6ae8) - ) - (wire (pts (xy 187.96 132.715) (xy 156.21 132.715)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 89a353b7-2652-4fdd-b446-2961dd3aea6f) - ) - (polyline (pts (xy 125.095 149.86) (xy 125.095 149.86)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 8dafb805-049f-4dd9-b2ce-87aa3b731b23) - ) - (polyline (pts (xy 274.955 81.915) (xy 274.955 58.42)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 8f07a7c2-c1f8-411d-ad07-50eed5879b29) - ) - - (wire (pts (xy 107.315 66.04) (xy 109.22 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 947e9d40-e06a-44ca-b467-01cc46bd24e4) - ) - (wire (pts (xy 194.31 107.315) (xy 194.31 93.345)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 96272f8c-f8bb-4a4f-8261-2eb2f2963763) - ) - (wire (pts (xy 156.21 104.775) (xy 180.975 104.775)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 968fceb9-2505-4d1a-a6a1-29efd6db6d3d) - ) - (wire (pts (xy 189.865 121.92) (xy 193.04 121.92)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 98b4012d-719b-442f-84fc-3ae9ddc19b5e) - ) - (wire (pts (xy 230.505 138.43) (xy 233.045 138.43)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 98b7552c-9ed7-4b65-82d8-0a13f8011eca) - ) - (wire (pts (xy 190.5 75.565) (xy 190.5 74.93)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 9ace91c9-13a6-490f-bbff-869df4cd039c) - ) - (wire (pts (xy 86.995 43.18) (xy 86.995 53.34)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 9bb158e5-5826-4ab3-9a4b-544e9a502f37) - ) - (wire (pts (xy 141.605 25.4) (xy 167.005 25.4)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 9cb600ea-79f3-4a54-8eb0-c957e5373c06) - ) - (polyline (pts (xy 21.59 58.42) (xy 21.59 22.225)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 9cd911cf-c713-4f8f-a0c9-9f2fd67f07fc) - ) - - (wire (pts (xy 79.375 25.4) (xy 88.265 25.4)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 9e6dff88-c16f-44a8-a1cd-e5b20fb20e9d) - ) - (wire (pts (xy 156.21 109.855) (xy 208.28 109.855)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid 9ff9b7c5-c5e2-4786-9d8b-21e2d52e724c) - ) - (wire (pts (xy 85.725 88.9) (xy 93.345 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid a0c46f22-ba50-421e-b7a3-c6b1ae8e37a8) - ) - (wire (pts (xy 151.765 65.405) (xy 151.765 70.485)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid a1382019-0d9b-435a-8a50-f6e6c2e9f5e8) - ) - (wire (pts (xy 253.365 41.91) (xy 253.365 44.45)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid a664a5c5-316c-4b6d-aa64-c7dc9be65575) - ) - (wire (pts (xy 133.985 25.4) (xy 141.605 25.4)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid a7520fa0-e5b4-4b2a-bdc5-ffe91ed8cc00) - ) - (wire (pts (xy 113.665 86.36) (xy 113.665 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid ae6e9aad-d6a1-4fec-821e-f6a23a3ca856) - ) - (wire (pts (xy 104.775 96.52) (xy 109.855 96.52)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b0f637e7-82e9-4cb4-a540-df6b3d4c13ca) - ) - (wire (pts (xy 167.005 117.475) (xy 167.005 80.645)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b1a261c6-ac14-4cfa-a29c-f916b02275f9) - ) - (wire (pts (xy 53.975 75.565) (xy 53.975 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b1bb36a9-e372-41dc-bac7-612609fe9734) - ) - (wire (pts (xy 220.98 93.345) (xy 219.71 93.345)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b23c5401-1a81-4203-9b04-dd496eea854a) - ) - (wire (pts (xy 187.96 139.7) (xy 187.96 135.255)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b3b9bc50-0ae5-446e-8a6a-a40268dc8e3a) - ) - (wire (pts (xy 74.295 66.04) (xy 81.915 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b3e75a1f-9da5-4c14-ba3f-160ce4fc4bd7) - ) - (wire (pts (xy 74.295 66.04) (xy 74.295 72.39)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b529b540-fe90-4dff-80e3-7cc5a9ccbb66) - ) - (wire (pts (xy 250.825 39.37) (xy 259.715 39.37)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b5617dfe-db7c-427f-bdcb-473401112710) - ) - (wire (pts (xy 65.405 53.34) (xy 65.405 54.61)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b628096d-8d4d-40c0-a034-09ace7f267b4) - ) - (wire (pts (xy 183.515 40.64) (xy 188.595 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b6dccde8-9933-40e0-9682-ef341c200ea2) - ) - (wire (pts (xy 106.045 40.64) (xy 107.315 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b705b83c-4f44-46b4-ac75-1fe4b8b01c3e) - ) - (wire (pts (xy 81.915 66.04) (xy 88.265 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b776ca6e-2890-4e0f-9d6c-5a5a023d01b6) - ) - (polyline (pts (xy 274.955 149.86) (xy 274.955 81.915)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b7af0c13-50bc-4cf1-91b5-8a04b3a713f8) - ) - - (wire (pts (xy 155.575 65.405) (xy 151.765 65.405)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid b9daf163-7c82-4586-8717-049299291796) - ) - (wire (pts (xy 66.675 66.04) (xy 66.675 72.39)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid be817474-b3b3-49ca-a8f5-6c07071e57b1) - ) - (wire (pts (xy 167.005 38.1) (xy 173.355 38.1)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid bfa85cd2-e3f1-4b12-8010-352a2dfe0e33) - ) - (polyline (pts (xy 192.405 58.42) (xy 192.405 22.225)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c14f2137-90ef-4c91-9750-b204b5b1de9b) - ) - - (wire (pts (xy 158.115 135.255) (xy 156.21 135.255)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c187b2e5-e545-4fa9-8e8a-29a7d8eee269) - ) - (wire (pts (xy 163.195 70.485) (xy 167.005 70.485)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c1b1c623-a8e6-4a00-96fb-dc77f4f1f60f) - ) - (wire (pts (xy 131.445 40.64) (xy 133.985 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c26279cc-cf58-43ec-a2b9-455e90b8ea0a) - ) - (wire (pts (xy 109.855 95.25) (xy 109.855 96.52)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c3c0107c-616c-41c9-a52a-23a65a88eb74) - ) - (wire (pts (xy 179.705 93.345) (xy 180.975 93.345)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c491b1d8-d146-426e-bc20-0e20d456ab6f) - ) - (wire (pts (xy 253.365 44.45) (xy 247.015 44.45)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c4d1e5ba-d242-4e61-8092-875767470eb3) - ) - (wire (pts (xy 180.975 104.775) (xy 180.975 93.345)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c5181957-a709-45ec-aeac-aee47cd898b2) - ) - (wire (pts (xy 81.915 88.9) (xy 85.725 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c698abea-a780-4c15-939b-1bd03b379ab9) - ) - (wire (pts (xy 210.185 46.355) (xy 207.645 46.355)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c6e44c09-2bb2-4c2f-8151-611820ed055f) - ) - (wire (pts (xy 188.595 40.64) (xy 188.595 41.91)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c6feae72-ebeb-46d4-a862-2d3b328749d0) - ) - (wire (pts (xy 231.775 46.355) (xy 231.775 34.29)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c7590e5e-e9e2-4d9d-b561-9be7ca32d793) - ) - (wire (pts (xy 48.895 75.565) (xy 53.975 75.565)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c77629b0-62de-4a36-a643-5691fbdd2af9) - ) - (wire (pts (xy 133.985 40.64) (xy 149.225 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c82bbccb-01cd-4b61-9030-bbe8d2cc46b8) - ) - (wire (pts (xy 207.645 40.64) (xy 207.645 31.75)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c905e0e5-2aad-4bd8-8428-13d3e7738498) - ) - (wire (pts (xy 109.22 66.04) (xy 109.22 67.31)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid c966f362-28c6-4f96-9b19-7179f06cce2e) - ) - (wire (pts (xy 74.295 80.01) (xy 74.295 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid cbca6edb-8a1c-4a8a-9e3b-09a8ba4f56bd) - ) - (polyline (pts (xy 192.405 22.225) (xy 108.585 22.225)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid cbfeb664-63f2-4963-8163-3b0574a3f41e) - ) - - (wire (pts (xy 188.595 49.53) (xy 188.595 52.07)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid cca22a82-cda2-4782-914d-13a4f681d6e2) - ) - (wire (pts (xy 188.595 40.64) (xy 193.675 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid cca6b15f-66c7-416b-8776-e5a58fb719bd) - ) - (wire (pts (xy 85.725 105.41) (xy 97.155 105.41)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid ce665db0-fa22-4f91-be9b-ca3c9e533776) - ) - (polyline (pts (xy 274.955 22.225) (xy 192.405 22.225)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid cf0515bd-bfc3-448d-bf9c-bb3c91278285) - ) - (polyline (pts (xy 21.59 58.42) (xy 21.59 58.42)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid d091de98-9980-486d-9b81-7bd9a6f939b2) - ) - - (wire (pts (xy 93.345 88.9) (xy 93.345 86.36)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid d1283a9c-1f75-4ba0-bafd-9e44d606d9b1) - ) - (wire (pts (xy 217.805 46.355) (xy 231.775 46.355)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid d1e02807-2a94-412a-9ec6-95423ae0beed) - ) - (wire (pts (xy 156.21 112.395) (xy 220.98 112.395)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid d4f82cce-fd98-43e9-9809-fd6c138f6ede) - ) - (wire (pts (xy 189.865 130.175) (xy 189.865 132.715)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid da9b9245-baae-4566-9693-8fec82db2079) - ) - (wire (pts (xy 247.015 44.45) (xy 247.015 45.72)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid dbb35709-b73b-4016-8cc0-1ef7693dbec7) - ) - (wire (pts (xy 117.475 40.64) (xy 123.825 40.64)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid dc4a0a52-c6d9-4a39-8f1c-4a198d900554) - ) - (polyline (pts (xy 108.585 22.225) (xy 108.585 23.495)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid dc58f3a3-ed0d-4563-9e2f-4f43392305e3) - ) - - (wire (pts (xy 181.61 70.485) (xy 182.88 70.485)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid ddacccc4-d8c8-4689-9a29-80cfd4da1790) - ) - (wire (pts (xy 220.98 112.395) (xy 220.98 93.345)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid de7605f5-5e93-4774-8abe-388c2a5dd2bf) - ) - (wire (pts (xy 233.045 138.43) (xy 233.045 133.985)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid df17e21d-d88a-4d07-b537-afcc79b75991) - ) - (wire (pts (xy 156.21 117.475) (xy 167.005 117.475)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid e2c5293d-7fa5-4569-b42c-b90e19092865) - ) - (polyline (pts (xy 21.59 58.42) (xy 21.59 149.86)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid e2f55571-aab3-4997-af69-df65d131435f) - ) - - (wire (pts (xy 88.265 66.04) (xy 88.265 96.52)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid e41c4923-b76b-41b6-9ab8-fc420e29595c) - ) - (wire (pts (xy 218.44 138.43) (xy 222.885 138.43)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid e9eb08b5-bc5b-475a-a230-0b98cb37849f) - ) - (wire (pts (xy 97.155 105.41) (xy 97.155 104.14)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid ed9efe40-d3e3-4f43-a29b-f42692832cae) - ) - (wire (pts (xy 48.895 80.645) (xy 53.975 80.645)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid ef6bd1ff-cefa-40df-ab14-539080a05d7d) - ) - (wire (pts (xy 74.295 88.9) (xy 81.915 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f0adbf75-c1b7-4389-a7d3-cda6ceb04a57) - ) - (wire (pts (xy 158.115 146.05) (xy 167.005 146.05)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f3535dba-b19b-4c44-bc62-aab34bf2cf70) - ) - (wire (pts (xy 66.675 80.01) (xy 66.675 88.9)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f490fbf7-8cb6-474e-9c71-225997f96dd5) - ) - (wire (pts (xy 93.345 76.2) (xy 93.345 78.74)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f57a1676-bccf-420e-8992-39ff2da9b98b) - ) - (wire (pts (xy 97.79 66.04) (xy 99.695 66.04)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f9674bdb-5817-401c-92ae-6dc353470325) - ) - (polyline (pts (xy 108.585 23.495) (xy 108.585 58.42)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid f9e83980-c2d9-49d2-ad44-870ce4b20cba) - ) - - (wire (pts (xy 187.96 116.84) (xy 193.04 116.84)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid fb5a1bfb-554f-4a07-ba4b-05e4e45569e5) - ) - (wire (pts (xy 187.96 122.555) (xy 187.96 116.84)) - (stroke (width 0) (type default) (color 0 0 0 0)) - (uuid fd4ad112-8213-48b6-a182-96d55c5a8e55) - ) - - (text "Output Buffer" (at 193.04 24.765 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 134f8783-0bc4-469f-8b9f-e68b13f2f372) - ) - (text "VCA" (at 109.22 24.765 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 1efa085f-3c66-4306-8839-c5612cb38e99) - ) - (text "RATE:\nDEPTH: \nSYM: \n \n \n \nMOD: " (at 227.33 99.06 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 24c096a8-c1ea-4de1-be2e-63c8882662cf) - ) - (text "SQUARE\nSINE\nTRIANGLE\n" (at 207.645 122.555 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 3a0e1d05-c77a-401f-98ff-9473cc1d6c8f) - ) - (text "Power Supply" (at 22.225 60.96 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 42088d92-71a8-4c3b-8c16-1c63e53032a7) - ) - (text "TEMPO MOD ON" (at 207.645 145.415 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 654d8edb-26bb-4869-a978-d39ce1b7088a) - ) - (text "TAP TEMPO" (at 207.645 133.985 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 6a8aa7b2-72e2-428c-980a-6d828c7463cd) - ) - (text "MOD" (at 210.185 97.79 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 9910231d-fe3e-49bd-a920-0422324dec90) - ) - (text "Modulation Frequency\nModulation Intensity\nModulation Wavform Shape\n Square: PWM\n Triangle: ->SAW\n Sine: No Effect\nTime Division/Multplier\n 16\n 8\n 4\n 2\n x1\n 1/4\n 1/4.\n 1/8\n 1/8.\n \n" - (at 234.95 119.38 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 99618a11-26d1-4fa7-8db0-7e6e70203e33) - ) - (text "Input Buffer & Pre-Amp" (at 22.225 24.765 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid a8ab9f74-b5d8-4f1d-bb7c-19640f5b85dc) - ) - (text "Vref = 4.5 (Vcc/2)" (at 93.345 75.565 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid ad17fd58-3481-4071-a67d-c0c767b23050) - ) - (text "Modulation Source Generator" (at 125.73 84.455 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid ad85e174-f76d-47cb-afc2-02303444964d) - ) - (text "DEPTH\n" (at 181.61 97.79 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid b7846394-ca01-4868-a5bc-eaac43a05bb5) - ) - (text "near U2" (at 66.675 85.09 90) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid c23575e7-94ca-403e-b2fe-7735faa0ff9a) - ) - (text "RATE" (at 168.91 97.79 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid c79ef5a2-93b9-4e47-969d-b839b8559a46) - ) - (text "PWM -> DAC" (at 125.73 60.96 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid dbddcd81-622d-4dd8-ad98-3686216972d4) - ) - (text "Vcc = 9V DC\n2.1mm Center Negative" (at 26.67 87.63 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid eb61f8f4-922c-4ecf-a636-35721551a948) - ) - (text "SYM" (at 197.485 97.79 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid f0af0722-e22b-4188-a83a-edab3929d290) - ) - - (label "VREF" (at 117.475 76.2 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 13f4df76-5af2-405c-b137-958f9a82537a) - ) - (label "VREF" (at 81.915 25.4 0) - (effects (font (size 1.27 1.27)) (justify left bottom)) - (uuid 1f043f1b-ad3f-41f5-8a13-48b62a3b7393) - ) - - (symbol (lib_id "power:+5V") (at 203.2 89.535 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 028b99d2-422b-4a47-abdf-987039c0dcc1) - (property "Reference" "#PWR020" (id 0) (at 203.2 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (id 1) (at 203.2 84.455 0)) - (property "Footprint" "" (id 2) (at 203.2 89.535 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 203.2 89.535 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4065769b-3d7a-4b33-8821-9ac12544b7ca)) - ) - - (symbol (lib_id "Device:R") (at 81.915 82.55 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 02d1e0a8-bf20-455f-b69e-845f84f2ba41) - (property "Reference" "R4" (id 0) (at 84.455 81.2799 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "" (id 1) (at 84.455 83.8199 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 80.137 82.55 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 81.915 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid fa78709e-d1fe-4fb1-9cc2-ae29e80e63e7)) - (pin "2" (uuid d997f923-5e5d-4b9c-b108-cc21ca4346dd)) - ) - - (symbol (lib_id "Switch:SW_SPDT_MSM") (at 200.025 142.24 180) (unit 1) - (in_bom yes) (on_board yes) - (uuid 045205a8-9279-485c-8038-3762c5153a72) - (property "Reference" "SW3" (id 0) (at 192.405 142.24 0)) - (property "Value" "SW_SPDT_MSM" (id 1) (at 197.485 137.795 0)) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 200.025 142.24 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 200.025 142.24 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 024a5bea-6533-48d4-80b9-25c59aab404a)) - (pin "2" (uuid 5aec48fa-e205-44d3-be3b-699c500e3af3)) - (pin "3" (uuid a0059704-bcba-49bb-a050-301debbd6921)) - ) - - (symbol (lib_id "power:+9V") (at 81.915 64.77 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 0482e22d-6842-4b20-a178-768c65edbd09) - (property "Reference" "#PWR04" (id 0) (at 81.915 68.58 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+9V" (id 1) (at 81.915 60.325 0)) - (property "Footprint" "" (id 2) (at 81.915 64.77 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 81.915 64.77 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 58c0945f-31b0-4f25-b315-dccac0ec690d)) - ) - - (symbol (lib_id "Switch:SW_Push") (at 200.025 132.715 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 049e1e3e-c904-4ddc-9991-66aa46751da7) - (property "Reference" "SW2" (id 0) (at 200.025 124.46 0)) - (property "Value" "SW_Push" (id 1) (at 200.025 127 0)) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 200.025 127.635 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 200.025 127.635 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1eafcb1d-5cd5-40ba-b36a-55630a895f1b)) - (pin "2" (uuid a03a63fd-7694-43d7-b7e9-2b0a02e66148)) - ) - - (symbol (lib_id "Device:R_Potentiometer") (at 247.015 39.37 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 05e6021f-96e5-415b-8bf8-d37fbab0152a) - (property "Reference" "RV4" (id 0) (at 244.475 38.0999 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "50k LOG" (id 1) (at 244.475 40.6399 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 247.015 39.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 247.015 39.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d939b064-8985-4b7d-8a1a-0577d1e8851f)) - (pin "2" (uuid 472bc238-5708-4bf8-a415-c57d23bfb7a9)) - (pin "3" (uuid a628dc24-91d2-4ea2-8975-062aa583ab12)) - ) - - (symbol (lib_id "Device:R_Potentiometer") (at 203.2 93.345 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 0730adea-81a1-4a16-b234-8593e2de6ad4) - (property "Reference" "RV3" (id 0) (at 200.66 92.0749 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "10k" (id 1) (at 200.66 94.6149 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 203.2 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 203.2 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 51aecb44-b850-4b4f-a730-eacda830621c)) - (pin "2" (uuid 3678b294-5dc1-47d3-aab2-57d30c7b7570)) - (pin "3" (uuid b9035079-28fb-4a9c-98bd-0c7f8ab4051f)) - ) - - (symbol (lib_id "power:GND") (at 207.645 52.07 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 09211d4d-380f-4979-9c5d-6e8d6c7c76ac) - (property "Reference" "#PWR025" (id 0) (at 207.645 58.42 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 207.645 55.88 0)) - (property "Footprint" "" (id 2) (at 207.645 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 207.645 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2a04b964-3e5a-4b1c-be78-43e7e20c9991)) - ) - - (symbol (lib_id "power:GND") (at 203.2 97.155 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 0a048047-fd7f-48d1-bed9-f49dd7c42465) - (property "Reference" "#PWR021" (id 0) (at 203.2 103.505 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 203.2 102.235 0)) - (property "Footprint" "" (id 2) (at 203.2 97.155 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 203.2 97.155 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 537ae31b-4bd6-4025-bdef-1ac6b382c6bc)) - ) - - (symbol (lib_id "Device:C_Polarized") (at 113.665 40.64 270) (unit 1) - (in_bom yes) (on_board yes) - (uuid 0d5a6edb-d525-4289-8e5a-53304df0385d) - (property "Reference" "C7" (id 0) (at 116.205 41.275 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1uF" (id 1) (at 111.125 36.83 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 109.855 41.6052 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 113.665 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ce72416e-3248-4a45-8ce4-c540a97013de)) - (pin "2" (uuid d8f55669-0574-4d4c-ad0a-f8bbf6c5c90d)) - ) - - (symbol (lib_id "power:GND") (at 215.9 97.155 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 104098dd-510e-4dd5-902b-ac13cd5f0673) - (property "Reference" "#PWR027" (id 0) (at 215.9 103.505 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 215.9 102.235 0)) - (property "Footprint" "" (id 2) (at 215.9 97.155 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 215.9 97.155 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 31415510-accb-4f0d-9fc4-3bc2a05c264f)) - ) - - (symbol (lib_id "Device:C") (at 93.345 82.55 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 10c03ca5-f28e-4dc2-b3ca-d8f478c80a3b) - (property "Reference" "C4" (id 0) (at 97.155 81.2799 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100nF" (id 1) (at 97.155 83.8199 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (id 2) (at 94.3102 86.36 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 93.345 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 7f1534df-0bd5-414d-bbeb-2df485bbbf53)) - (pin "2" (uuid 34f852f6-01a1-4595-8937-582036d30494)) - ) - - (symbol (lib_id "Device:C_Polarized") (at 74.295 76.2 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 14c45caf-2ca5-4676-9993-7894f0246edd) - (property "Reference" "C3" (id 0) (at 76.2 73.66 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100uF" (id 1) (at 74.93 78.74 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 75.2602 80.01 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 74.295 76.2 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 90383200-7bc6-4f37-9607-526efafd18e8)) - (pin "2" (uuid 2bc5f9d0-bc84-435c-86ee-6723cb506aac)) - ) - - (symbol (lib_id "Regulator_Linear:L7805") (at 97.155 96.52 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 172d14e9-0ed1-4942-9b95-1fe8560ad343) - (property "Reference" "U3" (id 0) (at 97.155 90.805 0)) - (property "Value" "L7805" (id 1) (at 97.155 93.345 0)) - (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 97.79 100.33 0) - (effects (font (size 1.27 1.27) italic) (justify left) hide) - ) - (property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/41/4f/b3/b0/12/d4/47/88/CD00000444.pdf/files/CD00000444.pdf/jcr:content/translations/en.CD00000444.pdf" (id 3) (at 97.155 97.79 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 67a7199e-70a3-43a6-9aa5-5ffd3c799ec9)) - (pin "2" (uuid 5137bbaa-a24c-4d34-b3cd-9f87adf3ee9d)) - (pin "3" (uuid 896125d5-8363-4ca8-956d-7382c0c08d07)) - ) - - (symbol (lib_id "power:GND") (at 190.5 74.93 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 1796b6dc-5a37-4073-ac31-fa5ded564a42) - (property "Reference" "#PWR019" (id 0) (at 190.5 81.28 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 190.5 80.01 0)) - (property "Footprint" "" (id 2) (at 190.5 74.93 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 190.5 74.93 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 58e51f77-d92a-445a-880b-ba1f495baf2e)) - ) - - (symbol (lib_id "power:GND") (at 61.595 116.205 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 1f5bb777-af96-4c18-b365-ead2bc6f2a22) - (property "Reference" "#PWR03" (id 0) (at 61.595 122.555 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 61.595 121.285 0)) - (property "Footprint" "" (id 2) (at 61.595 116.205 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 61.595 116.205 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 01f49349-da42-4708-974b-e088342bf5df)) - ) - - (symbol (lib_id "Connector:Jack-DC") (at 41.275 78.105 0) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 20f7c671-f9ce-45b7-9a7b-97ed319952e7) - (property "Reference" "J1" (id 0) (at 34.925 76.8349 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "Jack-DC" (id 1) (at 34.925 79.3749 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 42.545 77.089 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 42.545 77.089 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5f843d60-c0fb-4b86-ba80-51af07b8c44a)) - (pin "2" (uuid 6df3ba3b-8bdc-440a-a100-923fb51a1a5a)) - ) - - (symbol (lib_id "power:+9V") (at 72.39 100.965 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 227cfc88-6964-46a8-93ba-8181d9992999) - (property "Reference" "#PWR06" (id 0) (at 72.39 104.775 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+9V" (id 1) (at 72.39 95.885 0)) - (property "Footprint" "" (id 2) (at 72.39 100.965 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 72.39 100.965 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 9f9a9934-409e-49d0-805f-d615f3cb7f9b)) - ) - - (symbol (lib_id "Device:R") (at 127.635 40.64 90) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 22c9e179-6c43-4e67-909d-1f02b37451fb) - (property "Reference" "R7" (id 0) (at 127.635 34.29 90)) - (property "Value" "" (id 1) (at 127.635 36.83 90)) - (property "Footprint" "" (id 2) (at 127.635 42.418 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 127.635 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid c184e7b3-ec79-4ad4-b426-1cff154375ed)) - (pin "2" (uuid 1d64f58a-0d16-4159-b984-e3a231fc1b48)) - ) - - (symbol (lib_id "power:GND") (at 109.22 67.31 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 316c6249-caec-4182-91a1-63d1454b51ad) - (property "Reference" "#PWR08" (id 0) (at 109.22 73.66 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 109.22 72.39 0)) - (property "Footprint" "" (id 2) (at 109.22 67.31 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 109.22 67.31 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 38800420-a95a-41fa-b868-eeb0e81596e2)) - ) - - (symbol (lib_id "Device:R") (at 98.425 53.34 90) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 32f77ed2-d2d8-4498-b1c5-1a45c90ea279) - (property "Reference" "R6" (id 0) (at 98.425 46.99 90)) - (property "Value" "" (id 1) (at 98.425 49.53 90)) - (property "Footprint" "" (id 2) (at 98.425 55.118 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 98.425 53.34 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 3b3b739b-a8b0-44c8-ab7d-cdde45cd3943)) - (pin "2" (uuid 084b9eff-0a74-414a-a667-f0018cba6cd8)) - ) - - (symbol (lib_id "Device:R") (at 65.405 48.26 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 35f8b1cf-d587-4336-a64a-a2980024e9bd) - (property "Reference" "R1" (id 0) (at 67.945 46.9899 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "" (id 1) (at 67.945 49.5299 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 63.627 48.26 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 65.405 48.26 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid aebb5e93-f1fb-48e8-89a0-41469b7e00db)) - (pin "2" (uuid f019b33e-90cf-409e-b23d-046e36cb1970)) - ) - - (symbol (lib_id "Device:LED") (at 200.025 64.135 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 3cfe6a7f-8a66-4cb9-9d30-79a2918ce977) - (property "Reference" "D3" (id 0) (at 200.025 60.96 0)) - (property "Value" "LED_PULSE" (id 1) (at 207.01 62.865 0)) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 200.025 64.135 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 200.025 64.135 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ea0abb1c-eef6-4ece-97c4-8a6b0afe0425)) - (pin "2" (uuid 8628e550-83cc-4680-99c1-567370e3c220)) - ) - - (symbol (lib_id "Device:R") (at 167.005 29.21 180) (unit 1) - (in_bom yes) (on_board yes) - (uuid 3d86985c-8531-4937-a6d2-be484b6a01cf) - (property "Reference" "R15" (id 0) (at 168.91 27.94 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "" (id 1) (at 168.91 30.48 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 168.783 29.21 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 167.005 29.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0daf1f0c-436f-4add-834d-b057a711e3c6)) - (pin "2" (uuid 3a5ea2ed-6a5c-45a6-865b-394fef15fea4)) - ) - - (symbol (lib_id "Switch:SW_SPDT_MSM") (at 198.12 119.38 180) (unit 1) - (in_bom yes) (on_board yes) - (uuid 3df53d8a-0ef5-4cad-9d90-e6b44aee51b9) - (property "Reference" "SW1" (id 0) (at 192.405 119.38 0)) - (property "Value" "SW_SPDT_MSM" (id 1) (at 197.993 114.3 0)) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 198.12 119.38 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 198.12 119.38 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b23cd14f-b6e6-43c7-b223-ec7bac4e123b)) - (pin "2" (uuid a9910ee0-367c-485f-9ce8-4c167cadfef4)) - (pin "3" (uuid 0db6540d-9a98-4ad3-8b3d-e2998adcb40c)) - ) - - (symbol (lib_id "MCU_Microchip_ATtiny:ATtiny44A-P") (at 140.97 120.015 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 4191ef53-102f-4cd9-8f99-b7e26e6d4541) - (property "Reference" "U4" (id 0) (at 138.43 97.79 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "ATtiny44A-P" (id 1) (at 154.94 97.79 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 140.97 120.015 0) - (effects (font (size 1.27 1.27) italic) hide) - ) - (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc8183.pdf" (id 3) (at 140.97 120.015 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0705397e-5667-49da-bec8-2b0dfd59440b)) - (pin "10" (uuid c3ba8c8b-c1c7-441b-b844-68dbf07398ef)) - (pin "11" (uuid ac47b8c1-2471-4c93-bc7c-b2be785076d7)) - (pin "12" (uuid e5a25b6e-4e66-4fe2-8766-6714682f8395)) - (pin "13" (uuid 3927d38f-f3c8-493b-9544-834f06634068)) - (pin "14" (uuid 9e2502d7-e1c2-46e0-ac60-a77c0cad719b)) - (pin "2" (uuid b843e39f-db06-46bc-a5c8-b9a585e60130)) - (pin "3" (uuid be54d3cf-b964-4712-a3a6-3022623236b5)) - (pin "4" (uuid b7d5adc3-e4df-482b-aa71-6fb8fd987eb8)) - (pin "5" (uuid 29bd2fd9-9ba2-47d5-9cdd-0a209728ea36)) - (pin "6" (uuid 197ade9f-4abb-43e7-8a3c-c54baa07f544)) - (pin "7" (uuid 5f2460ac-47c2-4839-b209-4cddf65b1361)) - (pin "8" (uuid 00c0ad71-135d-45aa-9644-978bf2e26f4b)) - (pin "9" (uuid 4abbef09-9b50-4e67-99fa-c80100d5a4aa)) - ) - - (symbol (lib_id "Device:R_Potentiometer") (at 189.23 93.345 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 43757849-b532-4d70-9abd-eff55e4b1df4) - (property "Reference" "RV2" (id 0) (at 186.69 92.0749 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "10k" (id 1) (at 186.69 94.6149 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 189.23 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 189.23 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e6e5c8ec-f967-4ba0-b446-ce0737ca36e5)) - (pin "2" (uuid 54246d8e-d1cf-48cb-a541-3e5ec48f0133)) - (pin "3" (uuid 2a8b7363-8b80-4495-b890-6d9929456ebb)) - ) - - (symbol (lib_id "power:GND") (at 81.915 88.9 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 43ee0e64-2009-426d-bee8-5cbddf4c0a6a) - (property "Reference" "#PWR05" (id 0) (at 81.915 95.25 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 81.915 93.98 0)) - (property "Footprint" "" (id 2) (at 81.915 88.9 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 81.915 88.9 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f6e7b9a7-ac1e-4947-acdf-4f34c16bae8b)) - ) - - (symbol (lib_id "Device:R_Potentiometer") (at 175.895 93.345 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 4423bffb-196e-4324-b4ae-a6a7f4a011d5) - (property "Reference" "RV1" (id 0) (at 173.355 92.0749 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "10k" (id 1) (at 173.355 94.6149 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 175.895 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 175.895 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 26fe011b-193f-4bd3-91dd-0b7c7f1fdf58)) - (pin "2" (uuid 4b0c4776-395b-45fd-abfe-3c33ac62d069)) - (pin "3" (uuid 0b230915-679c-4d82-a2d4-64b5da317713)) - ) - - (symbol (lib_id "power:+9V") (at 61.595 100.965 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 444dfbdd-cbd7-4ba6-9870-8412af94aee2) - (property "Reference" "#PWR02" (id 0) (at 61.595 104.775 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+9V" (id 1) (at 61.595 95.885 0)) - (property "Footprint" "" (id 2) (at 61.595 100.965 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 61.595 100.965 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid eae18041-9da3-44f5-b9a7-1b4c4f58e795)) - ) - - (symbol (lib_id "Device:C") (at 159.385 65.405 90) (unit 1) - (in_bom yes) (on_board yes) - (uuid 457f42c3-5be7-4c16-bf1a-e05a256ab5fe) - (property "Reference" "C9" (id 0) (at 156.845 64.135 90)) - (property "Value" "330nF" (id 1) (at 159.385 61.595 90)) - (property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" (id 2) (at 163.195 64.4398 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 159.385 65.405 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 8d170399-f0ef-41c8-b923-0b2c3f069513)) - (pin "2" (uuid a411903f-4de6-4ee7-aee3-770ddf1a3374)) - ) - - (symbol (lib_id "Device:R") (at 81.915 71.12 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 497a3aba-0f0c-436e-9543-aa7c20ad968e) - (property "Reference" "R3" (id 0) (at 84.455 69.8499 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "" (id 1) (at 84.455 72.3899 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "" (id 2) (at 80.137 71.12 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 81.915 71.12 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 7bdf0f3e-3a1c-4abb-9c33-d80432067514)) - (pin "2" (uuid b180f6d0-d840-4b9f-8540-82b63ef22fd3)) - ) - - (symbol (lib_id "power:GND") (at 65.405 54.61 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 4ab64e29-964f-40b2-bf58-c546b31cd3eb) - (property "Reference" "#PWR01" (id 0) (at 65.405 60.96 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 69.215 56.515 0)) - (property "Footprint" "" (id 2) (at 65.405 54.61 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 65.405 54.61 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid df66fd3c-5f0f-4c96-be9a-937f6206ebd8)) - ) - - (symbol (lib_id "Device:R") (at 177.8 70.485 90) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 50e83388-d157-4147-9b50-698eee4a2f3a) - (property "Reference" "R13" (id 0) (at 177.8 64.135 90)) - (property "Value" "" (id 1) (at 177.8 66.675 90)) - (property "Footprint" "" (id 2) (at 177.8 72.263 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 177.8 70.485 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b77704fb-cbae-4a6d-baf7-6069fef71f98)) - (pin "2" (uuid 16514efe-bea7-4336-9c60-4176d9643ad7)) - ) - - (symbol (lib_id "Device:LED") (at 103.505 66.04 180) (unit 1) - (in_bom yes) (on_board yes) - (uuid 554d888d-23fd-4c68-a6ec-7855a536ffbb) - (property "Reference" "D2" (id 0) (at 103.505 63.5 0)) - (property "Value" "LED_ON" (id 1) (at 103.505 69.215 0)) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 103.505 66.04 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 103.505 66.04 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b3cf567f-32ed-48e5-8212-3e03b6e31796)) - (pin "2" (uuid 61ed48fb-e0a4-4d31-ba0e-2e41543cc7d6)) - ) - - (symbol (lib_id "Device:C") (at 66.675 76.2 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 55c4d32d-7c5a-4dbb-a08c-04da9db11983) - (property "Reference" "C2" (id 0) (at 67.945 73.66 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100nF" (id 1) (at 67.31 78.74 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (id 2) (at 67.6402 80.01 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 66.675 76.2 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e257f792-fc63-4778-8c30-f3b6f0a09964)) - (pin "2" (uuid 7b11dbfc-add3-40fc-873d-1ab7f08ca71b)) - ) - - (symbol (lib_id "power:GND") (at 140.97 142.875 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 580d3929-b3b7-4bb9-8578-f17e842672e9) - (property "Reference" "#PWR011" (id 0) (at 140.97 149.225 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 140.97 147.955 0)) - (property "Footprint" "" (id 2) (at 140.97 142.875 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 140.97 142.875 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 6daa1c20-bd5d-454a-b7e4-679a03e13c14)) - ) - - (symbol (lib_id "Device:R") (at 167.005 76.835 180) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 59e71b82-fd2c-4d50-9aac-2d0df67acc80) - (property "Reference" "R12" (id 0) (at 169.545 75.5649 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "" (id 1) (at 169.545 78.1049 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "" (id 2) (at 168.783 76.835 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 167.005 76.835 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 857af45d-9795-41a2-9845-b5953516cc70)) - (pin "2" (uuid 92f9a7fe-12b9-455c-b3cb-646f2e8901ef)) - ) - - (symbol (lib_id "power:+5V") (at 215.265 64.135 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 5a20406b-07fb-4d6a-b9fd-cc6e097e66ec) - (property "Reference" "#PWR024" (id 0) (at 215.265 67.945 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (id 1) (at 215.265 60.325 0)) - (property "Footprint" "" (id 2) (at 215.265 64.135 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 215.265 64.135 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid dd7f55c3-3058-4d0c-9415-58c9123c9403)) - ) - - (symbol (lib_id "power:GND") (at 205.105 144.145 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 5ab123ef-60a2-4f38-8884-167dcfc32060) - (property "Reference" "#PWR022" (id 0) (at 205.105 150.495 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 205.105 149.225 0)) - (property "Footprint" "" (id 2) (at 205.105 144.145 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 205.105 144.145 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid bdc4d9ef-b980-448c-a943-969da567b155)) - ) - - (symbol (lib_id "Device:Q_NPN_EBC") (at 187.96 70.485 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 5c3fbc86-b745-4733-8ef5-b40aa9974c3c) - (property "Reference" "Q1" (id 0) (at 193.675 69.2149 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "2N4401" (id 1) (at 193.675 71.7549 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_TO_SOT_THT:TO-92L_Inline_Wide" (id 2) (at 193.04 67.945 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 187.96 70.485 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 22dd0192-64c8-4316-afd6-d362df86b76c)) - (pin "2" (uuid 60aae65a-264e-468d-b044-b49f71acbfe5)) - (pin "3" (uuid 12938643-23eb-459b-b3a7-66e54527f212)) - ) - - (symbol (lib_id "Amplifier_Operational:TL072") (at 64.135 108.585 0) (unit 3) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 610374ca-6688-4f3a-b5c7-b926d13e70cf) - (property "Reference" "U1" (id 0) (at 62.23 107.3149 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "TL072" (id 1) (at 62.23 109.8549 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_DIP:DIP-8_W7.62mm" (id 2) (at 64.135 108.585 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (id 3) (at 64.135 108.585 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4408388e-4e95-46fe-b716-86204c528eb9)) - (pin "2" (uuid f6b17f59-e5f1-4663-a67f-b21c6e088e07)) - (pin "3" (uuid 43a25a06-f3f6-49a1-a4fb-81300fd1696c)) - (pin "5" (uuid 0bcc2307-87b0-490b-a98c-89a443305979)) - (pin "6" (uuid 6ff7fa7c-25ce-427f-b7a2-cf339b616382)) - (pin "7" (uuid c549f703-5eac-4439-afac-d4a45f6f387b)) - (pin "4" (uuid a04ed802-e6f9-4ac0-8921-0a7ddd6aff9d)) - (pin "8" (uuid 5334a6d1-9a64-4884-bca3-9784df040118)) - ) - - (symbol (lib_id "Amplifier_Operational:TL072") (at 222.885 34.29 0) (unit 2) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 67e4f302-4d84-4715-b3e0-6cf033d1a781) - (property "Reference" "U1" (id 0) (at 222.885 23.495 0)) - (property "Value" "TL072" (id 1) (at 222.885 26.035 0)) - (property "Footprint" "Package_DIP:DIP-8_W7.62mm" (id 2) (at 222.885 34.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (id 3) (at 222.885 34.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4408388e-4e95-46fe-b716-86204c528eba)) - (pin "2" (uuid f6b17f59-e5f1-4663-a67f-b21c6e088e08)) - (pin "3" (uuid 43a25a06-f3f6-49a1-a4fb-81300fd1696d)) - (pin "5" (uuid b06eefe6-45fc-440a-92a3-111a2151f65c)) - (pin "6" (uuid 99d2dfbb-12ad-45c1-94a3-b7b0a22da047)) - (pin "7" (uuid 31150aa8-205b-480f-b851-a220e78a731f)) - (pin "4" (uuid a04ed802-e6f9-4ac0-8921-0a7ddd6aff9e)) - (pin "8" (uuid 5334a6d1-9a64-4884-bca3-9784df040119)) - ) - - (symbol (lib_id "power:+5V") (at 109.855 95.25 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 6cc017cb-31ef-41ec-b157-4fd6275dabf3) - (property "Reference" "#PWR09" (id 0) (at 109.855 99.06 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (id 1) (at 109.855 90.17 0)) - (property "Footprint" "" (id 2) (at 109.855 95.25 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 109.855 95.25 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a4c4ce69-3764-448c-9e9e-beec3fe68584)) - ) - - (symbol (lib_id "Device:LED") (at 226.695 138.43 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 6f204d20-1320-451e-bd91-d4d67acfef4c) - (property "Reference" "D4" (id 0) (at 226.695 135.255 0)) - (property "Value" "" (id 1) (at 233.68 137.16 0)) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 226.695 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 226.695 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 7a5155ee-3c65-41eb-ab23-04faf9b47b56)) - (pin "2" (uuid 0331f816-00a9-4b1b-84e2-772d08f69e51)) - ) - - (symbol (lib_id "Device:R") (at 188.595 45.72 180) (unit 1) - (in_bom yes) (on_board yes) - (uuid 713e480c-bb1d-4324-8bc5-d294a306dffc) - (property "Reference" "R14" (id 0) (at 182.88 44.45 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "" (id 1) (at 182.88 46.99 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "" (id 2) (at 190.373 45.72 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 188.595 45.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid ded12e46-79e5-4e4e-91a2-0b24642bee09)) - (pin "2" (uuid 39907e47-aa54-4c73-9376-22884cdc19b1)) - ) - - (symbol (lib_id "Device:R") (at 133.985 29.21 180) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 7164d9a4-b5a8-4780-b92f-c2f1ba0b4c99) - (property "Reference" "R8" (id 0) (at 136.525 27.9399 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "" (id 1) (at 136.525 30.4799 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "" (id 2) (at 135.763 29.21 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 133.985 29.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid aa872b15-3c6d-43ce-a97c-a66bed0fb514)) - (pin "2" (uuid 5087bf57-266c-4a81-aa62-6027dc2ad225)) - ) - - (symbol (lib_id "power:GND") (at 151.765 73.025 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 7a3ec6b8-8c14-4cb4-a7a4-82b263fc2551) - (property "Reference" "#PWR012" (id 0) (at 151.765 79.375 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 151.765 78.105 0)) - (property "Footprint" "" (id 2) (at 151.765 73.025 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 151.765 73.025 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2efeb251-0d6c-4a3c-bc89-c634c084e882)) - ) - - (symbol (lib_id "Amplifier_Operational:LM13700") (at 156.845 38.1 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 7a4db53f-264c-4513-adf9-7dc22e686ece) - (property "Reference" "U2" (id 0) (at 156.845 27.94 0)) - (property "Value" "LM13700" (id 1) (at 156.845 30.48 0)) - (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 149.225 37.465 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm13700.pdf" (id 3) (at 149.225 37.465 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "12" (uuid 9a738855-67f0-4766-bd6e-ef9427c0a2f9)) - (pin "13" (uuid 99e0d92c-ac63-41cd-8b0d-6d84ded186f0)) - (pin "14" (uuid 904c25cd-1497-44dc-89b5-8b3f42850328)) - (pin "15" (uuid e5476370-aea6-41f5-8e8f-ba68da829c42)) - (pin "16" (uuid f1411285-78ff-4e80-8b64-73ba2d4b8bdd)) - (pin "10" (uuid 8327d725-4927-4d86-b0da-a2b8a1d401ee)) - (pin "9" (uuid 8628bbee-b37c-4e39-8774-81f4144893f6)) - (pin "1" (uuid f1c01991-3283-42fc-a3cf-790a782263a4)) - (pin "2" (uuid add83735-a800-4024-bd11-269836e183fc)) - (pin "3" (uuid 839371aa-de7b-488c-b5c2-95d8b57632d0)) - (pin "4" (uuid 02b794de-0206-4286-a731-bc13391f1173)) - (pin "5" (uuid edf777c4-3bd2-4b42-85e0-df3e3b0af2c2)) - (pin "7" (uuid 3a34cf5a-1539-4312-b41f-ae2b858ae423)) - (pin "8" (uuid b5159227-5454-4704-93ed-50f75d8efc58)) - (pin "11" (uuid c16feded-6628-404c-9325-ec20deb8c376)) - (pin "6" (uuid f7cf982e-8236-43dd-9c00-56db4a679b90)) - ) - - (symbol (lib_id "power:GND") (at 247.015 45.72 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid 7bc5f6ea-91bb-496e-92ef-0237017db01e) - (property "Reference" "#PWR023" (id 0) (at 247.015 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 247.015 49.53 0)) - (property "Footprint" "" (id 2) (at 247.015 45.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 247.015 45.72 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 02d5be24-1036-4d78-b8b7-1b443d15e7c8)) - ) - - (symbol (lib_id "Device:C_Polarized") (at 113.665 82.55 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 85c0451d-072e-4e38-bbeb-fb726bdf1588) - (property "Reference" "C8" (id 0) (at 117.475 80.3909 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "47uF" (id 1) (at 117.475 82.9309 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 114.6302 86.36 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 113.665 82.55 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 690323a3-1c05-46f5-9181-0c7bd326a406)) - (pin "2" (uuid 4a264c21-a267-41b7-ac6a-418785299ab4)) - ) - - (symbol (lib_id "power:GND") (at 72.39 116.205 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 87912de9-6186-4a1b-80dc-279993eb33f8) - (property "Reference" "#PWR07" (id 0) (at 72.39 122.555 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 72.39 121.285 0)) - (property "Footprint" "" (id 2) (at 72.39 116.205 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 72.39 116.205 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 7fd4e520-20ee-4477-945f-70205105c88d)) - ) - - (symbol (lib_id "power:+5V") (at 167.005 144.78 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 89688122-11ec-4f7a-8497-1527b893f637) - (property "Reference" "#PWR013" (id 0) (at 167.005 148.59 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (id 1) (at 167.005 139.7 0)) - (property "Footprint" "" (id 2) (at 167.005 144.78 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 167.005 144.78 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0252deea-6774-4294-909f-8b4eb6f1d8ca)) - ) - - (symbol (lib_id "Device:R") (at 167.005 47.625 180) (unit 1) - (in_bom yes) (on_board yes) - (uuid 8a434250-e9ef-407d-91c4-2bbe591e0528) - (property "Reference" "R11" (id 0) (at 167.64 43.815 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "" (id 1) (at 167.64 51.435 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "" (id 2) (at 168.783 47.625 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 167.005 47.625 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5b3f9d1a-f70d-4993-816b-efdeb17ee8bf)) - (pin "2" (uuid 2d1b330e-444b-40c9-b970-9a8982dae1b4)) - ) - - (symbol (lib_id "Connector:AudioJack2") (at 53.975 43.18 0) (mirror x) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid 8b2457b3-127c-4286-b842-66ceb413ea89) - (property "Reference" "J2" (id 0) (at 48.895 42.5449 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "" (id 1) (at 48.895 45.0849 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 53.975 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 53.975 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "S" (uuid a3689fa4-defc-4601-ac3c-a04865be0a53)) - (pin "T" (uuid 82b94870-9fde-4ee0-8871-ca226c2dcb2d)) - ) - - (symbol (lib_id "Device:R") (at 214.63 138.43 270) (unit 1) - (in_bom yes) (on_board yes) - (uuid a669542a-9037-4799-b818-b3bc687858da) - (property "Reference" "R16" (id 0) (at 214.63 135.89 90)) - (property "Value" "" (id 1) (at 214.63 141.605 90)) - (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 214.63 136.652 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 214.63 138.43 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 4adbe371-a2ae-45eb-a3db-2dfdf1652ec6)) - (pin "2" (uuid 84404f6f-6b2c-4b13-9e9f-e6e8c78c9f08)) - ) - - (symbol (lib_id "Device:R") (at 141.605 29.21 180) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid a75d8798-8e4c-4d92-ae26-3ecaae523cf2) - (property "Reference" "R9" (id 0) (at 144.145 27.9399 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "" (id 1) (at 144.145 30.4799 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "" (id 2) (at 143.383 29.21 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 141.605 29.21 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 1ae8d569-e39a-4cd9-8ae4-d05ff41a5f40)) - (pin "2" (uuid 2374c259-6226-4e35-b600-ac3ffd7a6c33)) - ) - - (symbol (lib_id "Device:R") (at 158.115 140.335 180) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid abdba8ff-70b1-4b5d-b32e-fb4f4f4b356e) - (property "Reference" "R10" (id 0) (at 160.655 139.0649 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "" (id 1) (at 160.655 141.6049 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "" (id 2) (at 159.893 140.335 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 158.115 140.335 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2e984b5f-535e-4033-9da6-1a9223baad59)) - (pin "2" (uuid 905fcbc8-0229-4d8e-a603-cc4eec05a5e5)) - ) - - (symbol (lib_id "Device:C") (at 109.855 100.33 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid aca917d9-776d-4afb-82cc-63883a39f6a1) - (property "Reference" "C6" (id 0) (at 110.49 98.425 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "100nF" (id 1) (at 110.49 102.87 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (id 2) (at 110.8202 104.14 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 109.855 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 5e642a33-6f07-4b5e-89a2-3290e5d10745)) - (pin "2" (uuid 5d29da10-3b69-49fd-ada7-69e01eb7d655)) - ) - - (symbol (lib_id "Amplifier_Operational:TL072") (at 98.425 40.64 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid b0a1d5e1-141a-479b-85a7-d81fadae1c0f) - (property "Reference" "U1" (id 0) (at 98.425 30.48 0)) - (property "Value" "TL072" (id 1) (at 98.425 33.02 0)) - (property "Footprint" "Package_DIP:DIP-8_W7.62mm" (id 2) (at 98.425 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (id 3) (at 98.425 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 03995448-643d-46cc-8bcd-a2e53f93088f)) - (pin "2" (uuid 4d52cbd7-76ca-4561-afa6-a27a16b341eb)) - (pin "3" (uuid 162acc47-1621-4247-b75d-aa481fd9c770)) - (pin "5" (uuid b06eefe6-45fc-440a-92a3-111a2151f65d)) - (pin "6" (uuid 99d2dfbb-12ad-45c1-94a3-b7b0a22da048)) - (pin "7" (uuid 31150aa8-205b-480f-b851-a220e78a7320)) - (pin "4" (uuid a04ed802-e6f9-4ac0-8921-0a7ddd6aff9f)) - (pin "8" (uuid 5334a6d1-9a64-4884-bca3-9784df04011a)) - ) - - (symbol (lib_id "Device:C_Polarized") (at 71.755 43.18 270) (unit 1) - (in_bom yes) (on_board yes) - (uuid b1bf0a93-94b7-4ad4-93ae-35edc64006ad) - (property "Reference" "C1" (id 0) (at 74.295 43.815 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1uF" (id 1) (at 69.215 39.37 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 67.945 44.1452 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 71.755 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b8895857-d890-4703-b7b4-99916c5e70eb)) - (pin "2" (uuid b29ca6be-f281-4a67-8670-72d056aace71)) - ) - - (symbol (lib_id "Device:R") (at 79.375 43.18 90) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid ba9dae14-ba14-4c2e-aa68-5878b7a59304) - (property "Reference" "R2" (id 0) (at 79.375 37.465 90)) - (property "Value" "" (id 1) (at 79.375 40.005 90)) - (property "Footprint" "" (id 2) (at 79.375 44.958 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 79.375 43.18 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f4904c3d-206d-4886-9c57-ed2dd73cf088)) - (pin "2" (uuid 5bd9e9e2-49b5-4367-ad9b-53214c112af0)) - ) - - (symbol (lib_id "power:+5V") (at 189.23 89.535 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid bddfcdad-083a-4c5b-8375-4d90db01b0ec) - (property "Reference" "#PWR017" (id 0) (at 189.23 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (id 1) (at 189.23 84.455 0)) - (property "Footprint" "" (id 2) (at 189.23 89.535 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 189.23 89.535 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0579a969-31dd-4ce9-9b25-20e11b1e2938)) - ) - - (symbol (lib_id "Device:C_Polarized") (at 118.11 100.33 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid c47362ce-ad1a-4f8a-a4d2-857430559736) - (property "Reference" "C11" (id 0) (at 119.38 98.425 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "47uF" (id 1) (at 118.745 102.87 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 119.0752 104.14 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 118.11 100.33 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 21520ba9-660b-44b1-bd25-f484d7c76c1f)) - (pin "2" (uuid 7dc004b3-6fe6-49c2-a5ea-321ce7bbe194)) - ) - - (symbol (lib_id "power:GND") (at 175.895 97.155 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid c8a9708f-da7c-43df-b42b-3964ac381182) - (property "Reference" "#PWR015" (id 0) (at 175.895 103.505 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 175.895 102.235 0)) - (property "Footprint" "" (id 2) (at 175.895 97.155 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 175.895 97.155 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 825bec49-a514-4c36-92a7-532273f5510c)) - ) - - (symbol (lib_id "Device:D") (at 59.055 66.04 180) (unit 1) - (in_bom yes) (on_board yes) - (uuid c9a434a4-34aa-480b-bad1-26f71e1cc532) - (property "Reference" "D1" (id 0) (at 59.055 63.5 0)) - (property "Value" "1N5817" (id 1) (at 59.055 69.215 0)) - (property "Footprint" "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal" (id 2) (at 59.055 66.04 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 59.055 66.04 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e0f487db-a872-4a2f-a23d-c8f854e9382c)) - (pin "2" (uuid 45204fba-96ef-44e9-bcf5-540d818bde73)) - ) - - (symbol (lib_id "power:GND") (at 189.23 97.155 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid c9d18710-721c-4c30-9682-f348a553a392) - (property "Reference" "#PWR018" (id 0) (at 189.23 103.505 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 189.23 102.235 0)) - (property "Footprint" "" (id 2) (at 189.23 97.155 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 189.23 97.155 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b88afc21-ab10-4cee-9f71-2c5d79248b43)) - ) - - (symbol (lib_id "Device:C_Polarized") (at 197.485 40.64 270) (unit 1) - (in_bom yes) (on_board yes) - (uuid cafe7d40-c316-4f68-8f05-8f4fa2790967) - (property "Reference" "C12" (id 0) (at 200.025 41.275 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1uF" (id 1) (at 194.945 36.83 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 193.675 41.6052 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 197.485 40.64 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 22f7a9a7-52b7-4def-9f01-74ce752895c6)) - (pin "2" (uuid 3d357196-16a7-43c8-a9c0-2fb0aec0b012)) - ) - - (symbol (lib_id "Device:R") (at 93.98 66.04 270) (unit 1) - (in_bom yes) (on_board yes) - (uuid cbbb2462-23e7-4c21-8e59-d2a396195fa2) - (property "Reference" "R5" (id 0) (at 93.98 63.5 90)) - (property "Value" "" (id 1) (at 93.98 69.215 90)) - (property "Footprint" "" (id 2) (at 93.98 64.262 90) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 93.98 66.04 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid cfa39bec-3252-47fd-8a0e-5a56b8a07c01)) - (pin "2" (uuid 29d7f80d-a2fa-4a8b-8263-fe1254c3f8c4)) - ) - - (symbol (lib_id "Device:R_Potentiometer") (at 215.9 93.345 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid d2b86a7c-bc99-41b7-8ef5-b57415e0d93e) - (property "Reference" "RV6" (id 0) (at 213.36 92.0749 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "10k" (id 1) (at 213.36 94.6149 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 215.9 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 215.9 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 2ced6f9a-c1df-4ddc-8f1b-69072c1c2326)) - (pin "2" (uuid d353db05-c5ab-4659-ae04-6e9d01fd4446)) - (pin "3" (uuid 3aa653cc-dee1-45c6-8d3d-cb8f91b54760)) - ) - - (symbol (lib_id "power:+5V") (at 215.9 89.535 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid d31acb05-1c51-48f2-a4bf-a368a5be72d2) - (property "Reference" "#PWR026" (id 0) (at 215.9 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (id 1) (at 215.9 84.455 0)) - (property "Footprint" "" (id 2) (at 215.9 89.535 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 215.9 89.535 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 93459269-d5dc-4827-97f9-b668cb08a605)) - ) - - (symbol (lib_id "power:GND") (at 188.595 52.07 0) (unit 1) - (in_bom yes) (on_board yes) - (uuid da0a608d-60e0-41ef-8b7e-95a7abf7aa22) - (property "Reference" "#PWR016" (id 0) (at 188.595 58.42 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "GND" (id 1) (at 188.595 55.88 0)) - (property "Footprint" "" (id 2) (at 188.595 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 188.595 52.07 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid f4092006-8d0e-4c07-aea7-21e334a489f3)) - ) - - (symbol (lib_id "Amplifier_Operational:LM13700") (at 74.93 108.585 0) (unit 5) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid e0df9bc3-d697-41ec-a72b-ac915ad45171) - (property "Reference" "U2" (id 0) (at 73.66 107.3149 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "LM13700" (id 1) (at 73.66 109.8549 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 67.31 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm13700.pdf" (id 3) (at 67.31 107.95 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "12" (uuid 05fea165-09f2-4aeb-bbc2-889ec62fbe4b)) - (pin "13" (uuid 0da40094-8af2-49cd-bf96-e0185179a800)) - (pin "14" (uuid 67330f72-6d7b-4406-a9ae-6568b95e2b39)) - (pin "15" (uuid dc7e160d-5250-48de-a17b-fc918a757c39)) - (pin "16" (uuid da5c64b3-3338-4e9b-b256-6b2924e8ef7d)) - (pin "10" (uuid 8327d725-4927-4d86-b0da-a2b8a1d401ef)) - (pin "9" (uuid 8628bbee-b37c-4e39-8774-81f4144893f7)) - (pin "1" (uuid f1c01991-3283-42fc-a3cf-790a782263a5)) - (pin "2" (uuid add83735-a800-4024-bd11-269836e183fd)) - (pin "3" (uuid 839371aa-de7b-488c-b5c2-95d8b57632d1)) - (pin "4" (uuid 02b794de-0206-4286-a731-bc13391f1174)) - (pin "5" (uuid edf777c4-3bd2-4b42-85e0-df3e3b0af2c3)) - (pin "7" (uuid 3a34cf5a-1539-4312-b41f-ae2b858ae424)) - (pin "8" (uuid b5159227-5454-4704-93ed-50f75d8efc59)) - (pin "11" (uuid c16feded-6628-404c-9325-ec20deb8c377)) - (pin "6" (uuid f7cf982e-8236-43dd-9c00-56db4a679b91)) - ) - - (symbol (lib_id "power:+5V") (at 175.895 89.535 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid e97eda83-ae07-4fb4-89fb-4252d73db232) - (property "Reference" "#PWR014" (id 0) (at 175.895 93.345 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (id 1) (at 175.895 84.455 0)) - (property "Footprint" "" (id 2) (at 175.895 89.535 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 175.895 89.535 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid b32a35c1-c000-411a-b45e-87b4be51e5f4)) - ) - - (symbol (lib_id "Connector:AudioJack2") (at 264.795 39.37 180) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid e9f20a31-f5b0-448b-bec5-24209555c87d) - (property "Reference" "J3" (id 0) (at 269.875 38.7349 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Value" "" (id 1) (at 269.875 41.2749 0) - (effects (font (size 1.27 1.27)) (justify right)) - ) - (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 264.795 39.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 264.795 39.37 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "S" (uuid 3bd6c3a8-0be5-4acf-98fc-02b51135f8d9)) - (pin "T" (uuid ba00849f-7f4d-42aa-b6f5-ffc0b4de72df)) - ) - - (symbol (lib_id "power:+5V") (at 233.045 133.985 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid ed8eafe4-9f6c-4d05-957c-07864c16126f) - (property "Reference" "#PWR028" (id 0) (at 233.045 137.795 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (id 1) (at 233.045 128.905 0)) - (property "Footprint" "" (id 2) (at 233.045 133.985 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 233.045 133.985 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 0d6dfbf2-c865-4bd3-acd9-fcf27dcf1b51)) - ) - - (symbol (lib_id "Device:C") (at 159.385 70.485 90) (unit 1) - (in_bom yes) (on_board yes) - (uuid f5a1eb5d-e013-46e5-be3e-30f1e81f1c14) - (property "Reference" "C10" (id 0) (at 156.21 71.755 90)) - (property "Value" "100nF" (id 1) (at 159.385 74.295 90)) - (property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (id 2) (at 163.195 69.5198 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 159.385 70.485 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid 3d870d28-e03c-416e-8f71-efd0ebcb3cf2)) - (pin "2" (uuid 8db712b3-af37-4f89-bed5-d9a45eac7ab4)) - ) - - (symbol (lib_id "power:+5V") (at 140.97 97.155 0) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid f5f3fa3f-a726-4f2a-b6a8-0b99deeb4c3f) - (property "Reference" "#PWR010" (id 0) (at 140.97 100.965 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Value" "+5V" (id 1) (at 140.97 92.075 0)) - (property "Footprint" "" (id 2) (at 140.97 97.155 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "" (id 3) (at 140.97 97.155 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid d00de54d-a4a1-4b30-8ae1-5193e60a1d01)) - ) - - (symbol (lib_id "Device:C_Polarized") (at 235.585 34.29 270) (unit 1) - (in_bom yes) (on_board yes) - (uuid f7973c04-ae62-4ef8-8cdd-d5f31bb871f4) - (property "Reference" "C13" (id 0) (at 238.125 34.925 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Value" "1uF" (id 1) (at 233.045 30.48 0) - (effects (font (size 1.27 1.27)) (justify left)) - ) - (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 231.775 35.2552 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 235.585 34.29 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid e3de2907-6354-435f-b734-ba7e469ea0ad)) - (pin "2" (uuid 00fdaa9b-d752-4c3a-818e-fa033bbf760b)) - ) - - (symbol (lib_id "Amplifier_Operational:LM13700") (at 180.975 38.1 0) (unit 2) - (in_bom yes) (on_board yes) - (uuid f8a7bff7-2bff-42b5-9158-171579415098) - (property "Reference" "U2" (id 0) (at 182.245 35.56 0)) - (property "Value" "LM13700" (id 1) (at 184.785 37.465 0)) - (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 173.355 37.465 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm13700.pdf" (id 3) (at 173.355 37.465 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "12" (uuid d78e7d76-badc-4a53-9e87-2329704030f6)) - (pin "13" (uuid eab9deb4-9402-4c38-8a2c-8bf0d5994ead)) - (pin "14" (uuid 2aa1f258-223b-450f-b258-579d2c35e8ed)) - (pin "15" (uuid 9e986d66-2187-4de3-8a72-b76d5d4c27e4)) - (pin "16" (uuid b22f6636-7f1f-43ff-99c7-e17bfd1ed8b9)) - (pin "10" (uuid ec6a840e-f49f-4977-8873-c61a354033f4)) - (pin "9" (uuid 6166ffa4-52c8-4e48-96a2-9e8ceba0d3f8)) - (pin "1" (uuid a086ddce-af91-4adf-9989-aec3261e6c43)) - (pin "2" (uuid d5386fc6-b1ee-4915-b0cc-99b1c157217f)) - (pin "3" (uuid e0eb3c61-0890-4902-85f6-b6f6677009f1)) - (pin "4" (uuid 77182de3-cbc6-4dd8-adec-973c50e53310)) - (pin "5" (uuid 877ae5c7-4b83-413d-9762-173cc8980037)) - (pin "7" (uuid 8bea807e-3ef2-4be7-b8a7-6e010df74e11)) - (pin "8" (uuid bedc17f6-5519-46a1-9476-5aeeccaf1eb3)) - (pin "11" (uuid 02529dde-0bfe-4025-8a4e-35cbea676d5d)) - (pin "6" (uuid 3e9ce54b-a03d-4cf2-ad32-92e230f78896)) - ) - - (symbol (lib_id "Device:R_Potentiometer") (at 213.995 46.355 90) (unit 1) - (in_bom yes) (on_board yes) (fields_autoplaced) - (uuid f8e949a0-9d2b-4ae1-bcf4-fa22f53685b8) - (property "Reference" "RV5" (id 0) (at 213.995 50.165 90)) - (property "Value" "20k" (id 1) (at 213.995 52.705 90)) - (property "Footprint" "Potentiometer_THT:Potentiometer_Bourns_3299W_Vertical" (id 2) (at 213.995 46.355 0) - (effects (font (size 1.27 1.27)) hide) - ) - (property "Datasheet" "~" (id 3) (at 213.995 46.355 0) - (effects (font (size 1.27 1.27)) hide) - ) - (pin "1" (uuid a0e01439-afe9-4d76-886c-49d655745caa)) - (pin "2" (uuid 75d044a8-5b86-4725-95e0-dbf24ceac907)) - (pin "3" (uuid 3117448d-42ba-4d7d-a0b0-5c5469f3ad51)) - ) - - (sheet_instances - (path "/" (page "1")) - ) - - (symbol_instances - (path "/4ab64e29-964f-40b2-bf58-c546b31cd3eb" - (reference "#PWR01") (unit 1) (value "GND") (footprint "") - ) - (path "/444dfbdd-cbd7-4ba6-9870-8412af94aee2" - (reference "#PWR02") (unit 1) (value "+9V") (footprint "") - ) - (path "/1f5bb777-af96-4c18-b365-ead2bc6f2a22" - (reference "#PWR03") (unit 1) (value "GND") (footprint "") - ) - (path "/0482e22d-6842-4b20-a178-768c65edbd09" - (reference "#PWR04") (unit 1) (value "+9V") (footprint "") - ) - (path "/43ee0e64-2009-426d-bee8-5cbddf4c0a6a" - (reference "#PWR05") (unit 1) (value "GND") (footprint "") - ) - (path "/227cfc88-6964-46a8-93ba-8181d9992999" - (reference "#PWR06") (unit 1) (value "+9V") (footprint "") - ) - (path "/87912de9-6186-4a1b-80dc-279993eb33f8" - (reference "#PWR07") (unit 1) (value "GND") (footprint "") - ) - (path "/316c6249-caec-4182-91a1-63d1454b51ad" - (reference "#PWR08") (unit 1) (value "GND") (footprint "") - ) - (path "/6cc017cb-31ef-41ec-b157-4fd6275dabf3" - (reference "#PWR09") (unit 1) (value "+5V") (footprint "") - ) - (path "/f5f3fa3f-a726-4f2a-b6a8-0b99deeb4c3f" - (reference "#PWR010") (unit 1) (value "+5V") (footprint "") - ) - (path "/580d3929-b3b7-4bb9-8578-f17e842672e9" - (reference "#PWR011") (unit 1) (value "GND") (footprint "") - ) - (path "/7a3ec6b8-8c14-4cb4-a7a4-82b263fc2551" - (reference "#PWR012") (unit 1) (value "GND") (footprint "") - ) - (path "/89688122-11ec-4f7a-8497-1527b893f637" - (reference "#PWR013") (unit 1) (value "+5V") (footprint "") - ) - (path "/e97eda83-ae07-4fb4-89fb-4252d73db232" - (reference "#PWR014") (unit 1) (value "+5V") (footprint "") - ) - (path "/c8a9708f-da7c-43df-b42b-3964ac381182" - (reference "#PWR015") (unit 1) (value "GND") (footprint "") - ) - (path "/da0a608d-60e0-41ef-8b7e-95a7abf7aa22" - (reference "#PWR016") (unit 1) (value "GND") (footprint "") - ) - (path "/bddfcdad-083a-4c5b-8375-4d90db01b0ec" - (reference "#PWR017") (unit 1) (value "+5V") (footprint "") - ) - (path "/c9d18710-721c-4c30-9682-f348a553a392" - (reference "#PWR018") (unit 1) (value "GND") (footprint "") - ) - (path "/1796b6dc-5a37-4073-ac31-fa5ded564a42" - (reference "#PWR019") (unit 1) (value "GND") (footprint "") - ) - (path "/028b99d2-422b-4a47-abdf-987039c0dcc1" - (reference "#PWR020") (unit 1) (value "+5V") (footprint "") - ) - (path "/0a048047-fd7f-48d1-bed9-f49dd7c42465" - (reference "#PWR021") (unit 1) (value "GND") (footprint "") - ) - (path "/5ab123ef-60a2-4f38-8884-167dcfc32060" - (reference "#PWR022") (unit 1) (value "GND") (footprint "") - ) - (path "/7bc5f6ea-91bb-496e-92ef-0237017db01e" - (reference "#PWR023") (unit 1) (value "GND") (footprint "") - ) - (path "/5a20406b-07fb-4d6a-b9fd-cc6e097e66ec" - (reference "#PWR024") (unit 1) (value "+5V") (footprint "") - ) - (path "/09211d4d-380f-4979-9c5d-6e8d6c7c76ac" - (reference "#PWR025") (unit 1) (value "GND") (footprint "") - ) - (path "/d31acb05-1c51-48f2-a4bf-a368a5be72d2" - (reference "#PWR026") (unit 1) (value "+5V") (footprint "") - ) - (path "/104098dd-510e-4dd5-902b-ac13cd5f0673" - (reference "#PWR027") (unit 1) (value "GND") (footprint "") - ) - (path "/ed8eafe4-9f6c-4d05-957c-07864c16126f" - (reference "#PWR028") (unit 1) (value "+5V") (footprint "") - ) - (path "/b1bf0a93-94b7-4ad4-93ae-35edc64006ad" - (reference "C1") (unit 1) (value "1uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") - ) - (path "/55c4d32d-7c5a-4dbb-a08c-04da9db11983" - (reference "C2") (unit 1) (value "100nF") (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm") - ) - (path "/14c45caf-2ca5-4676-9993-7894f0246edd" - (reference "C3") (unit 1) (value "100uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") - ) - (path "/10c03ca5-f28e-4dc2-b3ca-d8f478c80a3b" - (reference "C4") (unit 1) (value "100nF") (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm") - ) - (path "/aca917d9-776d-4afb-82cc-63883a39f6a1" - (reference "C6") (unit 1) (value "100nF") (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm") - ) - (path "/0d5a6edb-d525-4289-8e5a-53304df0385d" - (reference "C7") (unit 1) (value "1uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") - ) - (path "/85c0451d-072e-4e38-bbeb-fb726bdf1588" - (reference "C8") (unit 1) (value "47uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") - ) - (path "/457f42c3-5be7-4c16-bf1a-e05a256ab5fe" - (reference "C9") (unit 1) (value "330nF") (footprint "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm") - ) - (path "/f5a1eb5d-e013-46e5-be3e-30f1e81f1c14" - (reference "C10") (unit 1) (value "100nF") (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm") - ) - (path "/c47362ce-ad1a-4f8a-a4d2-857430559736" - (reference "C11") (unit 1) (value "47uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") - ) - (path "/cafe7d40-c316-4f68-8f05-8f4fa2790967" - (reference "C12") (unit 1) (value "1uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") - ) - (path "/f7973c04-ae62-4ef8-8cdd-d5f31bb871f4" - (reference "C13") (unit 1) (value "1uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") - ) - (path "/c9a434a4-34aa-480b-bad1-26f71e1cc532" - (reference "D1") (unit 1) (value "1N5817") (footprint "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal") - ) - (path "/554d888d-23fd-4c68-a6ec-7855a536ffbb" - (reference "D2") (unit 1) (value "LED_ON") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") - ) - (path "/3cfe6a7f-8a66-4cb9-9d30-79a2918ce977" - (reference "D3") (unit 1) (value "LED_PULSE") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") - ) - (path "/6f204d20-1320-451e-bd91-d4d67acfef4c" - (reference "D4") (unit 1) (value "LED_MOD") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") - ) - (path "/20f7c671-f9ce-45b7-9a7b-97ed319952e7" - (reference "J1") (unit 1) (value "Jack-DC") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") - ) - (path "/8b2457b3-127c-4286-b842-66ceb413ea89" - (reference "J2") (unit 1) (value "IN") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") - ) - (path "/e9f20a31-f5b0-448b-bec5-24209555c87d" - (reference "J3") (unit 1) (value "OUT") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") - ) - (path "/5c3fbc86-b745-4733-8ef5-b40aa9974c3c" - (reference "Q1") (unit 1) (value "2N4401") (footprint "Package_TO_SOT_THT:TO-92L_Inline_Wide") - ) - (path "/35f8b1cf-d587-4336-a64a-a2980024e9bd" - (reference "R1") (unit 1) (value "1M") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/ba9dae14-ba14-4c2e-aa68-5878b7a59304" - (reference "R2") (unit 1) (value "100k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/497a3aba-0f0c-436e-9543-aa7c20ad968e" - (reference "R3") (unit 1) (value "2k2") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/02d1e0a8-bf20-455f-b69e-845f84f2ba41" - (reference "R4") (unit 1) (value "2k2") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/cbbb2462-23e7-4c21-8e59-d2a396195fa2" - (reference "R5") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/32f77ed2-d2d8-4498-b1c5-1a45c90ea279" - (reference "R6") (unit 1) (value "330k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/22c9e179-6c43-4e67-909d-1f02b37451fb" - (reference "R7") (unit 1) (value "100k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/7164d9a4-b5a8-4780-b92f-c2f1ba0b4c99" - (reference "R8") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/a75d8798-8e4c-4d92-ae26-3ecaae523cf2" - (reference "R9") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/abdba8ff-70b1-4b5d-b32e-fb4f4f4b356e" - (reference "R10") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/8a434250-e9ef-407d-91c4-2bbe591e0528" - (reference "R11") (unit 1) (value "120k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/59e71b82-fd2c-4d50-9aac-2d0df67acc80" - (reference "R12") (unit 1) (value "20k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/50e83388-d157-4147-9b50-698eee4a2f3a" - (reference "R13") (unit 1) (value "100k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/713e480c-bb1d-4324-8bc5-d294a306dffc" - (reference "R14") (unit 1) (value "4k7") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/3d86985c-8531-4937-a6d2-be484b6a01cf" - (reference "R15") (unit 1) (value "160k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/a669542a-9037-4799-b818-b3bc687858da" - (reference "R16") (unit 1) (value "220") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") - ) - (path "/4423bffb-196e-4324-b4ae-a6a7f4a011d5" - (reference "RV1") (unit 1) (value "10k") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") - ) - (path "/43757849-b532-4d70-9abd-eff55e4b1df4" - (reference "RV2") (unit 1) (value "10k") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") - ) - (path "/0730adea-81a1-4a16-b234-8593e2de6ad4" - (reference "RV3") (unit 1) (value "10k") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") - ) - (path "/05e6021f-96e5-415b-8bf8-d37fbab0152a" - (reference "RV4") (unit 1) (value "50k LOG") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") - ) - (path "/f8e949a0-9d2b-4ae1-bcf4-fa22f53685b8" - (reference "RV5") (unit 1) (value "20k") (footprint "Potentiometer_THT:Potentiometer_Bourns_3299W_Vertical") - ) - (path "/d2b86a7c-bc99-41b7-8ef5-b57415e0d93e" - (reference "RV6") (unit 1) (value "10k") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") - ) - (path "/3df53d8a-0ef5-4cad-9d90-e6b44aee51b9" - (reference "SW1") (unit 1) (value "SW_SPDT_MSM") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") - ) - (path "/049e1e3e-c904-4ddc-9991-66aa46751da7" - (reference "SW2") (unit 1) (value "SW_Push") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") - ) - (path "/045205a8-9279-485c-8038-3762c5153a72" - (reference "SW3") (unit 1) (value "SW_SPDT_MSM") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") - ) - (path "/b0a1d5e1-141a-479b-85a7-d81fadae1c0f" - (reference "U1") (unit 1) (value "TL072") (footprint "Package_DIP:DIP-8_W7.62mm") - ) - (path "/67e4f302-4d84-4715-b3e0-6cf033d1a781" - (reference "U1") (unit 2) (value "TL072") (footprint "Package_DIP:DIP-8_W7.62mm") - ) - (path "/610374ca-6688-4f3a-b5c7-b926d13e70cf" - (reference "U1") (unit 3) (value "TL072") (footprint "Package_DIP:DIP-8_W7.62mm") - ) - (path "/7a4db53f-264c-4513-adf9-7dc22e686ece" - (reference "U2") (unit 1) (value "LM13700") (footprint "Package_DIP:DIP-16_W7.62mm") - ) - (path "/f8a7bff7-2bff-42b5-9158-171579415098" - (reference "U2") (unit 2) (value "LM13700") (footprint "Package_DIP:DIP-16_W7.62mm") - ) - (path "/e0df9bc3-d697-41ec-a72b-ac915ad45171" - (reference "U2") (unit 5) (value "LM13700") (footprint "Package_DIP:DIP-16_W7.62mm") - ) - (path "/172d14e9-0ed1-4942-9b95-1fe8560ad343" - (reference "U3") (unit 1) (value "L7805") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") - ) - (path "/4191ef53-102f-4cd9-8f99-b7e26e6d4541" - (reference "U4") (unit 1) (value "ATtiny44A-P") (footprint "Package_DIP:DIP-14_W7.62mm") - ) - ) -) +(kicad_sch (version 20211123) (generator eeschema) + + (uuid e63e39d7-6ac0-4ffd-8aa3-1841a4541b55) + + (paper "A4") + + (title_block + (title "Tremelo Pedal V1") + (date "2022-07-17") + (rev "2") + (company "Dennis Gunia") + (comment 1 "https://github.com/dennis9819/Tremelo-Effect-Pedal") + (comment 3 "Good shielding is required! Use a aluminium box and prevent radio interference") + (comment 4 "9V DC Supply (max 50mA power consumption)") + ) + + (lib_symbols + (symbol "Amplifier_Operational:LM13700" (pin_names (offset 0.127)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 3.81 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "LM13700" (id 1) (at 5.08 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at -7.62 0.635 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm13700.pdf" (id 3) (at -7.62 0.635 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_locked" "" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "ki_keywords" "operational transconductance amplifier OTA" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Dual Operational Transconductance Amplifiers with Linearizing Diodes and Buffers, DIP-16/SOIC-16" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SOIC*3.9x9.9mm*P1.27mm* DIP*W7.62mm*" (id 7) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "LM13700_1_1" + (polyline + (pts + (xy 3.81 -0.635) + (xy 3.81 -2.54) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 0) + (xy -5.08 -5.08) + (xy -5.08 5.08) + (xy 5.08 0) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin output line (at 7.62 0 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -7.62 2.54 0) (length 2.54) + (name "-" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -7.62 -2.54 0) (length 2.54) + (name "+" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -7.62 0 0) (length 2.54) + (name "DIODE_BIAS" (effects (font (size 0.508 0.508)))) + (number "15" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at 7.62 -2.54 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "16" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "LM13700_2_0" + (polyline + (pts + (xy -1.905 2.54) + (xy -3.175 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "LM13700_2_1" + (circle (center -2.54 1.905) (radius 0.254) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -3.81 -0.635) + (xy -2.54 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 1.27) + (xy -3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 -1.905) + (xy -1.27 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 0) + (xy -2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 0.635) + (xy -2.54 1.27) + (xy -2.54 1.905) + (xy -2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 -1.27) + (xy -3.175 -0.635) + (xy -3.175 -1.27) + (xy -2.54 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -2.54 -0.635) + (xy -1.27 0) + (xy -1.27 1.905) + (xy -2.54 1.905) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -2.54) + (xy -1.905 -1.905) + (xy -1.905 -2.54) + (xy -1.27 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (text "V+" (at -2.54 3.81 0) + (effects (font (size 1.27 1.27))) + ) + (pin input line (at -7.62 0 0) (length 3.81) + (name "~" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 2.54 -2.54 180) (length 3.81) + (name "~" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "LM13700_3_1" + (polyline + (pts + (xy 3.81 -0.635) + (xy 3.81 -2.54) + (xy 5.08 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 5.08 0) + (xy -5.08 -5.08) + (xy -5.08 5.08) + (xy 5.08 0) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin input line (at 7.62 -2.54 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -7.62 0 0) (length 2.54) + (name "DIODE_BIAS" (effects (font (size 0.508 0.508)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -7.62 -2.54 0) (length 2.54) + (name "+" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -7.62 2.54 0) (length 2.54) + (name "-" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 0 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "LM13700_4_0" + (polyline + (pts + (xy -3.175 2.54) + (xy -1.905 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (text "V+" (at -2.54 3.81 0) + (effects (font (size 1.27 1.27))) + ) + ) + (symbol "LM13700_4_1" + (circle (center -2.54 1.905) (radius 0.254) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -3.81 -0.635) + (xy -2.54 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 1.27) + (xy -3.81 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 -1.905) + (xy -1.27 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 0) + (xy -2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 0.635) + (xy -2.54 1.27) + (xy -2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.54 -1.27) + (xy -3.175 -0.635) + (xy -3.175 -1.27) + (xy -2.54 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy -2.54 -0.635) + (xy -1.27 0) + (xy -1.27 1.905) + (xy -2.54 1.905) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 -2.54) + (xy -1.905 -1.905) + (xy -1.905 -2.54) + (xy -1.27 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (pin input line (at -7.62 0 0) (length 3.81) + (name "~" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 2.54 -2.54 180) (length 3.81) + (name "~" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "LM13700_5_1" + (pin power_in line (at -2.54 7.62 270) (length 3.81) + (name "V+" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -2.54 -7.62 90) (length 3.81) + (name "V-" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Amplifier_Operational:TL072" (pin_names (offset 0.127)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at 0 5.08 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TL072" (id 1) (at 0 -5.08 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_locked" "" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27))) + ) + (property "ki_keywords" "dual opamp" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Dual Low-Noise JFET-Input Operational Amplifiers, DIP-8/SOIC-8" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "SOIC*3.9x4.9mm*P1.27mm* DIP*W7.62mm* TO*99* OnSemi*Micro8* TSSOP*3x3mm*P0.65mm* TSSOP*4.4x3mm*P0.65mm* MSOP*3x3mm*P0.65mm* SSOP*3.9x4.9mm*P0.635mm* LFCSP*2x2mm*P0.5mm* *SIP* SOIC*5.3x6.2mm*P1.27mm*" (id 7) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "TL072_1_1" + (polyline + (pts + (xy -5.08 5.08) + (xy 5.08 0) + (xy -5.08 -5.08) + (xy -5.08 5.08) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin output line (at 7.62 0 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -7.62 -2.54 0) (length 2.54) + (name "-" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -7.62 2.54 0) (length 2.54) + (name "+" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "TL072_2_1" + (polyline + (pts + (xy -5.08 5.08) + (xy 5.08 0) + (xy -5.08 -5.08) + (xy -5.08 5.08) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (pin input line (at -7.62 2.54 0) (length 2.54) + (name "+" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin input line (at -7.62 -2.54 0) (length 2.54) + (name "-" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin output line (at 7.62 0 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + ) + (symbol "TL072_3_1" + (pin power_in line (at -2.54 -7.62 90) (length 3.81) + (name "V-" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at -2.54 7.62 270) (length 3.81) + (name "V+" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:AudioJack2" (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 8.89 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "AudioJack2" (id 1) (at 0 6.35 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "audio jack receptacle mono phone headphone TS connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Audio Jack, 2 Poles (Mono / TS)" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Jack*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "AudioJack2_0_1" + (rectangle (start -3.81 0) (end -2.54 -2.54) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start -2.54 3.81) (end 2.54 -2.54) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (polyline + (pts + (xy 0 0) + (xy 0.635 -0.635) + (xy 1.27 0) + (xy 2.54 0) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 2.54) + (xy -0.635 2.54) + (xy -0.635 0) + (xy -1.27 -0.635) + (xy -1.905 0) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "AudioJack2_1_1" + (pin passive line (at 5.08 2.54 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "S" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "T" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Connector:Jack-DC" (pin_names (offset 1.016)) (in_bom yes) (on_board yes) + (property "Reference" "J" (id 0) (at 0 5.334 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "Jack-DC" (id 1) (at 0 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 1.27 -1.016 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 1.27 -1.016 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "DC power barrel jack connector" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "DC Barrel Jack" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "BarrelJack*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Jack-DC_0_1" + (rectangle (start -5.08 3.81) (end 5.08 -3.81) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + (arc (start -3.302 3.175) (mid -3.937 2.54) (end -3.302 1.905) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (arc (start -3.302 3.175) (mid -3.937 2.54) (end -3.302 1.905) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (polyline + (pts + (xy 5.08 2.54) + (xy 3.81 2.54) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.81 -2.54) + (xy -2.54 -2.54) + (xy -1.27 -1.27) + (xy 0 -2.54) + (xy 2.54 -2.54) + (xy 5.08 -2.54) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 3.683 3.175) (end -3.302 1.905) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "Jack-DC_1_1" + (pin passive line (at 7.62 2.54 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 7.62 -2.54 180) (length 2.54) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:C" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "C" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Unpolarized capacitor" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "C_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "C_0_1" + (polyline + (pts + (xy -2.032 -0.762) + (xy 2.032 -0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -2.032 0.762) + (xy 2.032 0.762) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "C_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:C_Polarized" (pin_numbers hide) (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "C" (id 0) (at 0.635 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "C_Polarized" (id 1) (at 0.635 -2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0.9652 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "cap capacitor" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Polarized capacitor" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "CP_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "C_Polarized_0_1" + (rectangle (start -2.286 0.508) (end 2.286 1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 2.286) + (xy -0.762 2.286) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 2.794) + (xy -1.27 1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (rectangle (start 2.286 -0.508) (end -2.286 -1.016) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + ) + (symbol "C_Polarized_1_1" + (pin passive line (at 0 3.81 270) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 2.794) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:D" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "D" (id 1) (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "diode" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Diode" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "TO-???* *_Diode_* *SingleDiode* D_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "D_0_1" + (polyline + (pts + (xy -1.27 1.27) + (xy -1.27 -1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 0) + (xy -1.27 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 1.27) + (xy 1.27 -1.27) + (xy -1.27 0) + (xy 1.27 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "D_1_1" + (pin passive line (at -3.81 0 0) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 0 180) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:LED" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "D" (id 0) (at 0 2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "LED" (id 1) (at 0 -2.54 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "LED diode" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Light emitting diode" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "LED* LED_SMD:* LED_THT:*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "LED_0_1" + (polyline + (pts + (xy -1.27 -1.27) + (xy -1.27 1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.27 0) + (xy 1.27 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.27) + (xy 1.27 1.27) + (xy -1.27 0) + (xy 1.27 -1.27) + ) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -3.048 -0.762) + (xy -4.572 -2.286) + (xy -3.81 -2.286) + (xy -4.572 -2.286) + (xy -4.572 -1.524) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.778 -0.762) + (xy -3.302 -2.286) + (xy -2.54 -2.286) + (xy -3.302 -2.286) + (xy -3.302 -1.524) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "LED_1_1" + (pin passive line (at -3.81 0 0) (length 2.54) + (name "K" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 0 180) (length 2.54) + (name "A" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:Q_NPN_EBC" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "Q" (id 0) (at 5.08 1.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "Q_NPN_EBC" (id 1) (at 5.08 -1.27 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 5.08 2.54 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "transistor NPN" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "NPN transistor, emitter/base/collector" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "Q_NPN_EBC_0_1" + (polyline + (pts + (xy 0.635 0.635) + (xy 2.54 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 -0.635) + (xy 2.54 -2.54) + (xy 2.54 -2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0.635 1.905) + (xy 0.635 -1.905) + (xy 0.635 -1.905) + ) + (stroke (width 0.508) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.27 -1.778) + (xy 1.778 -1.27) + (xy 2.286 -2.286) + (xy 1.27 -1.778) + (xy 1.27 -1.778) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (circle (center 1.27 0) (radius 2.8194) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "Q_NPN_EBC_1_1" + (pin passive line (at 2.54 -5.08 90) (length 2.54) + (name "E" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 5.715) + (name "B" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 2.54 5.08 270) (length 2.54) + (name "C" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:R" (pin_numbers hide) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "R" (id 0) (at 2.032 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "R" (id 1) (at 0 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at -1.778 0 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "R res resistor" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Resistor" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "R_*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "R_0_1" + (rectangle (start -1.016 -2.54) (end 1.016 2.54) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "R_1_1" + (pin passive line (at 0 3.81 270) (length 1.27) + (name "~" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 0 -3.81 90) (length 1.27) + (name "~" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Device:R_Potentiometer" (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "RV" (id 0) (at -4.445 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "R_Potentiometer" (id 1) (at -2.54 0 90) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "resistor variable" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Potentiometer" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "Potentiometer*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "R_Potentiometer_0_1" + (polyline + (pts + (xy 2.54 0) + (xy 1.524 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 1.143 0) + (xy 2.286 0.508) + (xy 2.286 -0.508) + (xy 1.143 0) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type outline)) + ) + (rectangle (start 1.016 2.54) (end -1.016 -2.54) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "R_Potentiometer_1_1" + (pin passive line (at 0 3.81 270) (length 1.27) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 3.81 0 180) (length 1.27) + (name "2" (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 1.27) + (name "3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "MCU_Microchip_ATtiny:ATtiny44A-P" (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -12.7 21.59 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + ) + (property "Value" "ATtiny44A-P" (id 1) (at 2.54 -21.59 0) + (effects (font (size 1.27 1.27)) (justify left top)) + ) + (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27) italic) hide) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc8183.pdf" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "AVR 8bit Microcontroller tinyAVR" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "20MHz, 4kB Flash, 256B SRAM, 256B EEPROM, debugWIRE, DIP-14" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "DIP*W7.62mm*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "ATtiny44A-P_0_1" + (rectangle (start -12.7 -20.32) (end 12.7 20.32) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "ATtiny44A-P_1_1" + (pin power_in line (at 0 22.86 270) (length 2.54) + (name "VCC" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 7.62 180) (length 2.54) + (name "PA3" (effects (font (size 1.27 1.27)))) + (number "10" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 10.16 180) (length 2.54) + (name "PA2" (effects (font (size 1.27 1.27)))) + (number "11" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 12.7 180) (length 2.54) + (name "PA1" (effects (font (size 1.27 1.27)))) + (number "12" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 15.24 180) (length 2.54) + (name "AREF/PA0" (effects (font (size 1.27 1.27)))) + (number "13" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -22.86 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "14" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -7.62 180) (length 2.54) + (name "XTAL1/PB0" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -10.16 180) (length 2.54) + (name "XTAL2/PB1" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -15.24 180) (length 2.54) + (name "~{RESET}/PB3" (effects (font (size 1.27 1.27)))) + (number "4" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -12.7 180) (length 2.54) + (name "PB2" (effects (font (size 1.27 1.27)))) + (number "5" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 -2.54 180) (length 2.54) + (name "PA7" (effects (font (size 1.27 1.27)))) + (number "6" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 0 180) (length 2.54) + (name "PA6" (effects (font (size 1.27 1.27)))) + (number "7" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 2.54 180) (length 2.54) + (name "PA5" (effects (font (size 1.27 1.27)))) + (number "8" (effects (font (size 1.27 1.27)))) + ) + (pin bidirectional line (at 15.24 5.08 180) (length 2.54) + (name "PA4" (effects (font (size 1.27 1.27)))) + (number "9" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Regulator_Linear:L7805" (pin_names (offset 0.254)) (in_bom yes) (on_board yes) + (property "Reference" "U" (id 0) (at -3.81 3.175 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "L7805" (id 1) (at 0 3.175 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 0.635 -3.81 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/41/4f/b3/b0/12/d4/47/88/CD00000444.pdf/files/CD00000444.pdf/jcr:content/translations/en.CD00000444.pdf" (id 3) (at 0 -1.27 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "Voltage Regulator 1.5A Positive" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Positive 1.5A 35V Linear Regulator, Fixed Output 5V, TO-220/TO-263/TO-252" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_fp_filters" "TO?252* TO?263* TO?220*" (id 6) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "L7805_0_1" + (rectangle (start -5.08 1.905) (end 5.08 -5.08) + (stroke (width 0.254) (type default) (color 0 0 0 0)) + (fill (type background)) + ) + ) + (symbol "L7805_1_1" + (pin power_in line (at -7.62 0 0) (length 2.54) + (name "IN" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin power_in line (at 0 -7.62 90) (length 2.54) + (name "GND" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + (pin power_out line (at 7.62 0 180) (length 2.54) + (name "OUT" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Switch:SW_Push" (pin_numbers hide) (pin_names (offset 1.016) hide) (in_bom yes) (on_board yes) + (property "Reference" "SW" (id 0) (at 1.27 2.54 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "SW_Push" (id 1) (at 0 -1.524 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 5.08 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "switch normally-open pushbutton push-button" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Push button switch, generic, two pins" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SW_Push_0_1" + (circle (center -2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 1.27) + (xy 0 3.048) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 2.54 1.27) + (xy -2.54 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (pin passive line (at -5.08 0 0) (length 2.54) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at 5.08 0 180) (length 2.54) + (name "2" (effects (font (size 1.27 1.27)))) + (number "2" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "Switch:SW_SPDT_MSM" (pin_names (offset 0) hide) (in_bom yes) (on_board yes) + (property "Reference" "SW" (id 0) (at 0 5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Value" "SW_SPDT_MSM" (id 1) (at 0 -5.08 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "switch spdt single-pole double-throw ON-OFF-ON" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Switch, single pole double throw, center OFF position" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "SW_SPDT_MSM_0_0" + (circle (center -2.032 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy -1.524 0.127) + (xy 1.778 1.016) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.032 -2.54) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SW_SPDT_MSM_0_1" + (circle (center 2.032 2.54) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (circle (center 2.286 0) (radius 0.508) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "SW_SPDT_MSM_1_1" + (pin passive line (at 5.08 2.54 180) (length 2.54) + (name "1" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + (pin passive line (at -5.08 0 0) (length 2.54) + (name "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 2.54) + (name "3" (effects (font (size 1.27 1.27)))) + (number "3" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+5V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 0 3.556 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"+5V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+5V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+5V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+5V" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:+9V" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -3.81 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+9V" (id 1) (at 0 3.556 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"+9V\"" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "+9V_0_1" + (polyline + (pts + (xy -0.762 1.27) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 0) + (xy 0 2.54) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + (polyline + (pts + (xy 0 2.54) + (xy 0.762 1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "+9V_1_1" + (pin power_in line (at 0 0 90) (length 0) hide + (name "+9V" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + (symbol "power:GND" (power) (pin_names (offset 0)) (in_bom yes) (on_board yes) + (property "Reference" "#PWR" (id 0) (at 0 -6.35 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 0 -3.81 0) + (effects (font (size 1.27 1.27))) + ) + (property "Footprint" "" (id 2) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_keywords" "power-flag" (id 4) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "ki_description" "Power symbol creates a global label with name \"GND\" , ground" (id 5) (at 0 0 0) + (effects (font (size 1.27 1.27)) hide) + ) + (symbol "GND_0_1" + (polyline + (pts + (xy 0 0) + (xy 0 -1.27) + (xy 1.27 -1.27) + (xy 0 -2.54) + (xy -1.27 -1.27) + (xy 0 -1.27) + ) + (stroke (width 0) (type default) (color 0 0 0 0)) + (fill (type none)) + ) + ) + (symbol "GND_1_1" + (pin power_in line (at 0 0 270) (length 0) hide + (name "GND" (effects (font (size 1.27 1.27)))) + (number "1" (effects (font (size 1.27 1.27)))) + ) + ) + ) + ) + + (junction (at 141.605 25.4) (diameter 0) (color 0 0 0 0) + (uuid 1ae850f4-d021-43fa-ab6f-dddb52536f0d) + ) + (junction (at 81.915 88.9) (diameter 0) (color 0 0 0 0) + (uuid 1b161928-e34e-4737-a937-0395bfcf9fbe) + ) + (junction (at 187.96 135.255) (diameter 0) (color 0 0 0 0) + (uuid 1c4555b0-5091-4d50-9931-dcb24aeebf11) + ) + (junction (at 167.005 70.485) (diameter 0) (color 0 0 0 0) + (uuid 21297d1c-7d09-4591-9a2c-a4496845e8c6) + ) + (junction (at 86.995 43.18) (diameter 0) (color 0 0 0 0) + (uuid 25bd36d2-bb7a-4e9a-b5ee-dda5cbb99034) + ) + (junction (at 88.265 66.04) (diameter 0) (color 0 0 0 0) + (uuid 25dec10f-b1f9-4cec-b992-7bac2134a6a6) + ) + (junction (at 93.345 76.2) (diameter 0) (color 0 0 0 0) + (uuid 265ec7f8-e65e-4c35-a9ec-8ac438e025fc) + ) + (junction (at 93.345 88.9) (diameter 0) (color 0 0 0 0) + (uuid 3a77d73c-9add-4213-9a0b-76d71d494c8f) + ) + (junction (at 188.595 40.64) (diameter 0) (color 0 0 0 0) + (uuid 3aac1803-9108-480d-abc5-940229148d14) + ) + (junction (at 81.915 76.2) (diameter 0) (color 0 0 0 0) + (uuid 407d7d19-3029-4022-8a9f-eb5980b195ed) + ) + (junction (at 66.675 88.9) (diameter 0) (color 0 0 0 0) + (uuid 4127b6bc-26fd-49e2-92fa-33cbff0664f7) + ) + (junction (at 247.015 44.45) (diameter 0) (color 0 0 0 0) + (uuid 5222214e-9eca-4fcc-b516-3a851bbf14a7) + ) + (junction (at 109.855 105.41) (diameter 0) (color 0 0 0 0) + (uuid 58db1402-172b-4613-b7b1-3b274b1522ae) + ) + (junction (at 133.985 25.4) (diameter 0) (color 0 0 0 0) + (uuid 5a0bd9a6-0934-4225-b966-f0a3b84e77ab) + ) + (junction (at 151.765 70.485) (diameter 0) (color 0 0 0 0) + (uuid 601d9520-7ca2-43e8-a600-f6c62d25fc46) + ) + (junction (at 133.985 40.64) (diameter 0) (color 0 0 0 0) + (uuid 618e54c5-115b-4114-9fd4-7cbaaec48c7d) + ) + (junction (at 66.675 66.04) (diameter 0) (color 0 0 0 0) + (uuid 64a8c911-6ac6-4eef-a66a-daab671d483a) + ) + (junction (at 109.855 96.52) (diameter 0) (color 0 0 0 0) + (uuid 6597588f-cc04-4f33-9248-1b8bdafb67f6) + ) + (junction (at 167.005 65.405) (diameter 0) (color 0 0 0 0) + (uuid 6a0d7fd5-ec74-4c26-a53f-c24ffc609d6d) + ) + (junction (at 88.265 25.4) (diameter 0) (color 0 0 0 0) + (uuid 7653512d-7c5e-46df-b160-95349616235f) + ) + (junction (at 113.665 76.2) (diameter 0) (color 0 0 0 0) + (uuid 7bdcd188-697b-45da-822c-fdf7bfb2d9fe) + ) + (junction (at 74.295 66.04) (diameter 0) (color 0 0 0 0) + (uuid 9d8d7b4d-2223-4af6-8132-3626f9449703) + ) + (junction (at 85.725 88.9) (diameter 0) (color 0 0 0 0) + (uuid 9efea54c-6552-48d1-ad1e-d118f0d36a6f) + ) + (junction (at 65.405 53.34) (diameter 0) (color 0 0 0 0) + (uuid a9ee738a-72b3-43fb-b905-3f0e42eec87c) + ) + (junction (at 97.155 105.41) (diameter 0) (color 0 0 0 0) + (uuid adcab203-cf85-458d-9bde-361e506660f9) + ) + (junction (at 205.105 142.24) (diameter 0) (color 0 0 0 0) + (uuid bc7f88c3-8e45-44bf-a34d-e98a4463c570) + ) + (junction (at 205.105 132.715) (diameter 0) (color 0 0 0 0) + (uuid c19e0efb-34a3-49d0-a0c3-02e74e4cec3f) + ) + (junction (at 65.405 43.18) (diameter 0) (color 0 0 0 0) + (uuid cae40463-4313-49bd-bca6-6f60af70ac68) + ) + (junction (at 231.775 34.29) (diameter 0) (color 0 0 0 0) + (uuid d178a976-ceac-4446-92bd-a15abdb74d2c) + ) + (junction (at 74.295 88.9) (diameter 0) (color 0 0 0 0) + (uuid db4e8a23-0d97-4b92-9c8e-dc9901bdd15b) + ) + (junction (at 167.005 38.1) (diameter 0) (color 0 0 0 0) + (uuid e352bae8-13e3-401d-89fc-f89b77477545) + ) + (junction (at 81.915 66.04) (diameter 0) (color 0 0 0 0) + (uuid fd0f017c-fd55-4c79-ae34-f9da7a319b38) + ) + (junction (at 107.315 40.64) (diameter 0) (color 0 0 0 0) + (uuid fdabea90-8011-491c-ba8c-6810370a7153) + ) + + (no_connect (at 149.225 38.1) (uuid 9a78a0c9-9986-4d50-9037-603f280c3485)) + (no_connect (at 194.945 144.78) (uuid f6ae9d5c-279d-4c55-a926-a007b5c8f62c)) + + (wire (pts (xy 208.28 93.345) (xy 207.01 93.345)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 013d1f3b-805c-4a53-8ec8-a564d634f807) + ) + (wire (pts (xy 102.235 53.34) (xy 107.315 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0191e7cd-57e8-4a66-b8b1-c6c919dea6a2) + ) + (wire (pts (xy 205.105 142.24) (xy 205.105 144.145)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 05148e51-6c7f-460b-a76a-2e3c14343ec2) + ) + (wire (pts (xy 66.675 66.04) (xy 74.295 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 06c1e68b-5ff0-4636-b607-e0789ffb0b2b) + ) + (polyline (pts (xy 192.405 58.42) (xy 274.955 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 08804f55-705c-43f9-831b-afe1db0c7cbf) + ) + + (wire (pts (xy 141.605 33.02) (xy 141.605 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 093c16b6-b6b4-4763-b7fa-aea46694cde5) + ) + (wire (pts (xy 107.315 40.64) (xy 107.315 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09743f62-cc08-493f-b843-947492d0e70c) + ) + (wire (pts (xy 167.005 40.64) (xy 164.465 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09a121d6-6650-4c08-be41-7dc64da4372a) + ) + (wire (pts (xy 93.345 88.9) (xy 113.665 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09d877ca-482e-4d5b-a58c-100fa468dced) + ) + (wire (pts (xy 259.715 41.91) (xy 253.365 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 09eaf0de-1c55-4484-babe-61a6522fb52a) + ) + (wire (pts (xy 81.915 76.2) (xy 93.345 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0b4e7df1-f063-4647-a85a-2ed2a2610610) + ) + (wire (pts (xy 167.005 43.815) (xy 167.005 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0c07059f-6482-4a9c-b418-4aacad648414) + ) + (wire (pts (xy 247.015 43.18) (xy 247.015 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0e094661-2e48-41bd-bb5e-f81a27073860) + ) + (wire (pts (xy 208.28 109.855) (xy 208.28 93.345)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 0fe6f6c1-0223-478b-a8ec-f20e3977237c) + ) + (polyline (pts (xy 125.095 81.915) (xy 274.955 81.915)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1142b19c-a818-4ddd-8471-a94f1dae0b64) + ) + + (wire (pts (xy 187.96 135.255) (xy 207.645 135.255)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1844a2be-04a4-4332-ac74-87544ce29c70) + ) + (wire (pts (xy 189.865 132.715) (xy 194.945 132.715)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1a4cee9c-0cdc-42ca-a658-b9a308dad563) + ) + (wire (pts (xy 59.055 45.72) (xy 60.325 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1af271ab-eaf4-4453-ad9f-6b3493d5dff3) + ) + (wire (pts (xy 167.005 51.435) (xy 167.005 65.405)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 1bd8d8f4-5862-405e-b922-d1ffd4c6bf17) + ) + (wire (pts (xy 97.155 105.41) (xy 109.855 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21ddc724-20e1-499e-b5cc-004fe5177f06) + ) + (wire (pts (xy 53.975 80.645) (xy 53.975 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 21ec8565-ab59-4b97-a431-0acdb77205e0) + ) + (wire (pts (xy 167.005 33.02) (xy 167.005 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 22be73ca-f70c-470e-9535-40b4f7917278) + ) + (wire (pts (xy 141.605 35.56) (xy 149.225 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2462605b-695a-4cb6-b652-b17bdd8b2943) + ) + (wire (pts (xy 167.005 70.485) (xy 167.005 65.405)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2482e87e-1cb0-40cf-b202-f54966213394) + ) + (wire (pts (xy 88.265 38.1) (xy 90.805 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 266895fa-6ad4-44ed-bb39-fadda6cfebc1) + ) + (wire (pts (xy 86.995 43.18) (xy 90.805 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 26f468b2-3062-41e2-b2c1-23540eb1fbba) + ) + (wire (pts (xy 187.96 135.255) (xy 187.96 132.715)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 27d1b9c9-c408-4112-9f24-c3e854a42e10) + ) + (wire (pts (xy 118.11 105.41) (xy 118.11 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2854693c-9461-4e71-8a0d-9fcc75cce790) + ) + (wire (pts (xy 65.405 52.07) (xy 65.405 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29a77cf4-e91e-46dd-a713-0f4c9181869d) + ) + (wire (pts (xy 60.325 45.72) (xy 60.325 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 29b142bc-34ac-4fbb-80ca-4dd4cc58aea8) + ) + (wire (pts (xy 88.265 25.4) (xy 88.265 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 2fe1b1db-e62c-431e-8bcb-4da57360987a) + ) + (wire (pts (xy 167.005 65.405) (xy 163.195 65.405)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 324c36e1-319d-402d-8de9-c709df497929) + ) + (polyline (pts (xy 274.955 58.42) (xy 274.955 22.225)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 36451553-0cff-424e-a248-75af2a38161a) + ) + + (wire (pts (xy 88.265 96.52) (xy 89.535 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 379cb15a-78df-45c8-8b3e-4938c028b927) + ) + (wire (pts (xy 158.115 144.145) (xy 158.115 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3951b10e-6432-449a-b8bc-97a2a4697f3d) + ) + (wire (pts (xy 113.665 76.2) (xy 113.665 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3c5b8895-c85c-4fc5-8068-da322add33b5) + ) + (wire (pts (xy 65.405 43.18) (xy 67.945 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cc778e2-aa7c-4f85-b25b-d661d0e5cf4f) + ) + (wire (pts (xy 190.5 65.405) (xy 190.5 64.135)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3cd67fb7-b6e8-44fd-bb28-37434d804abf) + ) + (wire (pts (xy 86.995 53.34) (xy 94.615 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d71a606-a600-406b-a3ca-a48ed454ec83) + ) + (wire (pts (xy 189.865 127.635) (xy 189.865 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3d93c9c7-db37-4229-bc5d-f98e40794c80) + ) + (polyline (pts (xy 125.095 149.86) (xy 274.955 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f2db771-23b6-434f-8ab5-c5d628b8c7b9) + ) + (polyline (pts (xy 21.59 149.86) (xy 125.095 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3f8dc7ab-c5c9-4f53-a103-c374c4451d80) + ) + (polyline (pts (xy 125.095 149.86) (xy 125.095 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 3fb91045-dca9-4bc5-841c-97409136b6df) + ) + + (wire (pts (xy 207.645 135.255) (xy 207.645 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 421eb1de-a9ec-410d-a023-f0292952a246) + ) + (wire (pts (xy 109.855 105.41) (xy 118.11 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4310665b-814c-4c30-9aa3-b5e28b45a80c) + ) + (wire (pts (xy 81.915 64.77) (xy 81.915 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4709173f-fab0-46d0-803e-338cfaee027e) + ) + (wire (pts (xy 88.265 25.4) (xy 133.985 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 483d8c74-f6ea-4eab-8970-1fcf906192db) + ) + (polyline (pts (xy 108.585 58.42) (xy 21.59 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4902387e-4ba8-4435-895a-c122e90a915b) + ) + + (wire (pts (xy 133.985 33.02) (xy 133.985 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 49a7ab2b-49b4-4f36-bf06-05294ecce5e6) + ) + (wire (pts (xy 205.105 119.38) (xy 205.105 132.715)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ab0e173-2d71-4dff-a7f3-bacf52638677) + ) + (wire (pts (xy 83.185 43.18) (xy 86.995 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4ad9cf11-95a2-4997-a207-cdc1d11c8bde) + ) + (wire (pts (xy 213.995 36.83) (xy 215.265 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 4be73c54-cff3-4e9f-8338-2d8be1a7c47a) + ) + (wire (pts (xy 66.675 88.9) (xy 74.295 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5155fb3d-2aa9-4087-a838-d055ab0fcfeb) + ) + (wire (pts (xy 231.775 34.29) (xy 230.505 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 52061f07-2824-4a50-864c-66286432fea4) + ) + (wire (pts (xy 156.21 130.175) (xy 189.865 130.175)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5352b0fe-31bc-4d3b-8cbd-175477c2cdbb) + ) + (wire (pts (xy 85.725 88.9) (xy 85.725 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 537f2bf0-c1ef-4b01-a609-ef79ad172560) + ) + (wire (pts (xy 167.005 146.05) (xy 167.005 144.78)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 55dfea33-34fe-4f71-b60b-7139624fe266) + ) + (wire (pts (xy 62.865 66.04) (xy 66.675 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5620b424-67a5-49ad-9448-84241b11a1ce) + ) + (wire (pts (xy 151.765 73.025) (xy 151.765 70.485)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 58cb38ea-7be7-406c-b523-8cf5aa68e4c6) + ) + (wire (pts (xy 81.915 86.36) (xy 81.915 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5a128969-5504-4d99-8d57-dd94457ee4b6) + ) + (wire (pts (xy 59.055 43.18) (xy 65.405 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5cbceb7a-6bf3-4550-b36a-2132af52d5df) + ) + (wire (pts (xy 205.105 132.715) (xy 205.105 142.24)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d4eabec-2e61-442a-8a56-d8f050041c7b) + ) + (wire (pts (xy 53.975 88.9) (xy 66.675 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5d92586c-cbb9-4955-939c-4878b886b8ea) + ) + (wire (pts (xy 203.835 64.135) (xy 215.265 64.135)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5de6a793-bcfb-42e0-8007-8ca8078067b7) + ) + (wire (pts (xy 207.645 138.43) (xy 210.82 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5e883b3e-d728-4d24-9e70-a09cc3fce57f) + ) + (wire (pts (xy 60.325 53.34) (xy 65.405 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 5f02029d-42cb-4300-a66b-ec2f8f9688fc) + ) + (wire (pts (xy 93.345 76.2) (xy 113.665 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60225a2d-72c2-4c09-81c0-cfa025d979d6) + ) + (wire (pts (xy 109.855 105.41) (xy 109.855 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 60c3b4d0-d09c-4eeb-ac93-983fae796986) + ) + (wire (pts (xy 201.295 40.64) (xy 207.645 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 62251fb0-46e8-4a87-9356-3e4cd823f490) + ) + (wire (pts (xy 156.21 127.635) (xy 189.865 127.635)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 627df8b3-14c9-45df-9bf1-391e3c220dde) + ) + (wire (pts (xy 65.405 44.45) (xy 65.405 43.18)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6287def5-62b2-4024-b166-e38fa9a13630) + ) + (wire (pts (xy 213.995 42.545) (xy 213.995 36.83)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 630104b3-93a7-481a-acf6-38a9485989dc) + ) + (wire (pts (xy 81.915 74.93) (xy 81.915 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6429b8c8-7e66-4150-bc2e-1bbdf6d519b1) + ) + (wire (pts (xy 113.665 76.2) (xy 122.555 76.2)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 653fdf05-7ad5-427f-9ad5-b898b68fc587) + ) + (wire (pts (xy 151.765 70.485) (xy 155.575 70.485)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 65c7b335-50f8-4e94-8d86-a184c6bc3561) + ) + (wire (pts (xy 81.915 76.2) (xy 81.915 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67384fc6-b401-4db0-9217-86a7af4c7533) + ) + (wire (pts (xy 190.5 64.135) (xy 196.215 64.135)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 67443fbf-7fe2-4837-993c-0dba01d657e0) + ) + (polyline (pts (xy 21.59 22.225) (xy 108.585 22.225)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 677608de-5fc2-4ce0-8fe7-41629f6caad8) + ) + + (wire (pts (xy 109.855 96.52) (xy 118.11 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 69e88ec0-0bf0-43c7-807f-e6ef251571a1) + ) + (wire (pts (xy 81.915 66.04) (xy 81.915 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6c85efa9-a16c-4bc5-aa44-24a3ff9b819b) + ) + (wire (pts (xy 194.945 139.7) (xy 187.96 139.7)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f0c03fe-7c32-44c6-b492-9caf1578dbe8) + ) + (polyline (pts (xy 108.585 58.42) (xy 192.405 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 6f61af0a-24b7-49ed-9edf-873069062204) + ) + + (wire (pts (xy 156.21 122.555) (xy 187.96 122.555)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72793ace-37f1-4a9c-a0f5-24fcd884768b) + ) + (wire (pts (xy 207.645 31.75) (xy 215.265 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 72883522-157e-408a-9117-c099cdcd6f32) + ) + (wire (pts (xy 207.645 46.355) (xy 207.645 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 74b9059d-63b1-4a60-94fd-9503991a30b2) + ) + (wire (pts (xy 203.2 119.38) (xy 205.105 119.38)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7537c03d-ec79-4a5d-9580-45ae5654d35b) + ) + (wire (pts (xy 247.015 34.29) (xy 247.015 35.56)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 78db2b97-67f2-4189-ba2b-e6b4e3d2637d) + ) + (wire (pts (xy 194.31 93.345) (xy 193.04 93.345)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 790c00aa-0a57-4422-ae7d-52ff696f728e) + ) + (wire (pts (xy 53.975 66.04) (xy 55.245 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7b26c7aa-4385-42c2-9201-3991ef596e00) + ) + (wire (pts (xy 158.115 136.525) (xy 158.115 135.255)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c2dfef8-9473-495c-82d1-8053132293e3) + ) + (wire (pts (xy 156.21 107.315) (xy 194.31 107.315)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7c696931-d3b1-42b1-8fbf-da30126d66ae) + ) + (wire (pts (xy 107.315 40.64) (xy 109.855 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f4a3ee4-131c-4681-bda1-7f567bae03ce) + ) + (wire (pts (xy 167.005 70.485) (xy 167.005 73.025)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 7f75d061-6c03-491e-b857-3d2b9fddd14f) + ) + (wire (pts (xy 88.265 66.04) (xy 90.17 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 832e54de-e213-43ec-9e8a-ef42739d25b2) + ) + (wire (pts (xy 164.465 38.1) (xy 167.005 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 848411e3-ea9a-4bb6-a872-09a4ee92303b) + ) + (wire (pts (xy 167.005 70.485) (xy 173.99 70.485)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 848470c0-08b9-4de1-9d57-0deb204c083d) + ) + (wire (pts (xy 239.395 34.29) (xy 247.015 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 850816fe-2900-4511-a878-72e55f2f6ae8) + ) + (wire (pts (xy 187.96 132.715) (xy 156.21 132.715)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 89a353b7-2652-4fdd-b446-2961dd3aea6f) + ) + (polyline (pts (xy 125.095 149.86) (xy 125.095 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8dafb805-049f-4dd9-b2ce-87aa3b731b23) + ) + (polyline (pts (xy 274.955 81.915) (xy 274.955 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 8f07a7c2-c1f8-411d-ad07-50eed5879b29) + ) + + (wire (pts (xy 107.315 66.04) (xy 109.22 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 947e9d40-e06a-44ca-b467-01cc46bd24e4) + ) + (wire (pts (xy 194.31 107.315) (xy 194.31 93.345)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 96272f8c-f8bb-4a4f-8261-2eb2f2963763) + ) + (wire (pts (xy 156.21 104.775) (xy 180.975 104.775)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 968fceb9-2505-4d1a-a6a1-29efd6db6d3d) + ) + (wire (pts (xy 189.865 121.92) (xy 193.04 121.92)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98b4012d-719b-442f-84fc-3ae9ddc19b5e) + ) + (wire (pts (xy 230.505 138.43) (xy 233.045 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 98b7552c-9ed7-4b65-82d8-0a13f8011eca) + ) + (wire (pts (xy 190.5 75.565) (xy 190.5 74.93)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ace91c9-13a6-490f-bbff-869df4cd039c) + ) + (wire (pts (xy 86.995 43.18) (xy 86.995 53.34)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9bb158e5-5826-4ab3-9a4b-544e9a502f37) + ) + (wire (pts (xy 141.605 25.4) (xy 167.005 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cb600ea-79f3-4a54-8eb0-c957e5373c06) + ) + (polyline (pts (xy 21.59 58.42) (xy 21.59 22.225)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9cd911cf-c713-4f8f-a0c9-9f2fd67f07fc) + ) + + (wire (pts (xy 79.375 25.4) (xy 88.265 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9e6dff88-c16f-44a8-a1cd-e5b20fb20e9d) + ) + (wire (pts (xy 156.21 109.855) (xy 208.28 109.855)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid 9ff9b7c5-c5e2-4786-9d8b-21e2d52e724c) + ) + (wire (pts (xy 85.725 88.9) (xy 93.345 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a0c46f22-ba50-421e-b7a3-c6b1ae8e37a8) + ) + (wire (pts (xy 151.765 65.405) (xy 151.765 70.485)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a1382019-0d9b-435a-8a50-f6e6c2e9f5e8) + ) + (wire (pts (xy 253.365 41.91) (xy 253.365 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a664a5c5-316c-4b6d-aa64-c7dc9be65575) + ) + (wire (pts (xy 133.985 25.4) (xy 141.605 25.4)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid a7520fa0-e5b4-4b2a-bdc5-ffe91ed8cc00) + ) + (wire (pts (xy 113.665 86.36) (xy 113.665 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ae6e9aad-d6a1-4fec-821e-f6a23a3ca856) + ) + (wire (pts (xy 104.775 96.52) (xy 109.855 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b0f637e7-82e9-4cb4-a540-df6b3d4c13ca) + ) + (wire (pts (xy 167.005 117.475) (xy 167.005 80.645)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1a261c6-ac14-4cfa-a29c-f916b02275f9) + ) + (wire (pts (xy 53.975 75.565) (xy 53.975 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b1bb36a9-e372-41dc-bac7-612609fe9734) + ) + (wire (pts (xy 220.98 93.345) (xy 219.71 93.345)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b23c5401-1a81-4203-9b04-dd496eea854a) + ) + (wire (pts (xy 187.96 139.7) (xy 187.96 135.255)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3b9bc50-0ae5-446e-8a6a-a40268dc8e3a) + ) + (wire (pts (xy 74.295 66.04) (xy 81.915 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b3e75a1f-9da5-4c14-ba3f-160ce4fc4bd7) + ) + (wire (pts (xy 74.295 66.04) (xy 74.295 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b529b540-fe90-4dff-80e3-7cc5a9ccbb66) + ) + (wire (pts (xy 250.825 39.37) (xy 259.715 39.37)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b5617dfe-db7c-427f-bdcb-473401112710) + ) + (wire (pts (xy 65.405 53.34) (xy 65.405 54.61)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b628096d-8d4d-40c0-a034-09ace7f267b4) + ) + (wire (pts (xy 183.515 40.64) (xy 188.595 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b6dccde8-9933-40e0-9682-ef341c200ea2) + ) + (wire (pts (xy 106.045 40.64) (xy 107.315 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b705b83c-4f44-46b4-ac75-1fe4b8b01c3e) + ) + (wire (pts (xy 81.915 66.04) (xy 88.265 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b776ca6e-2890-4e0f-9d6c-5a5a023d01b6) + ) + (polyline (pts (xy 274.955 149.86) (xy 274.955 81.915)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b7af0c13-50bc-4cf1-91b5-8a04b3a713f8) + ) + + (wire (pts (xy 155.575 65.405) (xy 151.765 65.405)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid b9daf163-7c82-4586-8717-049299291796) + ) + (wire (pts (xy 66.675 66.04) (xy 66.675 72.39)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid be817474-b3b3-49ca-a8f5-6c07071e57b1) + ) + (wire (pts (xy 167.005 38.1) (xy 173.355 38.1)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid bfa85cd2-e3f1-4b12-8010-352a2dfe0e33) + ) + (polyline (pts (xy 192.405 58.42) (xy 192.405 22.225)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c14f2137-90ef-4c91-9750-b204b5b1de9b) + ) + + (wire (pts (xy 158.115 135.255) (xy 156.21 135.255)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c187b2e5-e545-4fa9-8e8a-29a7d8eee269) + ) + (wire (pts (xy 163.195 70.485) (xy 167.005 70.485)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c1b1c623-a8e6-4a00-96fb-dc77f4f1f60f) + ) + (wire (pts (xy 131.445 40.64) (xy 133.985 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c26279cc-cf58-43ec-a2b9-455e90b8ea0a) + ) + (wire (pts (xy 109.855 95.25) (xy 109.855 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c3c0107c-616c-41c9-a52a-23a65a88eb74) + ) + (wire (pts (xy 179.705 93.345) (xy 180.975 93.345)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c491b1d8-d146-426e-bc20-0e20d456ab6f) + ) + (wire (pts (xy 253.365 44.45) (xy 247.015 44.45)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c4d1e5ba-d242-4e61-8092-875767470eb3) + ) + (wire (pts (xy 180.975 104.775) (xy 180.975 93.345)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c5181957-a709-45ec-aeac-aee47cd898b2) + ) + (wire (pts (xy 81.915 88.9) (xy 85.725 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c698abea-a780-4c15-939b-1bd03b379ab9) + ) + (wire (pts (xy 210.185 46.355) (xy 207.645 46.355)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6e44c09-2bb2-4c2f-8151-611820ed055f) + ) + (wire (pts (xy 188.595 40.64) (xy 188.595 41.91)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c6feae72-ebeb-46d4-a862-2d3b328749d0) + ) + (wire (pts (xy 231.775 46.355) (xy 231.775 34.29)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c7590e5e-e9e2-4d9d-b561-9be7ca32d793) + ) + (wire (pts (xy 48.895 75.565) (xy 53.975 75.565)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c77629b0-62de-4a36-a643-5691fbdd2af9) + ) + (wire (pts (xy 133.985 40.64) (xy 149.225 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c82bbccb-01cd-4b61-9030-bbe8d2cc46b8) + ) + (wire (pts (xy 207.645 40.64) (xy 207.645 31.75)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c905e0e5-2aad-4bd8-8428-13d3e7738498) + ) + (wire (pts (xy 109.22 66.04) (xy 109.22 67.31)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid c966f362-28c6-4f96-9b19-7179f06cce2e) + ) + (wire (pts (xy 74.295 80.01) (xy 74.295 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbca6edb-8a1c-4a8a-9e3b-09a8ba4f56bd) + ) + (polyline (pts (xy 192.405 22.225) (xy 108.585 22.225)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cbfeb664-63f2-4963-8163-3b0574a3f41e) + ) + + (wire (pts (xy 188.595 49.53) (xy 188.595 52.07)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cca22a82-cda2-4782-914d-13a4f681d6e2) + ) + (wire (pts (xy 188.595 40.64) (xy 193.675 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cca6b15f-66c7-416b-8776-e5a58fb719bd) + ) + (wire (pts (xy 85.725 105.41) (xy 97.155 105.41)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ce665db0-fa22-4f91-be9b-ca3c9e533776) + ) + (polyline (pts (xy 274.955 22.225) (xy 192.405 22.225)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid cf0515bd-bfc3-448d-bf9c-bb3c91278285) + ) + (polyline (pts (xy 21.59 58.42) (xy 21.59 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d091de98-9980-486d-9b81-7bd9a6f939b2) + ) + + (wire (pts (xy 93.345 88.9) (xy 93.345 86.36)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1283a9c-1f75-4ba0-bafd-9e44d606d9b1) + ) + (wire (pts (xy 217.805 46.355) (xy 231.775 46.355)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d1e02807-2a94-412a-9ec6-95423ae0beed) + ) + (wire (pts (xy 156.21 112.395) (xy 220.98 112.395)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid d4f82cce-fd98-43e9-9809-fd6c138f6ede) + ) + (wire (pts (xy 189.865 130.175) (xy 189.865 132.715)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid da9b9245-baae-4566-9693-8fec82db2079) + ) + (wire (pts (xy 247.015 44.45) (xy 247.015 45.72)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dbb35709-b73b-4016-8cc0-1ef7693dbec7) + ) + (wire (pts (xy 117.475 40.64) (xy 123.825 40.64)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc4a0a52-c6d9-4a39-8f1c-4a198d900554) + ) + (polyline (pts (xy 108.585 22.225) (xy 108.585 23.495)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid dc58f3a3-ed0d-4563-9e2f-4f43392305e3) + ) + + (wire (pts (xy 181.61 70.485) (xy 182.88 70.485)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ddacccc4-d8c8-4689-9a29-80cfd4da1790) + ) + (wire (pts (xy 220.98 112.395) (xy 220.98 93.345)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid de7605f5-5e93-4774-8abe-388c2a5dd2bf) + ) + (wire (pts (xy 233.045 138.43) (xy 233.045 133.985)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid df17e21d-d88a-4d07-b537-afcc79b75991) + ) + (wire (pts (xy 156.21 117.475) (xy 167.005 117.475)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2c5293d-7fa5-4569-b42c-b90e19092865) + ) + (polyline (pts (xy 21.59 58.42) (xy 21.59 149.86)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e2f55571-aab3-4997-af69-df65d131435f) + ) + + (wire (pts (xy 88.265 66.04) (xy 88.265 96.52)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e41c4923-b76b-41b6-9ab8-fc420e29595c) + ) + (wire (pts (xy 218.44 138.43) (xy 222.885 138.43)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid e9eb08b5-bc5b-475a-a230-0b98cb37849f) + ) + (wire (pts (xy 97.155 105.41) (xy 97.155 104.14)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ed9efe40-d3e3-4f43-a29b-f42692832cae) + ) + (wire (pts (xy 48.895 80.645) (xy 53.975 80.645)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid ef6bd1ff-cefa-40df-ab14-539080a05d7d) + ) + (wire (pts (xy 74.295 88.9) (xy 81.915 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f0adbf75-c1b7-4389-a7d3-cda6ceb04a57) + ) + (wire (pts (xy 158.115 146.05) (xy 167.005 146.05)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f3535dba-b19b-4c44-bc62-aab34bf2cf70) + ) + (wire (pts (xy 66.675 80.01) (xy 66.675 88.9)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f490fbf7-8cb6-474e-9c71-225997f96dd5) + ) + (wire (pts (xy 93.345 76.2) (xy 93.345 78.74)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f57a1676-bccf-420e-8992-39ff2da9b98b) + ) + (wire (pts (xy 97.79 66.04) (xy 99.695 66.04)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9674bdb-5817-401c-92ae-6dc353470325) + ) + (polyline (pts (xy 108.585 23.495) (xy 108.585 58.42)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid f9e83980-c2d9-49d2-ad44-870ce4b20cba) + ) + + (wire (pts (xy 187.96 116.84) (xy 193.04 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fb5a1bfb-554f-4a07-ba4b-05e4e45569e5) + ) + (wire (pts (xy 187.96 122.555) (xy 187.96 116.84)) + (stroke (width 0) (type default) (color 0 0 0 0)) + (uuid fd4ad112-8213-48b6-a182-96d55c5a8e55) + ) + + (text "Output Buffer" (at 193.04 24.765 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 134f8783-0bc4-469f-8b9f-e68b13f2f372) + ) + (text "VCA" (at 109.22 24.765 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1efa085f-3c66-4306-8839-c5612cb38e99) + ) + (text "RATE:\nDEPTH: \nSYM: \n \n \n \nMOD: " (at 227.33 99.06 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 24c096a8-c1ea-4de1-be2e-63c8882662cf) + ) + (text "SQUARE\nSINE\nTRIANGLE\n" (at 207.645 122.555 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 3a0e1d05-c77a-401f-98ff-9473cc1d6c8f) + ) + (text "Power Supply" (at 22.225 60.96 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 42088d92-71a8-4c3b-8c16-1c63e53032a7) + ) + (text "TEMPO MOD ON" (at 207.645 145.415 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 654d8edb-26bb-4869-a978-d39ce1b7088a) + ) + (text "TAP TEMPO" (at 207.645 133.985 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 6a8aa7b2-72e2-428c-980a-6d828c7463cd) + ) + (text "MOD" (at 210.185 97.79 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 9910231d-fe3e-49bd-a920-0422324dec90) + ) + (text "Modulation Frequency\nModulation Intensity\nModulation Wavform Shape\n Square: PWM\n Triangle: ->SAW\n Sine: No Effect\nTime Division/Multplier\n 16\n 8\n 4\n 2\n x1\n 1/4\n 1/4.\n 1/8\n 1/8.\n \n" + (at 234.95 119.38 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 99618a11-26d1-4fa7-8db0-7e6e70203e33) + ) + (text "Input Buffer & Pre-Amp" (at 22.225 24.765 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid a8ab9f74-b5d8-4f1d-bb7c-19640f5b85dc) + ) + (text "Vref = 4.5 (Vcc/2)" (at 93.345 75.565 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ad17fd58-3481-4071-a67d-c0c767b23050) + ) + (text "Modulation Source Generator" (at 125.73 84.455 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid ad85e174-f76d-47cb-afc2-02303444964d) + ) + (text "DEPTH\n" (at 181.61 97.79 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid b7846394-ca01-4868-a5bc-eaac43a05bb5) + ) + (text "near U2" (at 66.675 85.09 90) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c23575e7-94ca-403e-b2fe-7735faa0ff9a) + ) + (text "RATE" (at 168.91 97.79 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid c79ef5a2-93b9-4e47-969d-b839b8559a46) + ) + (text "PWM -> DAC" (at 125.73 60.96 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid dbddcd81-622d-4dd8-ad98-3686216972d4) + ) + (text "Vcc = 9V DC\n2.1mm Center Negative" (at 26.67 87.63 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid eb61f8f4-922c-4ecf-a636-35721551a948) + ) + (text "SYM" (at 197.485 97.79 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid f0af0722-e22b-4188-a83a-edab3929d290) + ) + + (label "VREF" (at 117.475 76.2 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 13f4df76-5af2-405c-b137-958f9a82537a) + ) + (label "VREF" (at 81.915 25.4 0) + (effects (font (size 1.27 1.27)) (justify left bottom)) + (uuid 1f043f1b-ad3f-41f5-8a13-48b62a3b7393) + ) + + (symbol (lib_id "power:+5V") (at 203.2 89.535 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 028b99d2-422b-4a47-abdf-987039c0dcc1) + (property "Reference" "#PWR020" (id 0) (at 203.2 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 203.2 84.455 0)) + (property "Footprint" "" (id 2) (at 203.2 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 203.2 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4065769b-3d7a-4b33-8821-9ac12544b7ca)) + ) + + (symbol (lib_id "Device:R") (at 81.915 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 02d1e0a8-bf20-455f-b69e-845f84f2ba41) + (property "Reference" "R4" (id 0) (at 84.455 81.2799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "" (id 1) (at 84.455 83.8199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 80.137 82.55 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 81.915 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid fa78709e-d1fe-4fb1-9cc2-ae29e80e63e7)) + (pin "2" (uuid d997f923-5e5d-4b9c-b108-cc21ca4346dd)) + ) + + (symbol (lib_id "Switch:SW_SPDT_MSM") (at 200.025 142.24 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 045205a8-9279-485c-8038-3762c5153a72) + (property "Reference" "SW3" (id 0) (at 192.405 142.24 0)) + (property "Value" "SW_SPDT_MSM" (id 1) (at 197.485 137.795 0)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 200.025 142.24 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 200.025 142.24 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 024a5bea-6533-48d4-80b9-25c59aab404a)) + (pin "2" (uuid 5aec48fa-e205-44d3-be3b-699c500e3af3)) + (pin "3" (uuid a0059704-bcba-49bb-a050-301debbd6921)) + ) + + (symbol (lib_id "power:+9V") (at 81.915 64.77 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0482e22d-6842-4b20-a178-768c65edbd09) + (property "Reference" "#PWR04" (id 0) (at 81.915 68.58 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+9V" (id 1) (at 81.915 60.325 0)) + (property "Footprint" "" (id 2) (at 81.915 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 81.915 64.77 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 58c0945f-31b0-4f25-b315-dccac0ec690d)) + ) + + (symbol (lib_id "Switch:SW_Push") (at 200.025 132.715 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 049e1e3e-c904-4ddc-9991-66aa46751da7) + (property "Reference" "SW2" (id 0) (at 200.025 124.46 0)) + (property "Value" "SW_Push" (id 1) (at 200.025 127 0)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 200.025 127.635 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 200.025 127.635 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1eafcb1d-5cd5-40ba-b36a-55630a895f1b)) + (pin "2" (uuid a03a63fd-7694-43d7-b7e9-2b0a02e66148)) + ) + + (symbol (lib_id "Device:R_Potentiometer") (at 247.015 39.37 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 05e6021f-96e5-415b-8bf8-d37fbab0152a) + (property "Reference" "RV4" (id 0) (at 244.475 38.0999 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "50k LOG" (id 1) (at 244.475 40.6399 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 247.015 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 247.015 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d939b064-8985-4b7d-8a1a-0577d1e8851f)) + (pin "2" (uuid 472bc238-5708-4bf8-a415-c57d23bfb7a9)) + (pin "3" (uuid a628dc24-91d2-4ea2-8975-062aa583ab12)) + ) + + (symbol (lib_id "Device:R_Potentiometer") (at 203.2 93.345 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0730adea-81a1-4a16-b234-8593e2de6ad4) + (property "Reference" "RV3" (id 0) (at 200.66 92.0749 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 200.66 94.6149 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 203.2 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 203.2 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 51aecb44-b850-4b4f-a730-eacda830621c)) + (pin "2" (uuid 3678b294-5dc1-47d3-aab2-57d30c7b7570)) + (pin "3" (uuid b9035079-28fb-4a9c-98bd-0c7f8ab4051f)) + ) + + (symbol (lib_id "power:GND") (at 207.645 52.07 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 09211d4d-380f-4979-9c5d-6e8d6c7c76ac) + (property "Reference" "#PWR025" (id 0) (at 207.645 58.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 207.645 55.88 0)) + (property "Footprint" "" (id 2) (at 207.645 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 207.645 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2a04b964-3e5a-4b1c-be78-43e7e20c9991)) + ) + + (symbol (lib_id "power:GND") (at 203.2 97.155 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 0a048047-fd7f-48d1-bed9-f49dd7c42465) + (property "Reference" "#PWR021" (id 0) (at 203.2 103.505 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 203.2 102.235 0)) + (property "Footprint" "" (id 2) (at 203.2 97.155 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 203.2 97.155 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 537ae31b-4bd6-4025-bdef-1ac6b382c6bc)) + ) + + (symbol (lib_id "Device:C_Polarized") (at 113.665 40.64 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid 0d5a6edb-d525-4289-8e5a-53304df0385d) + (property "Reference" "C7" (id 0) (at 116.205 41.275 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1uF" (id 1) (at 111.125 36.83 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 109.855 41.6052 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 113.665 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ce72416e-3248-4a45-8ce4-c540a97013de)) + (pin "2" (uuid d8f55669-0574-4d4c-ad0a-f8bbf6c5c90d)) + ) + + (symbol (lib_id "power:GND") (at 215.9 97.155 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 104098dd-510e-4dd5-902b-ac13cd5f0673) + (property "Reference" "#PWR027" (id 0) (at 215.9 103.505 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 215.9 102.235 0)) + (property "Footprint" "" (id 2) (at 215.9 97.155 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 215.9 97.155 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 31415510-accb-4f0d-9fc4-3bc2a05c264f)) + ) + + (symbol (lib_id "Device:C") (at 93.345 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 10c03ca5-f28e-4dc2-b3ca-d8f478c80a3b) + (property "Reference" "C4" (id 0) (at 97.155 81.2799 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 97.155 83.8199 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (id 2) (at 94.3102 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 93.345 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7f1534df-0bd5-414d-bbeb-2df485bbbf53)) + (pin "2" (uuid 34f852f6-01a1-4595-8937-582036d30494)) + ) + + (symbol (lib_id "Device:C_Polarized") (at 74.295 76.2 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 14c45caf-2ca5-4676-9993-7894f0246edd) + (property "Reference" "C3" (id 0) (at 76.2 73.66 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100uF" (id 1) (at 74.93 78.74 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 75.2602 80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 74.295 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 90383200-7bc6-4f37-9607-526efafd18e8)) + (pin "2" (uuid 2bc5f9d0-bc84-435c-86ee-6723cb506aac)) + ) + + (symbol (lib_id "Regulator_Linear:L7805") (at 97.155 96.52 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 172d14e9-0ed1-4942-9b95-1fe8560ad343) + (property "Reference" "U3" (id 0) (at 97.155 90.805 0)) + (property "Value" "L7805" (id 1) (at 97.155 93.345 0)) + (property "Footprint" "Package_TO_SOT_THT:TO-220-3_Vertical" (id 2) (at 97.79 100.33 0) + (effects (font (size 1.27 1.27) italic) (justify left) hide) + ) + (property "Datasheet" "http://www.st.com/content/ccc/resource/technical/document/datasheet/41/4f/b3/b0/12/d4/47/88/CD00000444.pdf/files/CD00000444.pdf/jcr:content/translations/en.CD00000444.pdf" (id 3) (at 97.155 97.79 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 67a7199e-70a3-43a6-9aa5-5ffd3c799ec9)) + (pin "2" (uuid 5137bbaa-a24c-4d34-b3cd-9f87adf3ee9d)) + (pin "3" (uuid 896125d5-8363-4ca8-956d-7382c0c08d07)) + ) + + (symbol (lib_id "power:GND") (at 190.5 74.93 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1796b6dc-5a37-4073-ac31-fa5ded564a42) + (property "Reference" "#PWR019" (id 0) (at 190.5 81.28 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 190.5 80.01 0)) + (property "Footprint" "" (id 2) (at 190.5 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 190.5 74.93 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 58e51f77-d92a-445a-880b-ba1f495baf2e)) + ) + + (symbol (lib_id "power:GND") (at 61.595 116.205 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 1f5bb777-af96-4c18-b365-ead2bc6f2a22) + (property "Reference" "#PWR03" (id 0) (at 61.595 122.555 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 61.595 121.285 0)) + (property "Footprint" "" (id 2) (at 61.595 116.205 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 61.595 116.205 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 01f49349-da42-4708-974b-e088342bf5df)) + ) + + (symbol (lib_id "Connector:Jack-DC") (at 41.275 78.105 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 20f7c671-f9ce-45b7-9a7b-97ed319952e7) + (property "Reference" "J1" (id 0) (at 34.925 76.8349 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "Jack-DC" (id 1) (at 34.925 79.3749 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 42.545 77.089 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 42.545 77.089 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5f843d60-c0fb-4b86-ba80-51af07b8c44a)) + (pin "2" (uuid 6df3ba3b-8bdc-440a-a100-923fb51a1a5a)) + ) + + (symbol (lib_id "power:+9V") (at 72.39 100.965 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 227cfc88-6964-46a8-93ba-8181d9992999) + (property "Reference" "#PWR06" (id 0) (at 72.39 104.775 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+9V" (id 1) (at 72.39 95.885 0)) + (property "Footprint" "" (id 2) (at 72.39 100.965 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 72.39 100.965 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 9f9a9934-409e-49d0-805f-d615f3cb7f9b)) + ) + + (symbol (lib_id "Device:R") (at 127.635 40.64 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 22c9e179-6c43-4e67-909d-1f02b37451fb) + (property "Reference" "R7" (id 0) (at 127.635 34.29 90)) + (property "Value" "" (id 1) (at 127.635 36.83 90)) + (property "Footprint" "" (id 2) (at 127.635 42.418 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 127.635 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid c184e7b3-ec79-4ad4-b426-1cff154375ed)) + (pin "2" (uuid 1d64f58a-0d16-4159-b984-e3a231fc1b48)) + ) + + (symbol (lib_id "power:GND") (at 109.22 67.31 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 316c6249-caec-4182-91a1-63d1454b51ad) + (property "Reference" "#PWR08" (id 0) (at 109.22 73.66 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 109.22 72.39 0)) + (property "Footprint" "" (id 2) (at 109.22 67.31 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.22 67.31 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 38800420-a95a-41fa-b868-eeb0e81596e2)) + ) + + (symbol (lib_id "Device:R") (at 98.425 53.34 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 32f77ed2-d2d8-4498-b1c5-1a45c90ea279) + (property "Reference" "R6" (id 0) (at 98.425 46.99 90)) + (property "Value" "" (id 1) (at 98.425 49.53 90)) + (property "Footprint" "" (id 2) (at 98.425 55.118 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 98.425 53.34 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3b3b739b-a8b0-44c8-ab7d-cdde45cd3943)) + (pin "2" (uuid 084b9eff-0a74-414a-a667-f0018cba6cd8)) + ) + + (symbol (lib_id "Device:R") (at 65.405 48.26 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 35f8b1cf-d587-4336-a64a-a2980024e9bd) + (property "Reference" "R1" (id 0) (at 67.945 46.9899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "" (id 1) (at 67.945 49.5299 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 63.627 48.26 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 65.405 48.26 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid aebb5e93-f1fb-48e8-89a0-41469b7e00db)) + (pin "2" (uuid f019b33e-90cf-409e-b23d-046e36cb1970)) + ) + + (symbol (lib_id "Device:LED") (at 200.025 64.135 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3cfe6a7f-8a66-4cb9-9d30-79a2918ce977) + (property "Reference" "D3" (id 0) (at 200.025 60.96 0)) + (property "Value" "LED_PULSE" (id 1) (at 207.01 62.865 0)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 200.025 64.135 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 200.025 64.135 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ea0abb1c-eef6-4ece-97c4-8a6b0afe0425)) + (pin "2" (uuid 8628e550-83cc-4680-99c1-567370e3c220)) + ) + + (symbol (lib_id "Device:R") (at 167.005 29.21 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3d86985c-8531-4937-a6d2-be484b6a01cf) + (property "Reference" "R15" (id 0) (at 168.91 27.94 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "" (id 1) (at 168.91 30.48 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 168.783 29.21 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 167.005 29.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0daf1f0c-436f-4add-834d-b057a711e3c6)) + (pin "2" (uuid 3a5ea2ed-6a5c-45a6-865b-394fef15fea4)) + ) + + (symbol (lib_id "Switch:SW_SPDT_MSM") (at 198.12 119.38 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 3df53d8a-0ef5-4cad-9d90-e6b44aee51b9) + (property "Reference" "SW1" (id 0) (at 192.405 119.38 0)) + (property "Value" "SW_SPDT_MSM" (id 1) (at 197.993 114.3 0)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 198.12 119.38 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 198.12 119.38 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b23cd14f-b6e6-43c7-b223-ec7bac4e123b)) + (pin "2" (uuid a9910ee0-367c-485f-9ce8-4c167cadfef4)) + (pin "3" (uuid 0db6540d-9a98-4ad3-8b3d-e2998adcb40c)) + ) + + (symbol (lib_id "MCU_Microchip_ATtiny:ATtiny44A-P") (at 140.97 120.015 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 4191ef53-102f-4cd9-8f99-b7e26e6d4541) + (property "Reference" "U4" (id 0) (at 138.43 97.79 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "ATtiny44A-P" (id 1) (at 154.94 97.79 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Package_DIP:DIP-14_W7.62mm" (id 2) (at 140.97 120.015 0) + (effects (font (size 1.27 1.27) italic) hide) + ) + (property "Datasheet" "http://ww1.microchip.com/downloads/en/DeviceDoc/doc8183.pdf" (id 3) (at 140.97 120.015 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0705397e-5667-49da-bec8-2b0dfd59440b)) + (pin "10" (uuid c3ba8c8b-c1c7-441b-b844-68dbf07398ef)) + (pin "11" (uuid ac47b8c1-2471-4c93-bc7c-b2be785076d7)) + (pin "12" (uuid e5a25b6e-4e66-4fe2-8766-6714682f8395)) + (pin "13" (uuid 3927d38f-f3c8-493b-9544-834f06634068)) + (pin "14" (uuid 9e2502d7-e1c2-46e0-ac60-a77c0cad719b)) + (pin "2" (uuid b843e39f-db06-46bc-a5c8-b9a585e60130)) + (pin "3" (uuid be54d3cf-b964-4712-a3a6-3022623236b5)) + (pin "4" (uuid b7d5adc3-e4df-482b-aa71-6fb8fd987eb8)) + (pin "5" (uuid 29bd2fd9-9ba2-47d5-9cdd-0a209728ea36)) + (pin "6" (uuid 197ade9f-4abb-43e7-8a3c-c54baa07f544)) + (pin "7" (uuid 5f2460ac-47c2-4839-b209-4cddf65b1361)) + (pin "8" (uuid 00c0ad71-135d-45aa-9644-978bf2e26f4b)) + (pin "9" (uuid 4abbef09-9b50-4e67-99fa-c80100d5a4aa)) + ) + + (symbol (lib_id "Device:R_Potentiometer") (at 189.23 93.345 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 43757849-b532-4d70-9abd-eff55e4b1df4) + (property "Reference" "RV2" (id 0) (at 186.69 92.0749 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 186.69 94.6149 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 189.23 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 189.23 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e6e5c8ec-f967-4ba0-b446-ce0737ca36e5)) + (pin "2" (uuid 54246d8e-d1cf-48cb-a541-3e5ec48f0133)) + (pin "3" (uuid 2a8b7363-8b80-4495-b890-6d9929456ebb)) + ) + + (symbol (lib_id "power:GND") (at 81.915 88.9 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 43ee0e64-2009-426d-bee8-5cbddf4c0a6a) + (property "Reference" "#PWR05" (id 0) (at 81.915 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 81.915 93.98 0)) + (property "Footprint" "" (id 2) (at 81.915 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 81.915 88.9 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f6e7b9a7-ac1e-4947-acdf-4f34c16bae8b)) + ) + + (symbol (lib_id "Device:R_Potentiometer") (at 175.895 93.345 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 4423bffb-196e-4324-b4ae-a6a7f4a011d5) + (property "Reference" "RV1" (id 0) (at 173.355 92.0749 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 173.355 94.6149 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 175.895 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 175.895 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 26fe011b-193f-4bd3-91dd-0b7c7f1fdf58)) + (pin "2" (uuid 4b0c4776-395b-45fd-abfe-3c33ac62d069)) + (pin "3" (uuid 0b230915-679c-4d82-a2d4-64b5da317713)) + ) + + (symbol (lib_id "power:+9V") (at 61.595 100.965 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 444dfbdd-cbd7-4ba6-9870-8412af94aee2) + (property "Reference" "#PWR02" (id 0) (at 61.595 104.775 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+9V" (id 1) (at 61.595 95.885 0)) + (property "Footprint" "" (id 2) (at 61.595 100.965 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 61.595 100.965 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid eae18041-9da3-44f5-b9a7-1b4c4f58e795)) + ) + + (symbol (lib_id "Device:C") (at 159.385 65.405 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid 457f42c3-5be7-4c16-bf1a-e05a256ab5fe) + (property "Reference" "C9" (id 0) (at 156.845 64.135 90)) + (property "Value" "330nF" (id 1) (at 159.385 61.595 90)) + (property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm" (id 2) (at 163.195 64.4398 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 159.385 65.405 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 8d170399-f0ef-41c8-b923-0b2c3f069513)) + (pin "2" (uuid a411903f-4de6-4ee7-aee3-770ddf1a3374)) + ) + + (symbol (lib_id "Device:R") (at 81.915 71.12 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 497a3aba-0f0c-436e-9543-aa7c20ad968e) + (property "Reference" "R3" (id 0) (at 84.455 69.8499 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "" (id 1) (at 84.455 72.3899 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "" (id 2) (at 80.137 71.12 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 81.915 71.12 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7bdf0f3e-3a1c-4abb-9c33-d80432067514)) + (pin "2" (uuid b180f6d0-d840-4b9f-8540-82b63ef22fd3)) + ) + + (symbol (lib_id "power:GND") (at 65.405 54.61 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 4ab64e29-964f-40b2-bf58-c546b31cd3eb) + (property "Reference" "#PWR01" (id 0) (at 65.405 60.96 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 69.215 56.515 0)) + (property "Footprint" "" (id 2) (at 65.405 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 65.405 54.61 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid df66fd3c-5f0f-4c96-be9a-937f6206ebd8)) + ) + + (symbol (lib_id "Device:R") (at 177.8 70.485 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 50e83388-d157-4147-9b50-698eee4a2f3a) + (property "Reference" "R13" (id 0) (at 177.8 64.135 90)) + (property "Value" "" (id 1) (at 177.8 66.675 90)) + (property "Footprint" "" (id 2) (at 177.8 72.263 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 177.8 70.485 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b77704fb-cbae-4a6d-baf7-6069fef71f98)) + (pin "2" (uuid 16514efe-bea7-4336-9c60-4176d9643ad7)) + ) + + (symbol (lib_id "Device:LED") (at 103.505 66.04 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 554d888d-23fd-4c68-a6ec-7855a536ffbb) + (property "Reference" "D2" (id 0) (at 103.505 63.5 0)) + (property "Value" "LED_ON" (id 1) (at 103.505 69.215 0)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 103.505 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 103.505 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b3cf567f-32ed-48e5-8212-3e03b6e31796)) + (pin "2" (uuid 61ed48fb-e0a4-4d31-ba0e-2e41543cc7d6)) + ) + + (symbol (lib_id "Device:C") (at 66.675 76.2 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 55c4d32d-7c5a-4dbb-a08c-04da9db11983) + (property "Reference" "C2" (id 0) (at 67.945 73.66 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 67.31 78.74 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (id 2) (at 67.6402 80.01 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 66.675 76.2 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e257f792-fc63-4778-8c30-f3b6f0a09964)) + (pin "2" (uuid 7b11dbfc-add3-40fc-873d-1ab7f08ca71b)) + ) + + (symbol (lib_id "power:GND") (at 140.97 142.875 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 580d3929-b3b7-4bb9-8578-f17e842672e9) + (property "Reference" "#PWR011" (id 0) (at 140.97 149.225 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 140.97 147.955 0)) + (property "Footprint" "" (id 2) (at 140.97 142.875 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 140.97 142.875 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 6daa1c20-bd5d-454a-b7e4-679a03e13c14)) + ) + + (symbol (lib_id "Device:R") (at 167.005 76.835 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 59e71b82-fd2c-4d50-9aac-2d0df67acc80) + (property "Reference" "R12" (id 0) (at 169.545 75.5649 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "" (id 1) (at 169.545 78.1049 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 168.783 76.835 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 167.005 76.835 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 857af45d-9795-41a2-9845-b5953516cc70)) + (pin "2" (uuid 92f9a7fe-12b9-455c-b3cb-646f2e8901ef)) + ) + + (symbol (lib_id "power:+5V") (at 215.265 64.135 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 5a20406b-07fb-4d6a-b9fd-cc6e097e66ec) + (property "Reference" "#PWR024" (id 0) (at 215.265 67.945 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 215.265 60.325 0)) + (property "Footprint" "" (id 2) (at 215.265 64.135 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 215.265 64.135 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid dd7f55c3-3058-4d0c-9415-58c9123c9403)) + ) + + (symbol (lib_id "power:GND") (at 205.105 144.145 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5ab123ef-60a2-4f38-8884-167dcfc32060) + (property "Reference" "#PWR022" (id 0) (at 205.105 150.495 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 205.105 149.225 0)) + (property "Footprint" "" (id 2) (at 205.105 144.145 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 205.105 144.145 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid bdc4d9ef-b980-448c-a943-969da567b155)) + ) + + (symbol (lib_id "Device:Q_NPN_EBC") (at 187.96 70.485 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 5c3fbc86-b745-4733-8ef5-b40aa9974c3c) + (property "Reference" "Q1" (id 0) (at 193.675 69.2149 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "2N4401" (id 1) (at 193.675 71.7549 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_TO_SOT_THT:TO-92L_Inline_Wide" (id 2) (at 193.04 67.945 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 187.96 70.485 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 22dd0192-64c8-4316-afd6-d362df86b76c)) + (pin "2" (uuid 60aae65a-264e-468d-b044-b49f71acbfe5)) + (pin "3" (uuid 12938643-23eb-459b-b3a7-66e54527f212)) + ) + + (symbol (lib_id "Amplifier_Operational:TL072") (at 64.135 108.585 0) (unit 3) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 610374ca-6688-4f3a-b5c7-b926d13e70cf) + (property "Reference" "U1" (id 0) (at 62.23 107.3149 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "TL072" (id 1) (at 62.23 109.8549 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_DIP:DIP-8_W7.62mm" (id 2) (at 64.135 108.585 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (id 3) (at 64.135 108.585 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4408388e-4e95-46fe-b716-86204c528eb9)) + (pin "2" (uuid f6b17f59-e5f1-4663-a67f-b21c6e088e07)) + (pin "3" (uuid 43a25a06-f3f6-49a1-a4fb-81300fd1696c)) + (pin "5" (uuid 0bcc2307-87b0-490b-a98c-89a443305979)) + (pin "6" (uuid 6ff7fa7c-25ce-427f-b7a2-cf339b616382)) + (pin "7" (uuid c549f703-5eac-4439-afac-d4a45f6f387b)) + (pin "4" (uuid a04ed802-e6f9-4ac0-8921-0a7ddd6aff9d)) + (pin "8" (uuid 5334a6d1-9a64-4884-bca3-9784df040118)) + ) + + (symbol (lib_id "Amplifier_Operational:TL072") (at 222.885 34.29 0) (unit 2) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 67e4f302-4d84-4715-b3e0-6cf033d1a781) + (property "Reference" "U1" (id 0) (at 222.885 23.495 0)) + (property "Value" "TL072" (id 1) (at 222.885 26.035 0)) + (property "Footprint" "Package_DIP:DIP-8_W7.62mm" (id 2) (at 222.885 34.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (id 3) (at 222.885 34.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4408388e-4e95-46fe-b716-86204c528eba)) + (pin "2" (uuid f6b17f59-e5f1-4663-a67f-b21c6e088e08)) + (pin "3" (uuid 43a25a06-f3f6-49a1-a4fb-81300fd1696d)) + (pin "5" (uuid b06eefe6-45fc-440a-92a3-111a2151f65c)) + (pin "6" (uuid 99d2dfbb-12ad-45c1-94a3-b7b0a22da047)) + (pin "7" (uuid 31150aa8-205b-480f-b851-a220e78a731f)) + (pin "4" (uuid a04ed802-e6f9-4ac0-8921-0a7ddd6aff9e)) + (pin "8" (uuid 5334a6d1-9a64-4884-bca3-9784df040119)) + ) + + (symbol (lib_id "power:+5V") (at 109.855 95.25 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 6cc017cb-31ef-41ec-b157-4fd6275dabf3) + (property "Reference" "#PWR09" (id 0) (at 109.855 99.06 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 109.855 90.17 0)) + (property "Footprint" "" (id 2) (at 109.855 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 109.855 95.25 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a4c4ce69-3764-448c-9e9e-beec3fe68584)) + ) + + (symbol (lib_id "Device:LED") (at 226.695 138.43 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 6f204d20-1320-451e-bd91-d4d67acfef4c) + (property "Reference" "D4" (id 0) (at 226.695 135.255 0)) + (property "Value" "" (id 1) (at 233.68 137.16 0)) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 226.695 138.43 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 226.695 138.43 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7a5155ee-3c65-41eb-ab23-04faf9b47b56)) + (pin "2" (uuid 0331f816-00a9-4b1b-84e2-772d08f69e51)) + ) + + (symbol (lib_id "Device:R") (at 188.595 45.72 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 713e480c-bb1d-4324-8bc5-d294a306dffc) + (property "Reference" "R14" (id 0) (at 182.88 44.45 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "" (id 1) (at 182.88 46.99 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 190.373 45.72 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 188.595 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid ded12e46-79e5-4e4e-91a2-0b24642bee09)) + (pin "2" (uuid 39907e47-aa54-4c73-9376-22884cdc19b1)) + ) + + (symbol (lib_id "Device:R") (at 133.985 29.21 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7164d9a4-b5a8-4780-b92f-c2f1ba0b4c99) + (property "Reference" "R8" (id 0) (at 136.525 27.9399 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "" (id 1) (at 136.525 30.4799 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 135.763 29.21 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 133.985 29.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid aa872b15-3c6d-43ce-a97c-a66bed0fb514)) + (pin "2" (uuid 5087bf57-266c-4a81-aa62-6027dc2ad225)) + ) + + (symbol (lib_id "power:GND") (at 151.765 73.025 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a3ec6b8-8c14-4cb4-a7a4-82b263fc2551) + (property "Reference" "#PWR012" (id 0) (at 151.765 79.375 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 151.765 78.105 0)) + (property "Footprint" "" (id 2) (at 151.765 73.025 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 151.765 73.025 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2efeb251-0d6c-4a3c-bc89-c634c084e882)) + ) + + (symbol (lib_id "Amplifier_Operational:LM13700") (at 156.845 38.1 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 7a4db53f-264c-4513-adf9-7dc22e686ece) + (property "Reference" "U2" (id 0) (at 156.845 27.94 0)) + (property "Value" "LM13700" (id 1) (at 156.845 30.48 0)) + (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 149.225 37.465 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm13700.pdf" (id 3) (at 149.225 37.465 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "12" (uuid 9a738855-67f0-4766-bd6e-ef9427c0a2f9)) + (pin "13" (uuid 99e0d92c-ac63-41cd-8b0d-6d84ded186f0)) + (pin "14" (uuid 904c25cd-1497-44dc-89b5-8b3f42850328)) + (pin "15" (uuid e5476370-aea6-41f5-8e8f-ba68da829c42)) + (pin "16" (uuid f1411285-78ff-4e80-8b64-73ba2d4b8bdd)) + (pin "10" (uuid 8327d725-4927-4d86-b0da-a2b8a1d401ee)) + (pin "9" (uuid 8628bbee-b37c-4e39-8774-81f4144893f6)) + (pin "1" (uuid f1c01991-3283-42fc-a3cf-790a782263a4)) + (pin "2" (uuid add83735-a800-4024-bd11-269836e183fc)) + (pin "3" (uuid 839371aa-de7b-488c-b5c2-95d8b57632d0)) + (pin "4" (uuid 02b794de-0206-4286-a731-bc13391f1173)) + (pin "5" (uuid edf777c4-3bd2-4b42-85e0-df3e3b0af2c2)) + (pin "7" (uuid 3a34cf5a-1539-4312-b41f-ae2b858ae423)) + (pin "8" (uuid b5159227-5454-4704-93ed-50f75d8efc58)) + (pin "11" (uuid c16feded-6628-404c-9325-ec20deb8c376)) + (pin "6" (uuid f7cf982e-8236-43dd-9c00-56db4a679b90)) + ) + + (symbol (lib_id "power:GND") (at 247.015 45.72 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid 7bc5f6ea-91bb-496e-92ef-0237017db01e) + (property "Reference" "#PWR023" (id 0) (at 247.015 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 247.015 49.53 0)) + (property "Footprint" "" (id 2) (at 247.015 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 247.015 45.72 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 02d5be24-1036-4d78-b8b7-1b443d15e7c8)) + ) + + (symbol (lib_id "Device:C_Polarized") (at 113.665 82.55 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 85c0451d-072e-4e38-bbeb-fb726bdf1588) + (property "Reference" "C8" (id 0) (at 117.475 80.3909 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "47uF" (id 1) (at 117.475 82.9309 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 114.6302 86.36 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 113.665 82.55 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 690323a3-1c05-46f5-9181-0c7bd326a406)) + (pin "2" (uuid 4a264c21-a267-41b7-ac6a-418785299ab4)) + ) + + (symbol (lib_id "power:GND") (at 72.39 116.205 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 87912de9-6186-4a1b-80dc-279993eb33f8) + (property "Reference" "#PWR07" (id 0) (at 72.39 122.555 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 72.39 121.285 0)) + (property "Footprint" "" (id 2) (at 72.39 116.205 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 72.39 116.205 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 7fd4e520-20ee-4477-945f-70205105c88d)) + ) + + (symbol (lib_id "power:+5V") (at 167.005 144.78 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 89688122-11ec-4f7a-8497-1527b893f637) + (property "Reference" "#PWR013" (id 0) (at 167.005 148.59 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 167.005 139.7 0)) + (property "Footprint" "" (id 2) (at 167.005 144.78 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 167.005 144.78 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0252deea-6774-4294-909f-8b4eb6f1d8ca)) + ) + + (symbol (lib_id "Device:R") (at 167.005 47.625 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid 8a434250-e9ef-407d-91c4-2bbe591e0528) + (property "Reference" "R11" (id 0) (at 167.64 43.815 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "" (id 1) (at 167.64 51.435 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 168.783 47.625 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 167.005 47.625 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5b3f9d1a-f70d-4993-816b-efdeb17ee8bf)) + (pin "2" (uuid 2d1b330e-444b-40c9-b970-9a8982dae1b4)) + ) + + (symbol (lib_id "Connector:AudioJack2") (at 53.975 43.18 0) (mirror x) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid 8b2457b3-127c-4286-b842-66ceb413ea89) + (property "Reference" "J2" (id 0) (at 48.895 42.5449 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "" (id 1) (at 48.895 45.0849 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 53.975 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 53.975 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "S" (uuid a3689fa4-defc-4601-ac3c-a04865be0a53)) + (pin "T" (uuid 82b94870-9fde-4ee0-8871-ca226c2dcb2d)) + ) + + (symbol (lib_id "Device:R") (at 214.63 138.43 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid a669542a-9037-4799-b818-b3bc687858da) + (property "Reference" "R16" (id 0) (at 214.63 135.89 90)) + (property "Value" "" (id 1) (at 214.63 141.605 90)) + (property "Footprint" "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal" (id 2) (at 214.63 136.652 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 214.63 138.43 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 4adbe371-a2ae-45eb-a3db-2dfdf1652ec6)) + (pin "2" (uuid 84404f6f-6b2c-4b13-9e9f-e6e8c78c9f08)) + ) + + (symbol (lib_id "Device:R") (at 141.605 29.21 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid a75d8798-8e4c-4d92-ae26-3ecaae523cf2) + (property "Reference" "R9" (id 0) (at 144.145 27.9399 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "" (id 1) (at 144.145 30.4799 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 143.383 29.21 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 141.605 29.21 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 1ae8d569-e39a-4cd9-8ae4-d05ff41a5f40)) + (pin "2" (uuid 2374c259-6226-4e35-b600-ac3ffd7a6c33)) + ) + + (symbol (lib_id "Device:R") (at 158.115 140.335 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid abdba8ff-70b1-4b5d-b32e-fb4f4f4b356e) + (property "Reference" "R10" (id 0) (at 160.655 139.0649 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "" (id 1) (at 160.655 141.6049 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "" (id 2) (at 159.893 140.335 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 158.115 140.335 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2e984b5f-535e-4033-9da6-1a9223baad59)) + (pin "2" (uuid 905fcbc8-0229-4d8e-a603-cc4eec05a5e5)) + ) + + (symbol (lib_id "Device:C") (at 109.855 100.33 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid aca917d9-776d-4afb-82cc-63883a39f6a1) + (property "Reference" "C6" (id 0) (at 110.49 98.425 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "100nF" (id 1) (at 110.49 102.87 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (id 2) (at 110.8202 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 109.855 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 5e642a33-6f07-4b5e-89a2-3290e5d10745)) + (pin "2" (uuid 5d29da10-3b69-49fd-ada7-69e01eb7d655)) + ) + + (symbol (lib_id "Amplifier_Operational:TL072") (at 98.425 40.64 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid b0a1d5e1-141a-479b-85a7-d81fadae1c0f) + (property "Reference" "U1" (id 0) (at 98.425 30.48 0)) + (property "Value" "TL072" (id 1) (at 98.425 33.02 0)) + (property "Footprint" "Package_DIP:DIP-8_W7.62mm" (id 2) (at 98.425 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/tl071.pdf" (id 3) (at 98.425 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 03995448-643d-46cc-8bcd-a2e53f93088f)) + (pin "2" (uuid 4d52cbd7-76ca-4561-afa6-a27a16b341eb)) + (pin "3" (uuid 162acc47-1621-4247-b75d-aa481fd9c770)) + (pin "5" (uuid b06eefe6-45fc-440a-92a3-111a2151f65d)) + (pin "6" (uuid 99d2dfbb-12ad-45c1-94a3-b7b0a22da048)) + (pin "7" (uuid 31150aa8-205b-480f-b851-a220e78a7320)) + (pin "4" (uuid a04ed802-e6f9-4ac0-8921-0a7ddd6aff9f)) + (pin "8" (uuid 5334a6d1-9a64-4884-bca3-9784df04011a)) + ) + + (symbol (lib_id "Device:C_Polarized") (at 71.755 43.18 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid b1bf0a93-94b7-4ad4-93ae-35edc64006ad) + (property "Reference" "C1" (id 0) (at 74.295 43.815 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1uF" (id 1) (at 69.215 39.37 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 67.945 44.1452 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 71.755 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b8895857-d890-4703-b7b4-99916c5e70eb)) + (pin "2" (uuid b29ca6be-f281-4a67-8670-72d056aace71)) + ) + + (symbol (lib_id "Device:R") (at 79.375 43.18 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ba9dae14-ba14-4c2e-aa68-5878b7a59304) + (property "Reference" "R2" (id 0) (at 79.375 37.465 90)) + (property "Value" "" (id 1) (at 79.375 40.005 90)) + (property "Footprint" "" (id 2) (at 79.375 44.958 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 79.375 43.18 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f4904c3d-206d-4886-9c57-ed2dd73cf088)) + (pin "2" (uuid 5bd9e9e2-49b5-4367-ad9b-53214c112af0)) + ) + + (symbol (lib_id "power:+5V") (at 189.23 89.535 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid bddfcdad-083a-4c5b-8375-4d90db01b0ec) + (property "Reference" "#PWR017" (id 0) (at 189.23 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 189.23 84.455 0)) + (property "Footprint" "" (id 2) (at 189.23 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 189.23 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0579a969-31dd-4ce9-9b25-20e11b1e2938)) + ) + + (symbol (lib_id "Device:C_Polarized") (at 118.11 100.33 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid c47362ce-ad1a-4f8a-a4d2-857430559736) + (property "Reference" "C11" (id 0) (at 119.38 98.425 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "47uF" (id 1) (at 118.745 102.87 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 119.0752 104.14 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 118.11 100.33 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 21520ba9-660b-44b1-bd25-f484d7c76c1f)) + (pin "2" (uuid 7dc004b3-6fe6-49c2-a5ea-321ce7bbe194)) + ) + + (symbol (lib_id "power:GND") (at 175.895 97.155 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c8a9708f-da7c-43df-b42b-3964ac381182) + (property "Reference" "#PWR015" (id 0) (at 175.895 103.505 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 175.895 102.235 0)) + (property "Footprint" "" (id 2) (at 175.895 97.155 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 175.895 97.155 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 825bec49-a514-4c36-92a7-532273f5510c)) + ) + + (symbol (lib_id "Device:D") (at 59.055 66.04 180) (unit 1) + (in_bom yes) (on_board yes) + (uuid c9a434a4-34aa-480b-bad1-26f71e1cc532) + (property "Reference" "D1" (id 0) (at 59.055 63.5 0)) + (property "Value" "1N5817" (id 1) (at 59.055 69.215 0)) + (property "Footprint" "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal" (id 2) (at 59.055 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 59.055 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e0f487db-a872-4a2f-a23d-c8f854e9382c)) + (pin "2" (uuid 45204fba-96ef-44e9-bcf5-540d818bde73)) + ) + + (symbol (lib_id "power:GND") (at 189.23 97.155 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid c9d18710-721c-4c30-9682-f348a553a392) + (property "Reference" "#PWR018" (id 0) (at 189.23 103.505 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 189.23 102.235 0)) + (property "Footprint" "" (id 2) (at 189.23 97.155 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 189.23 97.155 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b88afc21-ab10-4cee-9f71-2c5d79248b43)) + ) + + (symbol (lib_id "Device:C_Polarized") (at 197.485 40.64 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid cafe7d40-c316-4f68-8f05-8f4fa2790967) + (property "Reference" "C12" (id 0) (at 200.025 41.275 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1uF" (id 1) (at 194.945 36.83 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 193.675 41.6052 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 197.485 40.64 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 22f7a9a7-52b7-4def-9f01-74ce752895c6)) + (pin "2" (uuid 3d357196-16a7-43c8-a9c0-2fb0aec0b012)) + ) + + (symbol (lib_id "Device:R") (at 93.98 66.04 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid cbbb2462-23e7-4c21-8e59-d2a396195fa2) + (property "Reference" "R5" (id 0) (at 93.98 63.5 90)) + (property "Value" "" (id 1) (at 93.98 69.215 90)) + (property "Footprint" "" (id 2) (at 93.98 64.262 90) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 93.98 66.04 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid cfa39bec-3252-47fd-8a0e-5a56b8a07c01)) + (pin "2" (uuid 29d7f80d-a2fa-4a8b-8263-fe1254c3f8c4)) + ) + + (symbol (lib_id "Device:R_Potentiometer") (at 215.9 93.345 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d2b86a7c-bc99-41b7-8ef5-b57415e0d93e) + (property "Reference" "RV6" (id 0) (at 213.36 92.0749 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "10k" (id 1) (at 213.36 94.6149 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical" (id 2) (at 215.9 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 215.9 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 2ced6f9a-c1df-4ddc-8f1b-69072c1c2326)) + (pin "2" (uuid d353db05-c5ab-4659-ae04-6e9d01fd4446)) + (pin "3" (uuid 3aa653cc-dee1-45c6-8d3d-cb8f91b54760)) + ) + + (symbol (lib_id "power:+5V") (at 215.9 89.535 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid d31acb05-1c51-48f2-a4bf-a368a5be72d2) + (property "Reference" "#PWR026" (id 0) (at 215.9 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 215.9 84.455 0)) + (property "Footprint" "" (id 2) (at 215.9 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 215.9 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 93459269-d5dc-4827-97f9-b668cb08a605)) + ) + + (symbol (lib_id "power:GND") (at 188.595 52.07 0) (unit 1) + (in_bom yes) (on_board yes) + (uuid da0a608d-60e0-41ef-8b7e-95a7abf7aa22) + (property "Reference" "#PWR016" (id 0) (at 188.595 58.42 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "GND" (id 1) (at 188.595 55.88 0)) + (property "Footprint" "" (id 2) (at 188.595 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 188.595 52.07 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid f4092006-8d0e-4c07-aea7-21e334a489f3)) + ) + + (symbol (lib_id "Amplifier_Operational:LM13700") (at 74.93 108.585 0) (unit 5) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e0df9bc3-d697-41ec-a72b-ac915ad45171) + (property "Reference" "U2" (id 0) (at 73.66 107.3149 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "LM13700" (id 1) (at 73.66 109.8549 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 67.31 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm13700.pdf" (id 3) (at 67.31 107.95 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "12" (uuid 05fea165-09f2-4aeb-bbc2-889ec62fbe4b)) + (pin "13" (uuid 0da40094-8af2-49cd-bf96-e0185179a800)) + (pin "14" (uuid 67330f72-6d7b-4406-a9ae-6568b95e2b39)) + (pin "15" (uuid dc7e160d-5250-48de-a17b-fc918a757c39)) + (pin "16" (uuid da5c64b3-3338-4e9b-b256-6b2924e8ef7d)) + (pin "10" (uuid 8327d725-4927-4d86-b0da-a2b8a1d401ef)) + (pin "9" (uuid 8628bbee-b37c-4e39-8774-81f4144893f7)) + (pin "1" (uuid f1c01991-3283-42fc-a3cf-790a782263a5)) + (pin "2" (uuid add83735-a800-4024-bd11-269836e183fd)) + (pin "3" (uuid 839371aa-de7b-488c-b5c2-95d8b57632d1)) + (pin "4" (uuid 02b794de-0206-4286-a731-bc13391f1174)) + (pin "5" (uuid edf777c4-3bd2-4b42-85e0-df3e3b0af2c3)) + (pin "7" (uuid 3a34cf5a-1539-4312-b41f-ae2b858ae424)) + (pin "8" (uuid b5159227-5454-4704-93ed-50f75d8efc59)) + (pin "11" (uuid c16feded-6628-404c-9325-ec20deb8c377)) + (pin "6" (uuid f7cf982e-8236-43dd-9c00-56db4a679b91)) + ) + + (symbol (lib_id "power:+5V") (at 175.895 89.535 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e97eda83-ae07-4fb4-89fb-4252d73db232) + (property "Reference" "#PWR014" (id 0) (at 175.895 93.345 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 175.895 84.455 0)) + (property "Footprint" "" (id 2) (at 175.895 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 175.895 89.535 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid b32a35c1-c000-411a-b45e-87b4be51e5f4)) + ) + + (symbol (lib_id "Connector:AudioJack2") (at 264.795 39.37 180) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid e9f20a31-f5b0-448b-bec5-24209555c87d) + (property "Reference" "J3" (id 0) (at 269.875 38.7349 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Value" "" (id 1) (at 269.875 41.2749 0) + (effects (font (size 1.27 1.27)) (justify right)) + ) + (property "Footprint" "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical" (id 2) (at 264.795 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 264.795 39.37 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "S" (uuid 3bd6c3a8-0be5-4acf-98fc-02b51135f8d9)) + (pin "T" (uuid ba00849f-7f4d-42aa-b6f5-ffc0b4de72df)) + ) + + (symbol (lib_id "power:+5V") (at 233.045 133.985 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid ed8eafe4-9f6c-4d05-957c-07864c16126f) + (property "Reference" "#PWR028" (id 0) (at 233.045 137.795 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 233.045 128.905 0)) + (property "Footprint" "" (id 2) (at 233.045 133.985 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 233.045 133.985 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 0d6dfbf2-c865-4bd3-acd9-fcf27dcf1b51)) + ) + + (symbol (lib_id "Device:C") (at 159.385 70.485 90) (unit 1) + (in_bom yes) (on_board yes) + (uuid f5a1eb5d-e013-46e5-be3e-30f1e81f1c14) + (property "Reference" "C10" (id 0) (at 156.21 71.755 90)) + (property "Value" "100nF" (id 1) (at 159.385 74.295 90)) + (property "Footprint" "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm" (id 2) (at 163.195 69.5198 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 159.385 70.485 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid 3d870d28-e03c-416e-8f71-efd0ebcb3cf2)) + (pin "2" (uuid 8db712b3-af37-4f89-bed5-d9a45eac7ab4)) + ) + + (symbol (lib_id "power:+5V") (at 140.97 97.155 0) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f5f3fa3f-a726-4f2a-b6a8-0b99deeb4c3f) + (property "Reference" "#PWR010" (id 0) (at 140.97 100.965 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Value" "+5V" (id 1) (at 140.97 92.075 0)) + (property "Footprint" "" (id 2) (at 140.97 97.155 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "" (id 3) (at 140.97 97.155 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid d00de54d-a4a1-4b30-8ae1-5193e60a1d01)) + ) + + (symbol (lib_id "Device:C_Polarized") (at 235.585 34.29 270) (unit 1) + (in_bom yes) (on_board yes) + (uuid f7973c04-ae62-4ef8-8cdd-d5f31bb871f4) + (property "Reference" "C13" (id 0) (at 238.125 34.925 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Value" "1uF" (id 1) (at 233.045 30.48 0) + (effects (font (size 1.27 1.27)) (justify left)) + ) + (property "Footprint" "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm" (id 2) (at 231.775 35.2552 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 235.585 34.29 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid e3de2907-6354-435f-b734-ba7e469ea0ad)) + (pin "2" (uuid 00fdaa9b-d752-4c3a-818e-fa033bbf760b)) + ) + + (symbol (lib_id "Amplifier_Operational:LM13700") (at 180.975 38.1 0) (unit 2) + (in_bom yes) (on_board yes) + (uuid f8a7bff7-2bff-42b5-9158-171579415098) + (property "Reference" "U2" (id 0) (at 182.245 35.56 0)) + (property "Value" "LM13700" (id 1) (at 184.785 37.465 0)) + (property "Footprint" "Package_DIP:DIP-16_W7.62mm" (id 2) (at 173.355 37.465 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "http://www.ti.com/lit/ds/symlink/lm13700.pdf" (id 3) (at 173.355 37.465 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "12" (uuid d78e7d76-badc-4a53-9e87-2329704030f6)) + (pin "13" (uuid eab9deb4-9402-4c38-8a2c-8bf0d5994ead)) + (pin "14" (uuid 2aa1f258-223b-450f-b258-579d2c35e8ed)) + (pin "15" (uuid 9e986d66-2187-4de3-8a72-b76d5d4c27e4)) + (pin "16" (uuid b22f6636-7f1f-43ff-99c7-e17bfd1ed8b9)) + (pin "10" (uuid ec6a840e-f49f-4977-8873-c61a354033f4)) + (pin "9" (uuid 6166ffa4-52c8-4e48-96a2-9e8ceba0d3f8)) + (pin "1" (uuid a086ddce-af91-4adf-9989-aec3261e6c43)) + (pin "2" (uuid d5386fc6-b1ee-4915-b0cc-99b1c157217f)) + (pin "3" (uuid e0eb3c61-0890-4902-85f6-b6f6677009f1)) + (pin "4" (uuid 77182de3-cbc6-4dd8-adec-973c50e53310)) + (pin "5" (uuid 877ae5c7-4b83-413d-9762-173cc8980037)) + (pin "7" (uuid 8bea807e-3ef2-4be7-b8a7-6e010df74e11)) + (pin "8" (uuid bedc17f6-5519-46a1-9476-5aeeccaf1eb3)) + (pin "11" (uuid 02529dde-0bfe-4025-8a4e-35cbea676d5d)) + (pin "6" (uuid 3e9ce54b-a03d-4cf2-ad32-92e230f78896)) + ) + + (symbol (lib_id "Device:R_Potentiometer") (at 213.995 46.355 90) (unit 1) + (in_bom yes) (on_board yes) (fields_autoplaced) + (uuid f8e949a0-9d2b-4ae1-bcf4-fa22f53685b8) + (property "Reference" "RV5" (id 0) (at 213.995 50.165 90)) + (property "Value" "20k" (id 1) (at 213.995 52.705 90)) + (property "Footprint" "Potentiometer_THT:Potentiometer_Bourns_3299W_Vertical" (id 2) (at 213.995 46.355 0) + (effects (font (size 1.27 1.27)) hide) + ) + (property "Datasheet" "~" (id 3) (at 213.995 46.355 0) + (effects (font (size 1.27 1.27)) hide) + ) + (pin "1" (uuid a0e01439-afe9-4d76-886c-49d655745caa)) + (pin "2" (uuid 75d044a8-5b86-4725-95e0-dbf24ceac907)) + (pin "3" (uuid 3117448d-42ba-4d7d-a0b0-5c5469f3ad51)) + ) + + (sheet_instances + (path "/" (page "1")) + ) + + (symbol_instances + (path "/4ab64e29-964f-40b2-bf58-c546b31cd3eb" + (reference "#PWR01") (unit 1) (value "GND") (footprint "") + ) + (path "/444dfbdd-cbd7-4ba6-9870-8412af94aee2" + (reference "#PWR02") (unit 1) (value "+9V") (footprint "") + ) + (path "/1f5bb777-af96-4c18-b365-ead2bc6f2a22" + (reference "#PWR03") (unit 1) (value "GND") (footprint "") + ) + (path "/0482e22d-6842-4b20-a178-768c65edbd09" + (reference "#PWR04") (unit 1) (value "+9V") (footprint "") + ) + (path "/43ee0e64-2009-426d-bee8-5cbddf4c0a6a" + (reference "#PWR05") (unit 1) (value "GND") (footprint "") + ) + (path "/227cfc88-6964-46a8-93ba-8181d9992999" + (reference "#PWR06") (unit 1) (value "+9V") (footprint "") + ) + (path "/87912de9-6186-4a1b-80dc-279993eb33f8" + (reference "#PWR07") (unit 1) (value "GND") (footprint "") + ) + (path "/316c6249-caec-4182-91a1-63d1454b51ad" + (reference "#PWR08") (unit 1) (value "GND") (footprint "") + ) + (path "/6cc017cb-31ef-41ec-b157-4fd6275dabf3" + (reference "#PWR09") (unit 1) (value "+5V") (footprint "") + ) + (path "/f5f3fa3f-a726-4f2a-b6a8-0b99deeb4c3f" + (reference "#PWR010") (unit 1) (value "+5V") (footprint "") + ) + (path "/580d3929-b3b7-4bb9-8578-f17e842672e9" + (reference "#PWR011") (unit 1) (value "GND") (footprint "") + ) + (path "/7a3ec6b8-8c14-4cb4-a7a4-82b263fc2551" + (reference "#PWR012") (unit 1) (value "GND") (footprint "") + ) + (path "/89688122-11ec-4f7a-8497-1527b893f637" + (reference "#PWR013") (unit 1) (value "+5V") (footprint "") + ) + (path "/e97eda83-ae07-4fb4-89fb-4252d73db232" + (reference "#PWR014") (unit 1) (value "+5V") (footprint "") + ) + (path "/c8a9708f-da7c-43df-b42b-3964ac381182" + (reference "#PWR015") (unit 1) (value "GND") (footprint "") + ) + (path "/da0a608d-60e0-41ef-8b7e-95a7abf7aa22" + (reference "#PWR016") (unit 1) (value "GND") (footprint "") + ) + (path "/bddfcdad-083a-4c5b-8375-4d90db01b0ec" + (reference "#PWR017") (unit 1) (value "+5V") (footprint "") + ) + (path "/c9d18710-721c-4c30-9682-f348a553a392" + (reference "#PWR018") (unit 1) (value "GND") (footprint "") + ) + (path "/1796b6dc-5a37-4073-ac31-fa5ded564a42" + (reference "#PWR019") (unit 1) (value "GND") (footprint "") + ) + (path "/028b99d2-422b-4a47-abdf-987039c0dcc1" + (reference "#PWR020") (unit 1) (value "+5V") (footprint "") + ) + (path "/0a048047-fd7f-48d1-bed9-f49dd7c42465" + (reference "#PWR021") (unit 1) (value "GND") (footprint "") + ) + (path "/5ab123ef-60a2-4f38-8884-167dcfc32060" + (reference "#PWR022") (unit 1) (value "GND") (footprint "") + ) + (path "/7bc5f6ea-91bb-496e-92ef-0237017db01e" + (reference "#PWR023") (unit 1) (value "GND") (footprint "") + ) + (path "/5a20406b-07fb-4d6a-b9fd-cc6e097e66ec" + (reference "#PWR024") (unit 1) (value "+5V") (footprint "") + ) + (path "/09211d4d-380f-4979-9c5d-6e8d6c7c76ac" + (reference "#PWR025") (unit 1) (value "GND") (footprint "") + ) + (path "/d31acb05-1c51-48f2-a4bf-a368a5be72d2" + (reference "#PWR026") (unit 1) (value "+5V") (footprint "") + ) + (path "/104098dd-510e-4dd5-902b-ac13cd5f0673" + (reference "#PWR027") (unit 1) (value "GND") (footprint "") + ) + (path "/ed8eafe4-9f6c-4d05-957c-07864c16126f" + (reference "#PWR028") (unit 1) (value "+5V") (footprint "") + ) + (path "/b1bf0a93-94b7-4ad4-93ae-35edc64006ad" + (reference "C1") (unit 1) (value "1uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") + ) + (path "/55c4d32d-7c5a-4dbb-a08c-04da9db11983" + (reference "C2") (unit 1) (value "100nF") (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm") + ) + (path "/14c45caf-2ca5-4676-9993-7894f0246edd" + (reference "C3") (unit 1) (value "100uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") + ) + (path "/10c03ca5-f28e-4dc2-b3ca-d8f478c80a3b" + (reference "C4") (unit 1) (value "100nF") (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm") + ) + (path "/aca917d9-776d-4afb-82cc-63883a39f6a1" + (reference "C6") (unit 1) (value "100nF") (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm") + ) + (path "/0d5a6edb-d525-4289-8e5a-53304df0385d" + (reference "C7") (unit 1) (value "1uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") + ) + (path "/85c0451d-072e-4e38-bbeb-fb726bdf1588" + (reference "C8") (unit 1) (value "47uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") + ) + (path "/457f42c3-5be7-4c16-bf1a-e05a256ab5fe" + (reference "C9") (unit 1) (value "330nF") (footprint "Capacitor_THT:C_Rect_L7.0mm_W3.5mm_P5.00mm") + ) + (path "/f5a1eb5d-e013-46e5-be3e-30f1e81f1c14" + (reference "C10") (unit 1) (value "100nF") (footprint "Capacitor_THT:C_Rect_L7.0mm_W2.5mm_P5.00mm") + ) + (path "/c47362ce-ad1a-4f8a-a4d2-857430559736" + (reference "C11") (unit 1) (value "47uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") + ) + (path "/cafe7d40-c316-4f68-8f05-8f4fa2790967" + (reference "C12") (unit 1) (value "1uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") + ) + (path "/f7973c04-ae62-4ef8-8cdd-d5f31bb871f4" + (reference "C13") (unit 1) (value "1uF") (footprint "Capacitor_THT:CP_Radial_D5.0mm_P2.50mm") + ) + (path "/c9a434a4-34aa-480b-bad1-26f71e1cc532" + (reference "D1") (unit 1) (value "1N5817") (footprint "Diode_THT:D_DO-41_SOD81_P10.16mm_Horizontal") + ) + (path "/554d888d-23fd-4c68-a6ec-7855a536ffbb" + (reference "D2") (unit 1) (value "LED_ON") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") + ) + (path "/3cfe6a7f-8a66-4cb9-9d30-79a2918ce977" + (reference "D3") (unit 1) (value "LED_PULSE") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") + ) + (path "/6f204d20-1320-451e-bd91-d4d67acfef4c" + (reference "D4") (unit 1) (value "LED_MOD") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") + ) + (path "/20f7c671-f9ce-45b7-9a7b-97ed319952e7" + (reference "J1") (unit 1) (value "Jack-DC") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") + ) + (path "/8b2457b3-127c-4286-b842-66ceb413ea89" + (reference "J2") (unit 1) (value "IN") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") + ) + (path "/e9f20a31-f5b0-448b-bec5-24209555c87d" + (reference "J3") (unit 1) (value "OUT") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") + ) + (path "/5c3fbc86-b745-4733-8ef5-b40aa9974c3c" + (reference "Q1") (unit 1) (value "2N4401") (footprint "Package_TO_SOT_THT:TO-92L_Inline_Wide") + ) + (path "/35f8b1cf-d587-4336-a64a-a2980024e9bd" + (reference "R1") (unit 1) (value "1M") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/ba9dae14-ba14-4c2e-aa68-5878b7a59304" + (reference "R2") (unit 1) (value "100k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/497a3aba-0f0c-436e-9543-aa7c20ad968e" + (reference "R3") (unit 1) (value "2k2") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/02d1e0a8-bf20-455f-b69e-845f84f2ba41" + (reference "R4") (unit 1) (value "2k2") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/cbbb2462-23e7-4c21-8e59-d2a396195fa2" + (reference "R5") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/32f77ed2-d2d8-4498-b1c5-1a45c90ea279" + (reference "R6") (unit 1) (value "330k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/22c9e179-6c43-4e67-909d-1f02b37451fb" + (reference "R7") (unit 1) (value "100k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/7164d9a4-b5a8-4780-b92f-c2f1ba0b4c99" + (reference "R8") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/a75d8798-8e4c-4d92-ae26-3ecaae523cf2" + (reference "R9") (unit 1) (value "1k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/abdba8ff-70b1-4b5d-b32e-fb4f4f4b356e" + (reference "R10") (unit 1) (value "10k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/8a434250-e9ef-407d-91c4-2bbe591e0528" + (reference "R11") (unit 1) (value "120k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/59e71b82-fd2c-4d50-9aac-2d0df67acc80" + (reference "R12") (unit 1) (value "20k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/50e83388-d157-4147-9b50-698eee4a2f3a" + (reference "R13") (unit 1) (value "100k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/713e480c-bb1d-4324-8bc5-d294a306dffc" + (reference "R14") (unit 1) (value "4k7") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/3d86985c-8531-4937-a6d2-be484b6a01cf" + (reference "R15") (unit 1) (value "160k") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/a669542a-9037-4799-b818-b3bc687858da" + (reference "R16") (unit 1) (value "220") (footprint "Resistor_THT:R_Axial_DIN0204_L3.6mm_D1.6mm_P7.62mm_Horizontal") + ) + (path "/4423bffb-196e-4324-b4ae-a6a7f4a011d5" + (reference "RV1") (unit 1) (value "10k") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/43757849-b532-4d70-9abd-eff55e4b1df4" + (reference "RV2") (unit 1) (value "10k") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/0730adea-81a1-4a16-b234-8593e2de6ad4" + (reference "RV3") (unit 1) (value "10k") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/05e6021f-96e5-415b-8bf8-d37fbab0152a" + (reference "RV4") (unit 1) (value "50k LOG") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/f8e949a0-9d2b-4ae1-bcf4-fa22f53685b8" + (reference "RV5") (unit 1) (value "20k") (footprint "Potentiometer_THT:Potentiometer_Bourns_3299W_Vertical") + ) + (path "/d2b86a7c-bc99-41b7-8ef5-b57415e0d93e" + (reference "RV6") (unit 1) (value "10k") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/3df53d8a-0ef5-4cad-9d90-e6b44aee51b9" + (reference "SW1") (unit 1) (value "SW_SPDT_MSM") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/049e1e3e-c904-4ddc-9991-66aa46751da7" + (reference "SW2") (unit 1) (value "SW_Push") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x02_P2.54mm_Vertical") + ) + (path "/045205a8-9279-485c-8038-3762c5153a72" + (reference "SW3") (unit 1) (value "SW_SPDT_MSM") (footprint "Connector_PinHeader_2.54mm:PinHeader_1x03_P2.54mm_Vertical") + ) + (path "/b0a1d5e1-141a-479b-85a7-d81fadae1c0f" + (reference "U1") (unit 1) (value "TL072") (footprint "Package_DIP:DIP-8_W7.62mm") + ) + (path "/67e4f302-4d84-4715-b3e0-6cf033d1a781" + (reference "U1") (unit 2) (value "TL072") (footprint "Package_DIP:DIP-8_W7.62mm") + ) + (path "/610374ca-6688-4f3a-b5c7-b926d13e70cf" + (reference "U1") (unit 3) (value "TL072") (footprint "Package_DIP:DIP-8_W7.62mm") + ) + (path "/7a4db53f-264c-4513-adf9-7dc22e686ece" + (reference "U2") (unit 1) (value "LM13700") (footprint "Package_DIP:DIP-16_W7.62mm") + ) + (path "/f8a7bff7-2bff-42b5-9158-171579415098" + (reference "U2") (unit 2) (value "LM13700") (footprint "Package_DIP:DIP-16_W7.62mm") + ) + (path "/e0df9bc3-d697-41ec-a72b-ac915ad45171" + (reference "U2") (unit 5) (value "LM13700") (footprint "Package_DIP:DIP-16_W7.62mm") + ) + (path "/172d14e9-0ed1-4942-9b95-1fe8560ad343" + (reference "U3") (unit 1) (value "L7805") (footprint "Package_TO_SOT_THT:TO-220-3_Vertical") + ) + (path "/4191ef53-102f-4cd9-8f99-b7e26e6d4541" + (reference "U4") (unit 1) (value "ATtiny44A-P") (footprint "Package_DIP:DIP-14_W7.62mm") + ) + ) +) diff --git a/Utils/tableGenerator.py b/Utils/tableGenerator.py new file mode 100644 index 0000000..3d619e6 --- /dev/null +++ b/Utils/tableGenerator.py @@ -0,0 +1,18 @@ +import math + +num_points = 256 +max_val = 255 +line_length = 16 +points_bump = [] + +for ix in range(0,num_points): + val = math.ceil(math.sin(math.pi * (ix/num_points)) * max_val) + points_bump.append(val) + +c = 0 +for val in points_bump: + print (val, end=', ') + c += 1 + if c > line_length -1: + print('') + c = 0 \ No newline at end of file diff --git a/partlist.md b/partlist.md index ef56e32..2020a5f 100644 --- a/partlist.md +++ b/partlist.md @@ -1,48 +1,53 @@ -# Partlist -## Case -* 1x Box Type BB (https://www.musikding.de/Alu-Gehaeuse-Typ-BB) -* 2x 3PDT Footswitch (https://www.musikding.de/3PDT-Fussschalter) -* 1x Carling 1PST Footswitch (https://www.musikding.de/Carling-1PST-Fussschalter) -* 3x LED-Bezel 5mm chrome (https://www.musikding.de/LED-Fassung-5mm-Chrom-Innenreflektor) -* 3x 5mm LED -* 1x Alpha Potentiometer 16mm 50k log (https://www.musikding.de/Alpha-Potentiometer-16mm-50k-log) -* 4x Alpha Potentiometer 16mm 10k lin (https://www.musikding.de/Alpha-Potentiometer-16mm-10k-lin) -* 1x Toggleswitch 1 pole ON-OFF-ON (https://www.musikding.de/Kippschalter-1polig-ON-OFF-ON) - -## Circuit -### ICs -* 1x TL072 (https://www.reichelt.de/j-fet-operationsverstaerker-2-fach-16-v-s-4-mhz-dip-8-tl-072-dip-p21556.html?&trstct=pos_5&nbc=1) -* 1x LM13700 (https://www.reichelt.de/transkonduktanzverstaerker-2-fach-dip-16-lm-13700-dil-p10394.html?&trstct=pos_0&nbc=1) -* 1x Attiny (https://www.reichelt.de/8-bit-attiny-avr-risc-mikrocontroller-4-kb-10-mhz-dip-14-attiny-44v-10pu-p119689.html?&trstct=pos_1&nbc=1) -* 1x L7805 (https://www.reichelt.de/spannungsregler-fest-5-v-1-5a-4-to-220-l-7805-cv-p200897.html?&trstct=pos_0&nbc=1) -* 1x 2N4401 (https://www.reichelt.de/bipolartransistor-npn-40v-0-6a-0-25w-to-92-2n-4401-p219074.html?&trstct=pos_0&nbc=1) - -### Polarized Capacitor -* 1x 100uF 25V (https://www.reichelt.de/elko-radial-100-uf-25-v-105-c-low-esr-fm-a-100u-25-p200027.html?&trstct=pos_4&nbc=1) -* 5x 1uF (https://www.reichelt.de/elko-radial-1-0-f-250-v-rm-2-5-85-c-2000h-20--m-a-1-0u-250-p199804.html?&trstct=pol_3&nbc=1) -* 1x 47uF 16V (https://www.reichelt.de/elko-radial-47-f-16-v-rm-2-0-85-c-2000h-20--rad-47-16-p15142.html?&trstct=pol_0&nbc=1) - -### Film Capacitors -* 3x 100nF (https://www.reichelt.de/mks2-pet-kondensator-100-nf-10-63-vdc-rm-5-mks2-63-100n-p12349.html?&trstct=pos_1&nbc=1) -* 1x 330nF (https://www.reichelt.de/mks2-pet-kondensator-330-nf-5-63-vdc-rm-5-mks2-63-330n-p12355.html?&trstct=pol_0&nbc=1) - -### Resistors -* 1x 220R 5% -* 2x 1k 1% -* 2x 2k2 1% -* 1x 4k7 1% -* 2x 10k 5% -* 1x 20k 1% -* 1x 20k TRIM -* 3x 100k 1% -* 1x 120k 1% -* 1x 160k 1% -* 1x 330k 1% -* 1x 1M 1% - -### Diode -* 1x 1N5817 (Can be jumpered if required) - - -## Programming -* 1x ISP Programmer for AVR (https://www.fischl.de/usbasp/) +# Partlist +## Case +* 1x Box Type BB (https://www.musikding.de/Alu-Gehaeuse-Typ-BB) +* 2x 3PDT Footswitch (https://www.musikding.de/3PDT-Fussschalter) +* 1x Carling 1PST Footswitch (https://www.musikding.de/Carling-1PST-Fussschalter) +* 3x LED-Bezel 5mm chrome (https://www.musikding.de/LED-Fassung-5mm-Chrom-Innenreflektor) +* 3x 5mm LED +* 1x Alpha Potentiometer 16mm 50k log (https://www.musikding.de/Alpha-Potentiometer-16mm-50k-log) +* 4x Alpha Potentiometer 16mm 10k lin (https://www.musikding.de/Alpha-Potentiometer-16mm-10k-lin) 25k and 50k is also okay! +* 1x Toggleswitch 1 pole ON-OFF-ON (https://www.musikding.de/Kippschalter-1polig-ON-OFF-ON) +* 2x 6,3mm Mono jack (https://www.musikding.de/63mm-Klinkenbuchse-offen-Mono) + +## Circuit +### ICs +* 1x TL072 (https://www.reichelt.de/j-fet-operationsverstaerker-2-fach-16-v-s-4-mhz-dip-8-tl-072-dip-p21556.html?&trstct=pos_5&nbc=1) +* 1x LM13700 (https://www.reichelt.de/transkonduktanzverstaerker-2-fach-dip-16-lm-13700-dil-p10394.html?&trstct=pos_0&nbc=1) +* 1x Attiny (https://www.reichelt.de/8-bit-attiny-avr-risc-mikrocontroller-4-kb-10-mhz-dip-14-attiny-44v-10pu-p119689.html?&trstct=pos_1&nbc=1) +* 1x L7805 (https://www.reichelt.de/spannungsregler-fest-5-v-1-5a-4-to-220-l-7805-cv-p200897.html?&trstct=pos_0&nbc=1) +* 1x 2N4401 (https://www.reichelt.de/bipolartransistor-npn-40v-0-6a-0-25w-to-92-2n-4401-p219074.html?&trstct=pos_0&nbc=1) + +### Polarized Capacitor +* 1x 100uF 25V (https://www.reichelt.de/elko-radial-100-uf-25-v-105-c-low-esr-fm-a-100u-25-p200027.html?&trstct=pos_4&nbc=1) +* 5x 1uF (https://www.reichelt.de/elko-radial-1-0-f-250-v-rm-2-5-85-c-2000h-20--m-a-1-0u-250-p199804.html?&trstct=pol_3&nbc=1) +* 1x 47uF 16V (https://www.reichelt.de/elko-radial-47-f-16-v-rm-2-0-85-c-2000h-20--rad-47-16-p15142.html?&trstct=pol_0&nbc=1) + +'Capacitors can be replaced by other capacitors with the same capacitance and a minimum voltage rating of 9V. C1,C7,C12 and C14 are part of the signal chain and should be of adequate quality. + +### Film Capacitors +* 3x 100nF (https://www.reichelt.de/mks2-pet-kondensator-100-nf-10-63-vdc-rm-5-mks2-63-100n-p12349.html?&trstct=pos_1&nbc=1) +* 1x 330nF (https://www.reichelt.de/mks2-pet-kondensator-330-nf-5-63-vdc-rm-5-mks2-63-330n-p12355.html?&trstct=pol_0&nbc=1) + +'Capacitors can be replaced by other capacitors with the same capacitance and a minimum voltage rating of 9V + +### Resistors +* 1x 220R 5% +* 2x 1k 1% +* 2x 2k2 1% +* 1x 4k7 1% +* 2x 10k 5% +* 1x 20k 1% +* 1x 20k TRIM +* 3x 100k 1% +* 1x 120k 1% +* 1x 160k 1% +* 1x 330k 1% +* 1x 1M 1% + +### Diode +* 1x 1N5817 (Can be jumpered if required) + +## Programming +* 1x ISP Programmer for AVR (https://www.fischl.de/usbasp/) +