initial commit
authorDmitry Shalnoff <dev@shalnoff.com>
Wed, 23 Jun 2021 07:08:54 +0000 (09:08 +0200)
committerDmitry Shalnoff <dev@shalnoff.com>
Wed, 23 Jun 2021 07:08:54 +0000 (09:08 +0200)
39 files changed:
BOOTLOADER/micronucleus [new submodule]
FIRMWARE/flash_c [new file with mode: 0755]
FIRMWARE/fuses [new file with mode: 0644]
FIRMWARE/lightstick.c [new file with mode: 0644]
FIRMWARE/lightstick.elf [new file with mode: 0755]
FIRMWARE/lightstick.hex [new file with mode: 0644]
FIRMWARE/lightstick.map [new file with mode: 0644]
FIRMWARE/lightstick.o [new file with mode: 0644]
FIRMWARE/make_c [new file with mode: 0755]
FIRMWARE/memo [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-B_Cu.gbr [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-B_Mask.gbr [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-B_Paste.gbr [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-B_Silkscreen.gbr [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-Edge_Cuts.gbr [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-F_Cu.gbr [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-F_Mask.gbr [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-F_Paste.gbr [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-F_Silkscreen.gbr [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-NPTH.drl [new file with mode: 0644]
HARDWARE/GERBER/lightsticks_extender-PTH.drl [new file with mode: 0644]
HARDWARE/lightsticks-cache.lib [new file with mode: 0644]
HARDWARE/lightsticks.kicad_pcb [new file with mode: 0644]
HARDWARE/lightsticks.kicad_pcb-bak [new file with mode: 0644]
HARDWARE/lightsticks.kicad_pro [new file with mode: 0644]
HARDWARE/lightsticks.net [new file with mode: 0644]
HARDWARE/lightsticks.pro [new file with mode: 0644]
HARDWARE/lightsticks.sch [new file with mode: 0644]
HARDWARE/lightsticks.sch-bak [new file with mode: 0644]
HARDWARE/lightsticks.xml [new file with mode: 0644]
HARDWARE/lightsticks_extender-cache.lib [new file with mode: 0644]
HARDWARE/lightsticks_extender.kicad_pcb [new file with mode: 0644]
HARDWARE/lightsticks_extender.kicad_pcb-bak [new file with mode: 0644]
HARDWARE/lightsticks_extender.net [new file with mode: 0644]
HARDWARE/lightsticks_extender.pro [new file with mode: 0644]
HARDWARE/lightsticks_extender.sch [new file with mode: 0644]
HARDWARE/lightsticks_extender.sch-bak [new file with mode: 0644]
README.md [new file with mode: 0644]
lightsticks_lasercut.svg [new file with mode: 0644]

diff --git a/BOOTLOADER/micronucleus b/BOOTLOADER/micronucleus
new file mode 160000 (submodule)
index 0000000..4d2481d
--- /dev/null
@@ -0,0 +1 @@
+Subproject commit 4d2481dabe327b44c1c1de6e169c30b6f3dd48a0
diff --git a/FIRMWARE/flash_c b/FIRMWARE/flash_c
new file mode 100755 (executable)
index 0000000..5a9198e
--- /dev/null
@@ -0,0 +1,11 @@
+#!/bin/bash
+
+targetProjectFile=lightstick
+
+sudo avrdude -p attiny85 -U flash:w:$targetProjectFile.hex -c avrisp2 -P usb -u -B 20
+
+#sudo avrdude -p t10 -U flash:w:firmware.hex -c avrispmkII -P usb 
+# -B 1 -b 4200 -F
+# sudo avrdude -p m328p -c stk500v2 -P usb -U lfuse:w:0xbf:m -U hfuse:w:0xd9:m -V -U efuse:w:0x07:m -u 
+##sudo avrdude -p m328p -U flash:w:compiled.hex -c stk500v2 -P usb
+
diff --git a/FIRMWARE/fuses b/FIRMWARE/fuses
new file mode 100644 (file)
index 0000000..411802e
--- /dev/null
@@ -0,0 +1 @@
+bßÿÿ
\ No newline at end of file
diff --git a/FIRMWARE/lightstick.c b/FIRMWARE/lightstick.c
new file mode 100644 (file)
index 0000000..6056c30
--- /dev/null
@@ -0,0 +1,399 @@
+
+#include <avr/io.h>
+#include <avr/interrupt.h>
+#include <stdlib.h>
+
+// ------------- main settings ------------------
+
+// #define     UART            1       // for debugging, if defined, beep() deactivated
+
+#define LED_BEEPER     PB1
+#define MAIN_LED       PB0
+#define BUTTON_LEFT    PB2
+#define BUTTON_RIGHT   PB4
+
+#define BRIGHT_MAX     100
+#define BRIGHT_DEF     1       // can't be > BRIGHT_MAX
+
+#define BEFORE_SLEEP   300     // sec before sleep
+
+// ---------------------------------------------
+
+#define ADC_SAMPLE_LEN 20      // must be > ADC_SAMPLE_DROP * 3
+#define ADC_SAMPLE_DROP        5
+
+#define BAT_15MIN      302     // ADC value, ~15 min left
+#define BAT_10MIN      301     // ..
+#define BAT_5MIN       300     // ..
+
+#define ON             0       // switchState
+#define SLEEP          1
+#define OFF            2
+
+// ---------------------------------------------
+
+#define false          0
+#define true           1
+
+// Some macros that make the code more readable
+
+#define output_low(port,pin) port &= ~(1<<pin)
+#define output_high(port,pin) port |= (1<<pin)
+#define set_input(portdir,pin) portdir &= ~(1<<pin)
+#define set_output(portdir,pin) portdir |= (1<<pin)
+
+#define invert(port,pin) port ^= (1<<pin)
+
+#define KEYBOARD_READ() ( 0b00010100 ^ (PINB & 0b00010100) )
+
+#define LEFT   0b00010000      
+#define RIGHT  0b00000100
+
+// beeper timer stuff 
+
+#define INT_DISABLE_BEEPER      ({ TIMSK &= ~(1<<TOIE1); })    // interrupt off
+#define INT_ENABLE_BEEPER       ({ TIMSK |= (1<<TOIE1); })     // interrupt on
+
+#define TIMER1_DIV     16
+#define        BEEP_LEN        240     // cycles (32kHz / TIMER1_DIV)
+
+// -------------- simple UART TX ------------
+
+#ifdef UART 
+
+       #define PRINT_BUFF_LEN  16
+
+uint8_t print_buff[ PRINT_BUFF_LEN ];
+
+void put_char( uint8_t c ){
+
+       c = ~c;
+       output_low( PORTB, LED_BEEPER );
+       for( uint8_t i = 10; i; i-- ){          // 10 bits
+
+//             _delay_us( 1e6 / BAUD );        // bit duration / (16MHz, 9600, 104 us)
+
+               asm volatile (
+                   "    ldi  r18, 3"   "\n"
+                   "    ldi  r19, 40"  "\n"
+                   "1:  dec  r19"      "\n"
+                   "    brne 1b"       "\n"
+                   "    dec  r18"      "\n"
+                   "    brne 1b"       "\n"
+                   "    nop"   "\n"
+               );
+
+               if( c & 1 ) output_low( PORTB, LED_BEEPER ); else output_high( PORTB, LED_BEEPER );     // data bit 0 / data bit 1 or stop bit
+               c >>= 1;
+       }
+} 
+
+
+void put_str(char *s) 
+{
+    while (*s) put_char(*s++);
+}
+
+void put_num( uint16_t num, uint8_t ret ){
+       itoa( num, (char *)print_buff, 10 );
+       put_str((char *)print_buff);
+       if ( ret ) put_str( "\n" ); else put_str( " " );
+}
+
+#endif 
+
+// -------------- EEPROM ---------------------
+
+unsigned char EEPROM_read(unsigned char ucAddress)
+{
+       while (EECR & (1<<EEPE));               //wait for completion of previous write
+       EEAR = ucAddress;                               //set up address register
+       EECR |= (1<<EERE);                              //start eeprom read by writing EERE
+       return EEDR;                                    //return data from data register
+}
+
+void EEPROM_write(unsigned char ucAddress, unsigned char ucData)
+{
+       while (EECR & (1<<EEPE));               //wait for completion of previous write
+       EECR = (0<<EEPM1)|(0<<EEPM0);   //set programming mode
+       EEAR = ucAddress;                               //set up address register
+       EEDR = ucData;                                  //set up data register
+       EECR |= (1<<EEMPE);                             //write lgical one to EMPE
+       EECR |= (1<<EEPE);                              //start eeprom write by setting EEPE
+}
+
+// uint8_t EEMEM       memoBrightness = 0xff;
+
+
+// -------------- beeper ---------------------
+
+static volatile uint32_t beeper_mask;
+static volatile uint8_t beeper_div;
+
+ISR ( TIMER1_OVF_vect ) {
+
+       static uint16_t beeper_cnt;
+
+//     TCNT1 = 255; // 208kHz
+//     TCNT1 = 128; // 53kHz
+//     TCNT1 = 64; // 37kHz    // 64
+       TCNT1 = 32; // 32kHz    // 64
+//     TCNT1 = 1; // 29kHz     // 64
+
+       if ( beeper_div++ % TIMER1_DIV == 0 ){
+
+               if( beeper_cnt++ < BEEP_LEN ){ 
+                       if(beeper_mask & 1) invert(PORTB, LED_BEEPER);
+               } else {
+                       beeper_cnt = 0;
+                       beeper_mask >>= 1;
+
+                       if(beeper_mask == 0){
+                               INT_DISABLE_BEEPER;
+                               PRR |= (1<<PRTIM1);  // power off Timer 1
+                       }
+               }
+       }
+}
+
+void beep(uint32_t mask){
+
+#ifdef UART 
+       put_str("BEEP\n");
+#else 
+       beeper_mask = mask;
+
+       if(beeper_mask){
+               PRR   &= ~(1<<PRTIM1);  // power on Timer 1
+//             TCCR1 = 0;              // Normal counter operation
+               TCCR1 = 0b0001;         // PRESCALER(TIMER1_PRESCALER) // has no effect IMHO (PLL mode?)
+               TCNT1  = 0xFF;          // Start terminal count at 0xFF
+               INT_ENABLE_BEEPER;      // Enable Overflow interrupts for Timer 0
+       }
+#endif 
+}
+
+// -------------- delay ---------------------
+
+void my_delay(){ // 50 ms
+
+       asm volatile (
+           "    ldi  r18, 5"   "\n"
+           "    ldi  r19, 15"  "\n"
+           "    ldi  r20, 242" "\n"
+           "1:  dec  r20"      "\n"
+           "    brne 1b"       "\n"
+           "    dec  r19"      "\n"
+           "    brne 1b"       "\n"
+           "    dec  r18"      "\n"
+           "    brne 1b"       "\n"
+       );
+}
+
+
+// --------------- ADC ----------------------
+
+void adc_init() {
+
+       DIDR0 |= (1<<ADC3D);                                    // disable digital inputs to reduce power consumption in the digital input buffer
+       PRR &= ~(1<<PRADC);                                     // power on ADC
+//     ADMUX = (1<<REFS1) | (1<<REFS0);                        // AREF = 2.56v
+       ADMUX = (1<<REFS1);                                     // AREF = 1.1v
+
+       ADCSRA = (1 << ADEN) | (1 << ADPS2) | (1 << ADPS1) | (1 << ADPS0);      // ADC Enable and prescaler of 128, // 16000000/128 = 125000
+}
+
+uint16_t adc_read() {
+
+       PRR &= ~(1<<PRADC);                                     // power on ADC
+       ADMUX |= (1<<REFS1) | (1 << MUX1) | (1 << MUX0);        // ADC3 activated / read ADCH
+       ADCSRA |= (1<<ADSC);                                    // start single convertion
+       while(ADCSRA & (1<<ADSC));                              // wait for conversion to complete
+       PRR |= (1<<PRADC);                                      // power off ADC
+       return (ADC);
+}
+
+// ------------ median value ----------------
+
+uint16_t median( uint16_t * list, uint8_t n, uint8_t drop ){
+
+       uint8_t c, d;
+       uint16_t t;
+
+       for (c = 0 ; c < n - 1; c++) {
+               for (d = 0 ; d < n - c - 1; d++) {
+                       if (list[d] > list[d+1]) {
+                               t = list[d];
+                               list[d] = list[d+1];
+                               list[d+1] = t;
+                       }
+               }
+       }
+
+       t =0;
+
+       for (c = drop ; c < n-drop ; c++) t += list[ c ];
+
+       return t/(n - drop*2);
+}
+
+// ------------------------------------------
+// -------------- main ----------------------
+// ------------------------------------------
+
+int main(void) {
+
+       uint8_t         keyBlock = 0, keyMask = 0, prevKeyMask = 0, keyCnt = 0;
+       uint8_t         brightness = 0, targBrightness = 0, targBrightnessOnSleep = 0;
+       uint8_t         battStage = 0, switchState = ON;
+       uint16_t        adc[ ADC_SAMPLE_LEN ];
+       uint16_t        ADCVal = 0xffff, secCnt = 0, seconds = 0, sleepCnt = 0;
+
+//     if (MCUSR != 0) tMCUSRStored = MCUSR; else tMCUSRStored = GPIOR0; // MCU Reset Status Register
+
+       // IO init
+
+       cli();
+
+       set_output(DDRB, LED_BEEPER);
+       set_input(DDRB, BUTTON_LEFT);
+       set_input(DDRB, BUTTON_RIGHT);
+
+       output_high(PORTB, BUTTON_LEFT);        // pull-up
+       output_high(PORTB, BUTTON_RIGHT);       // pull-up
+
+       set_output(DDRB, MAIN_LED);  
+
+       INT_DISABLE_BEEPER;
+
+       sei();
+
+/*
+       MCU Reset Status Register
+
+       if ( tMCUSRStored == 0 ) beep( 0b10101 ); else { 
+               for (uint8_t a = 0; a < 6; a++ ) {
+                       beep( 0b10 );
+                       keyBlock = 10;
+                       while (keyBlock-- > 0) my_delay(); 
+               }
+       }
+*/
+
+       beep( 0b10101 );
+
+       // PWM init
+
+       TCCR0A  = 2<<COM0A0 | 1<<WGM00 | 1<<WGM01 ;
+       TCCR0B  = 0<<WGM02 | 1<<CS00;
+       TCCR1   = 0<<PWM1A | 0<<COM1A0 | 1<<CS10;       // page 89, TCCR1 – Timer/Counter1 Control Register
+//     GTCCR   = 1<<PWM1B | 2<<COM1B0;
+
+       // set default brightness
+
+       targBrightness = EEPROM_read( 0x01 );
+       if ( targBrightness == 0xff || targBrightness > BRIGHT_MAX ) targBrightness = BRIGHT_DEF;
+
+       adc_init();
+
+#ifdef UART 
+       put_str("hello...\n");
+#endif
+
+       // main loop 
+
+       while (1) {
+
+               // check battery 
+
+               if ( secCnt++ == 20 ){
+
+                       secCnt = 0; 
+
+                       adc[ seconds % ADC_SAMPLE_LEN ] = adc_read();
+
+                       if (  seconds % ADC_SAMPLE_LEN == 0 && seconds > ADC_SAMPLE_LEN ){
+
+                               ADCVal = median( adc, ADC_SAMPLE_LEN, ADC_SAMPLE_DROP );
+
+                               if ( ADCVal <= BAT_15MIN && battStage == 0 ) battStage = 1; 
+                               if ( ADCVal <= BAT_10MIN && battStage == 1 ) battStage = 2;
+                               if ( ADCVal <= BAT_10MIN && battStage == 2 ) battStage = 3;
+               
+                               if ( battStage == 1 ) beep(0b101);
+                               if ( battStage == 2 ) beep(0b10101);
+                               if ( battStage == 3 ) {
+                                       beep(0b1010101);
+                                       targBrightness = 0;
+                                       switchState = OFF;
+                               }
+#ifdef UART 
+                               put_num( ADCVal, true );
+#endif
+                       }
+
+                       seconds ++;
+                       sleepCnt ++;
+               }
+
+               // sleep counter 
+
+               if ( sleepCnt > BEFORE_SLEEP && switchState == ON ){
+                       targBrightnessOnSleep = brightness;
+                       targBrightness = 0;
+                       beep(0b1);
+                       switchState = SLEEP;
+               }
+
+               // keyboard interface 
+
+               if ( keyBlock > 0 ) {
+                       keyBlock --; 
+               } else { 
+
+                       keyMask = KEYBOARD_READ();
+
+                       if ( switchState == ON ){ 
+
+                               if ( prevKeyMask != keyMask ) keyCnt = 0; else keyCnt ++;
+                               prevKeyMask = keyMask;
+
+                               if (keyCnt > 2) { 
+
+                                       if ( keyMask == LEFT ) { if ( targBrightness < BRIGHT_MAX ) targBrightness ++; else { beep(0b1); keyBlock = 10; } }
+                                       if ( keyMask == RIGHT && targBrightness > 0 ) targBrightness --;
+
+                                       if ( keyMask == ( LEFT | RIGHT ) ) {
+                                               EEPROM_write( 0x01, brightness );
+                                               beep(0b101);
+                                               keyBlock = 10;
+                                       }
+                               }
+                       }
+
+                       if ( keyMask != 0 ) {
+
+                               if ( switchState == OFF ) {
+                                       beep(0b1010101); 
+                                       keyBlock = 10;
+                               }
+
+                               if ( switchState == SLEEP ){
+                                       beep(0b1);
+                                       sleepCnt = 0;
+                                       switchState = ON; 
+                                       targBrightness = targBrightnessOnSleep;
+                                       keyBlock = 10;
+                               }
+                       }
+               }
+
+               if ( brightness < targBrightness ) brightness ++;
+               if ( brightness > targBrightness) brightness --;
+
+               OCR0A = brightness;
+
+               my_delay();
+       }
+}
+
diff --git a/FIRMWARE/lightstick.elf b/FIRMWARE/lightstick.elf
new file mode 100755 (executable)
index 0000000..d5ec4cf
Binary files /dev/null and b/FIRMWARE/lightstick.elf differ
diff --git a/FIRMWARE/lightstick.hex b/FIRMWARE/lightstick.hex
new file mode 100644 (file)
index 0000000..4f29fcf
--- /dev/null
@@ -0,0 +1,83 @@
+:100000000EC01BC01AC019C02BC017C016C015C027\r
+:1000100014C013C012C011C010C00FC00EC01124F4\r
+:100020001FBECFEDCDBF20E0A0E6B0E001C01D9225\r
+:10003000A736B207E1F733D16EC2E2CFE199FECF26\r
+:1000400090E09FBB8EBBE09A8DB30895E199FECFFF\r
+:100050001CBA90E09FBB8EBB6DBBE29AE19A0895FB\r
+:100060001F920F920FB60F9211242F933F938F93ED\r
+:100070009F93AF93BF9380E28FBD8091620091E028\r
+:10008000980F909362008F7009F047C080916000D4\r
+:10009000909161009C012F5F3F4F3093610020934E\r
+:1000A0006000803F910578F4809163009091640036\r
+:1000B000A0916500B091660080FF2FC098B382E0E8\r
+:1000C000892788BB2AC0109261001092600080913D\r
+:1000D000630090916400A0916500B0916600B695B0\r
+:1000E000A795979587958093630090936400A0935C\r
+:1000F0006500B09366008091630090916400A091C8\r
+:100100006500B0916600892B8A2B8B2B31F489B75F\r
+:100110008B7F89BF80B5886080BDBF91AF919F9173\r
+:100120008F913F912F910F900FBE0F901F901895B8\r
+:100130006093630070936400809365009093660001\r
+:100140008091630090916400A0916500B091660079\r
+:10015000892B8A2B8B2B51F080B5877F80BD81E066\r
+:1001600080BF8FEF8FBD89B7846089BF089525E078\r
+:100170003FE042EF4A95F1F73A95E1F72A95D1F73A\r
+:100180000895A39A80B58E7F80BD80E887B987E8FF\r
+:1001900086B9089580B58E7F80BD87B1836887B9A1\r
+:1001A000369A3699FECF80B5816080BD84B195B115\r
+:1001B0000895AF92BF92CF92DF92EF92FF920F938A\r
+:1001C0001F93CF93DF93EC01062F10E0780121E01D\r
+:1001D000E21AF1081E141F0454F135C090E0292FD3\r
+:1001E00030E0220F331F6E01C20ED31EF601A08134\r
+:1001F000B1812E5F3F4F5E01A20EB31EF50120813B\r
+:1002000031812A173B0730F4F60131832083F50151\r
+:10021000B183A0839F5F292F30E026173707FCF2B8\r
+:100220008F5F282F30E02E153F0524F00CC020E012\r
+:1002300030E080E0B801621B730B61507109161643\r
+:10024000170664F2EDCF642F70E0061B170B6017E2\r
+:10025000710794F480E090E0FE01E40FF11DE40FDB\r
+:10026000F11D20813181820F931F4F5F242F30E0D9\r
+:10027000201731078CF302C080E090E09801261B24\r
+:10028000370BB90134D1CB01DF91CF911F910F9181\r
+:10029000FF90EF90DF90CF90BF90AF900895CF93F5\r
+:1002A000DF93CDB7DD27C952CDBFF894B99ABA987C\r
+:1002B000BC98C29AC49AB89A89B78B7F89BF789440\r
+:1002C00065E170E080E090E033DF83E88ABD81E0A3\r
+:1002D00083BF80BFB3DE082F853608F001E051DF11\r
+:1002E000512C10E0612C712CD12CA12CB12C812C23\r
+:1002F000912CEE24E394F12CC12C19A60F2EF4E1DD\r
+:100300002F2E312CF02D57C0C401B101F0D07C014B\r
+:1003100041DFF701EE0FFF1F21E030E02C0F3D1F02\r
+:10032000E20FF31F91838083EF28E1F535E1831617\r
+:100330009104C0F145E064E1CE0101963ADF8F32CD\r
+:1003400021E0920728F439A5311102C021E029A744\r
+:100350008E32914028F489A5813009F0ADC009C0E2\r
+:1003600029A5213041F465E070E080E090E0E0DE16\r
+:100370000DC033E039A789A5823041F465E170E012\r
+:1003800080E090E0D5DE0EC023E029A739A5333008\r
+:1003900049F465E570E080E090E0CADE6894CC2422\r
+:1003A000C1F800E08FEF881A980A2FEFA21AB20A5C\r
+:1003B00080E090E07C013DE2A31631E0B30660F0FE\r
+:1003C000C11085C061E070E080E090E0B1DE512EA8\r
+:1003D000CC24C39400E07BC0DD2011F0DA945CC033\r
+:1003E00046B2842D80958471482EC11030C087118B\r
+:1003F00077C0639482E0861508F06EC020E1421257\r
+:100400000EC0043610F40F5F67C061E070E080E05A\r
+:1004100090E08EDE0F2EFAE0DF2EF02D5DC034E08E\r
+:10042000431205C0002309F455C0015053C084E1B4\r
+:10043000481252C0612F81E009DE65E070E080E083\r
+:1004400090E076DE0F2EFAE0DF2EF02D4EC0442035\r
+:1004500001F122E0C2120CC065E570E080E090E09E\r
+:1004600067DE0F2EFAE0DF2EF02D16C0742C612C03\r
+:1004700031E0C31210C061E070E080E090E058DE2F\r
+:10048000052DA12CB12CC12C0F2EFAE0DF2EF02D62\r
+:1004900003C0D12C01C0D12C101708F41F5F011725\r
+:1004A00008F4115019BD63DEC701019624E1E2167C\r
+:1004B000F10409F07FCF28CF39A5323009F066CF9B\r
+:1004C00063CF46B2842D80958471482EC0CFD11061\r
+:1004D00085CFF7CF742CCCCF411007C0742CDCCF64\r
+:1004E0008111C4CF782E612CD7CF742CD5CFAA1B05\r
+:1004F000BB1B51E107C0AA1FBB1FA617B70710F00F\r
+:10050000A61BB70B881F991F5A95A9F78095909540\r
+:0A051000BC01CD010895F894FFCF5F\r
+:00000001FF\r
diff --git a/FIRMWARE/lightstick.map b/FIRMWARE/lightstick.map
new file mode 100644 (file)
index 0000000..2c52b48
--- /dev/null
@@ -0,0 +1,434 @@
+Archive member included to satisfy reference by file (symbol)
+
+/usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+                              lightstick.o (__udivmodhi4)
+/usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+                              /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o (exit)
+/usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+                              lightstick.o (__do_clear_bss)
+
+Memory Configuration
+
+Name             Origin             Length             Attributes
+text             0x0000000000000000 0x0000000000002000 xr
+data             0x0000000000800060 0x000000000000ffa0 rw !x
+eeprom           0x0000000000810000 0x0000000000010000 rw !x
+fuse             0x0000000000820000 0x0000000000000003 rw !x
+lock             0x0000000000830000 0x0000000000000400 rw !x
+signature        0x0000000000840000 0x0000000000000400 rw !x
+user_signatures  0x0000000000850000 0x0000000000000400 rw !x
+*default*        0x0000000000000000 0xffffffffffffffff
+
+Linker script and memory map
+
+LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+LOAD lightstick.o
+START GROUP
+LOAD /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a
+LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/libm.a
+LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/libc.a
+LOAD /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/libattiny25.a
+END GROUP
+                0x0000000000002000                __TEXT_REGION_LENGTH__ = DEFINED (__TEXT_REGION_LENGTH__)?__TEXT_REGION_LENGTH__:0x2000
+                0x000000000000ffa0                __DATA_REGION_LENGTH__ = DEFINED (__DATA_REGION_LENGTH__)?__DATA_REGION_LENGTH__:0xffa0
+                0x0000000000010000                __EEPROM_REGION_LENGTH__ = DEFINED (__EEPROM_REGION_LENGTH__)?__EEPROM_REGION_LENGTH__:0x10000
+                [0x0000000000000003]                __FUSE_REGION_LENGTH__ = DEFINED (__FUSE_REGION_LENGTH__)?__FUSE_REGION_LENGTH__:0x400
+                0x0000000000000400                __LOCK_REGION_LENGTH__ = DEFINED (__LOCK_REGION_LENGTH__)?__LOCK_REGION_LENGTH__:0x400
+                0x0000000000000400                __SIGNATURE_REGION_LENGTH__ = DEFINED (__SIGNATURE_REGION_LENGTH__)?__SIGNATURE_REGION_LENGTH__:0x400
+                0x0000000000000400                __USER_SIGNATURE_REGION_LENGTH__ = DEFINED (__USER_SIGNATURE_REGION_LENGTH__)?__USER_SIGNATURE_REGION_LENGTH__:0x400
+
+.hash
+ *(.hash)
+
+.dynsym
+ *(.dynsym)
+
+.dynstr
+ *(.dynstr)
+
+.gnu.version
+ *(.gnu.version)
+
+.gnu.version_d
+ *(.gnu.version_d)
+
+.gnu.version_r
+ *(.gnu.version_r)
+
+.rel.init
+ *(.rel.init)
+
+.rela.init
+ *(.rela.init)
+
+.rel.text
+ *(.rel.text)
+ *(.rel.text.*)
+ *(.rel.gnu.linkonce.t*)
+
+.rela.text
+ *(.rela.text)
+ *(.rela.text.*)
+ *(.rela.gnu.linkonce.t*)
+
+.rel.fini
+ *(.rel.fini)
+
+.rela.fini
+ *(.rela.fini)
+
+.rel.rodata
+ *(.rel.rodata)
+ *(.rel.rodata.*)
+ *(.rel.gnu.linkonce.r*)
+
+.rela.rodata
+ *(.rela.rodata)
+ *(.rela.rodata.*)
+ *(.rela.gnu.linkonce.r*)
+
+.rel.data
+ *(.rel.data)
+ *(.rel.data.*)
+ *(.rel.gnu.linkonce.d*)
+
+.rela.data
+ *(.rela.data)
+ *(.rela.data.*)
+ *(.rela.gnu.linkonce.d*)
+
+.rel.ctors
+ *(.rel.ctors)
+
+.rela.ctors
+ *(.rela.ctors)
+
+.rel.dtors
+ *(.rel.dtors)
+
+.rela.dtors
+ *(.rela.dtors)
+
+.rel.got
+ *(.rel.got)
+
+.rela.got
+ *(.rela.got)
+
+.rel.bss
+ *(.rel.bss)
+
+.rela.bss
+ *(.rela.bss)
+
+.rel.plt
+ *(.rel.plt)
+
+.rela.plt
+ *(.rela.plt)
+
+.text           0x0000000000000000      0x51a
+ *(.vectors)
+ .vectors       0x0000000000000000       0x1e /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+                0x0000000000000000                __vectors
+                0x0000000000000000                __vector_default
+ *(.vectors)
+ *(.progmem.gcc*)
+                0x000000000000001e                . = ALIGN (0x2)
+                0x000000000000001e                __trampolines_start = .
+ *(.trampolines)
+ .trampolines   0x000000000000001e        0x0 linker stubs
+ *(.trampolines*)
+                0x000000000000001e                __trampolines_end = .
+ *libprintf_flt.a:*(.progmem.data)
+ *libc.a:*(.progmem.data)
+ *(.progmem*)
+                0x000000000000001e                . = ALIGN (0x2)
+ *(.jumptables)
+ *(.jumptables*)
+ *(.lowtext)
+ *(.lowtext*)
+                0x000000000000001e                __ctors_start = .
+ *(.ctors)
+                0x000000000000001e                __ctors_end = .
+                0x000000000000001e                __dtors_start = .
+ *(.dtors)
+                0x000000000000001e                __dtors_end = .
+ SORT(*)(.ctors)
+ SORT(*)(.dtors)
+ *(.init0)
+ .init0         0x000000000000001e        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+                0x000000000000001e                __init
+ *(.init0)
+ *(.init1)
+ *(.init1)
+ *(.init2)
+ .init2         0x000000000000001e        0x8 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+ *(.init2)
+ *(.init3)
+ *(.init3)
+ *(.init4)
+ .init4         0x0000000000000026       0x10 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+                0x0000000000000026                __do_clear_bss
+ *(.init4)
+ *(.init5)
+ *(.init5)
+ *(.init6)
+ *(.init6)
+ *(.init7)
+ *(.init7)
+ *(.init8)
+ *(.init8)
+ *(.init9)
+ .init9         0x0000000000000036        0x4 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+ *(.init9)
+ *(.text)
+ .text          0x000000000000003a        0x2 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+                0x000000000000003a                __vector_1
+                0x000000000000003a                __vector_12
+                0x000000000000003a                __bad_interrupt
+                0x000000000000003a                __vector_6
+                0x000000000000003a                __vector_3
+                0x000000000000003a                __vector_11
+                0x000000000000003a                __vector_13
+                0x000000000000003a                __vector_7
+                0x000000000000003a                __vector_5
+                0x000000000000003a                __vector_9
+                0x000000000000003a                __vector_2
+                0x000000000000003a                __vector_8
+                0x000000000000003a                __vector_14
+                0x000000000000003a                __vector_10
+ .text          0x000000000000003c      0x4b2 lightstick.o
+                0x000000000000003c                EEPROM_read
+                0x000000000000004c                EEPROM_write
+                0x0000000000000060                __vector_4
+                0x0000000000000130                beep
+                0x000000000000016e                my_delay
+                0x0000000000000182                adc_init
+                0x0000000000000194                adc_read
+                0x00000000000001b2                median
+                0x000000000000029e                main
+ .text          0x00000000000004ee        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+ .text          0x00000000000004ee        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ .text          0x00000000000004ee        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+                0x00000000000004ee                . = ALIGN (0x2)
+ *(.text.*)
+ .text.libgcc.mul
+                0x00000000000004ee        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+ .text.libgcc.div
+                0x00000000000004ee       0x28 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+                0x00000000000004ee                __udivmodhi4
+ .text.libgcc   0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+ .text.libgcc.prologue
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+ .text.libgcc.builtins
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+ .text.libgcc.fmul
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+ .text.libgcc.fixed
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+ .text.libgcc.mul
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ .text.libgcc.div
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ .text.libgcc   0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ .text.libgcc.prologue
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ .text.libgcc.builtins
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ .text.libgcc.fmul
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ .text.libgcc.fixed
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ .text.libgcc.mul
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+ .text.libgcc.div
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+ .text.libgcc   0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+ .text.libgcc.prologue
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+ .text.libgcc.builtins
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+ .text.libgcc.fmul
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+ .text.libgcc.fixed
+                0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+                0x0000000000000516                . = ALIGN (0x2)
+ *(.fini9)
+ .fini9         0x0000000000000516        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+                0x0000000000000516                exit
+                0x0000000000000516                _exit
+ *(.fini9)
+ *(.fini8)
+ *(.fini8)
+ *(.fini7)
+ *(.fini7)
+ *(.fini6)
+ *(.fini6)
+ *(.fini5)
+ *(.fini5)
+ *(.fini4)
+ *(.fini4)
+ *(.fini3)
+ *(.fini3)
+ *(.fini2)
+ *(.fini2)
+ *(.fini1)
+ *(.fini1)
+ *(.fini0)
+ .fini0         0x0000000000000516        0x4 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ *(.fini0)
+                0x000000000000051a                _etext = .
+
+.data           0x0000000000800060        0x0 load address 0x000000000000051a
+                [!provide]                        PROVIDE (__data_start, .)
+ *(.data)
+ .data          0x0000000000800060        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+ .data          0x0000000000800060        0x0 lightstick.o
+ .data          0x0000000000800060        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+ .data          0x0000000000800060        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ .data          0x0000000000800060        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+ *(.data*)
+ *(.rodata)
+ *(.rodata*)
+ *(.gnu.linkonce.d*)
+                0x0000000000800060                . = ALIGN (0x2)
+                0x0000000000800060                _edata = .
+                [!provide]                        PROVIDE (__data_end, .)
+
+.bss            0x0000000000800060        0x7
+                0x0000000000800060                PROVIDE (__bss_start, .)
+ *(.bss)
+ .bss           0x0000000000800060        0x0 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+ .bss           0x0000000000800060        0x7 lightstick.o
+ .bss           0x0000000000800067        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_udivmodhi4.o)
+ .bss           0x0000000000800067        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_exit.o)
+ .bss           0x0000000000800067        0x0 /usr/lib/gcc/avr/5.4.0/avr25/tiny-stack/libgcc.a(_clear_bss.o)
+ *(.bss*)
+ *(COMMON)
+                0x0000000000800067                PROVIDE (__bss_end, .)
+                0x000000000000051a                __data_load_start = LOADADDR (.data)
+                0x000000000000051a                __data_load_end = (__data_load_start + SIZEOF (.data))
+
+.noinit         0x0000000000800067        0x0
+                [!provide]                        PROVIDE (__noinit_start, .)
+ *(.noinit*)
+                [!provide]                        PROVIDE (__noinit_end, .)
+                0x0000000000800067                _end = .
+                [!provide]                        PROVIDE (__heap_start, .)
+
+.eeprom         0x0000000000810000        0x0
+ *(.eeprom*)
+                0x0000000000810000                __eeprom_end = .
+
+.fuse
+ *(.fuse)
+ *(.lfuse)
+ *(.hfuse)
+ *(.efuse)
+
+.lock
+ *(.lock*)
+
+.signature
+ *(.signature*)
+
+.user_signatures
+ *(.user_signatures*)
+
+.stab
+ *(.stab)
+
+.stabstr
+ *(.stabstr)
+
+.stab.excl
+ *(.stab.excl)
+
+.stab.exclstr
+ *(.stab.exclstr)
+
+.stab.index
+ *(.stab.index)
+
+.stab.indexstr
+ *(.stab.indexstr)
+
+.comment        0x0000000000000000       0x11
+ *(.comment)
+ .comment       0x0000000000000000       0x11 lightstick.o
+                                         0x12 (size before relaxing)
+
+.note.gnu.avr.deviceinfo
+                0x0000000000000000       0x3c
+ .note.gnu.avr.deviceinfo
+                0x0000000000000000       0x3c /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+
+.note.gnu.build-id
+ *(.note.gnu.build-id)
+
+.debug
+ *(.debug)
+
+.line
+ *(.line)
+
+.debug_srcinfo
+ *(.debug_srcinfo)
+
+.debug_sfnames
+ *(.debug_sfnames)
+
+.debug_aranges
+ *(.debug_aranges)
+
+.debug_pubnames
+ *(.debug_pubnames)
+
+.debug_info     0x0000000000000000      0x420
+ *(.debug_info .gnu.linkonce.wi.*)
+ .debug_info    0x0000000000000000      0x420 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+
+.debug_abbrev   0x0000000000000000      0x3e8
+ *(.debug_abbrev)
+ .debug_abbrev  0x0000000000000000      0x3e8 /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+
+.debug_line     0x0000000000000000       0x1a
+ *(.debug_line .debug_line.* .debug_line_end)
+ .debug_line    0x0000000000000000       0x1a /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+
+.debug_frame
+ *(.debug_frame)
+
+.debug_str      0x0000000000000000      0x16a
+ *(.debug_str)
+ .debug_str     0x0000000000000000      0x16a /usr/lib/gcc/avr/5.4.0/../../../avr/lib/avr25/tiny-stack/crtattiny25.o
+
+.debug_loc
+ *(.debug_loc)
+
+.debug_macinfo
+ *(.debug_macinfo)
+
+.debug_weaknames
+ *(.debug_weaknames)
+
+.debug_funcnames
+ *(.debug_funcnames)
+
+.debug_typenames
+ *(.debug_typenames)
+
+.debug_varnames
+ *(.debug_varnames)
+
+.debug_pubtypes
+ *(.debug_pubtypes)
+
+.debug_ranges
+ *(.debug_ranges)
+
+.debug_macro
+ *(.debug_macro)
+OUTPUT(lightstick.elf elf32-avr)
+LOAD linker stubs
diff --git a/FIRMWARE/lightstick.o b/FIRMWARE/lightstick.o
new file mode 100644 (file)
index 0000000..68e6a84
Binary files /dev/null and b/FIRMWARE/lightstick.o differ
diff --git a/FIRMWARE/make_c b/FIRMWARE/make_c
new file mode 100755 (executable)
index 0000000..e3cbc86
--- /dev/null
@@ -0,0 +1,22 @@
+#!/bin/bash
+
+targetProjectFile=lightstick
+
+# targetAVR=attiny10;
+# -DF_CPU=12000000UL 
+export DEFINES="-mmcu=attiny25 -DF_CPU=8000000UL -DBOARD=1 -fno-strict-aliasing"
+
+# export PATH=$PATH:/usr/local/avr/bin
+
+rm *.hex *.elf
+
+# /usr/local/avr/bin/avr-gcc
+
+avr-gcc $DEFINES -Wall -O1 -std=gnu99 -o $targetProjectFile.o -c $targetProjectFile.c
+avr-gcc $DEFINES -Wl,-Map=$targetProjectFile.map $targetProjectFile.o  -o $targetProjectFile.elf
+avr-objcopy -O ihex $targetProjectFile.elf $targetProjectFile.hex
+
+avr-size $targetProjectFile.hex
+
+echo "Compilatoin done"
+exit
diff --git a/FIRMWARE/memo b/FIRMWARE/memo
new file mode 100644 (file)
index 0000000..15edf6e
--- /dev/null
@@ -0,0 +1,34 @@
+FUSES 
+       default
+               https://eleccelerator.com/fusecalc/fusecalc.php?chip=attiny85&LOW=62&HIGH=DF&EXTENDED=FF&LOCKBIT=FF
+
+       my 
+               sudo avrdude -p attiny85 -c avrisp2 -P usb  -B20  -U lfuse:w:0xe2:m -U hfuse:w:0xdf:m -V
+
+FLASH 
+       CONNECT
+               external 4,5v to claw connector (probably not reauired, but ok before battery soldering)
+               check power off switcher (off) 
+               claw connector to IC 
+
+       BOOTLOADER 
+               micronucleus old 
+                       cd ~/Projects/ELECTRONICS/AVR/BOOTLOADERS/micronucleus/firmware
+
+                       make clean
+                       make CONFIG=t85_default fuse
+                       make CONFIG=t85_default flash
+
+       
+       >       micronucleus
+                       cd ~/Projects/ELECTRONICS/AVR/BOOTLOADERS/micronucleus-firmware/firmware
+
+                       make clean
+                       make CONFIG=t85_entry_on_power_on_no_pullup_fast_exit_on_no_USB fuse
+                       make CONFIG=t85_entry_on_power_on_no_pullup_fast_exit_on_no_USB flash
+
+       MAIN
+               connect extender in reverce
+
+               sudo ~/Projects/ELECTRONICS/AVR/BOOTLOADERS/micronucleus/commandline/micronucleus --run lightstick.hex 
+
diff --git a/HARDWARE/GERBER/lightsticks_extender-B_Cu.gbr b/HARDWARE/GERBER/lightsticks_extender-B_Cu.gbr
new file mode 100644 (file)
index 0000000..66b1e2d
--- /dev/null
@@ -0,0 +1,342 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1*
+G04 #@! TF.CreationDate,2024-04-05T17:11:51+02:00*
+G04 #@! TF.ProjectId,lightsticks_extender,6c696768-7473-4746-9963-6b735f657874,rev?*
+G04 #@! TF.SameCoordinates,Original*
+G04 #@! TF.FileFunction,Copper,L2,Bot*
+G04 #@! TF.FilePolarity,Positive*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 7.0.11-7.0.11~ubuntu20.04.1) date 2024-04-05 17:11:51*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 #@! TA.AperFunction,ViaPad*
+%ADD10C,0.800000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,Conductor*
+%ADD11C,0.500000*%
+G04 #@! TD*
+G04 APERTURE END LIST*
+D10*
+X105000000Y-23000000D03*
+X105000000Y-30000000D03*
+X105000000Y-39000000D03*
+X105000000Y-48000000D03*
+X105000000Y-57000000D03*
+X105000000Y-66000000D03*
+X106000000Y-16000000D03*
+X106000000Y-32000000D03*
+X106000000Y-41000000D03*
+X106000000Y-50000000D03*
+X106000000Y-59000000D03*
+X106000000Y-68000000D03*
+D11*
+X105000000Y-23000000D02*
+X105000000Y-30000000D01*
+X105000000Y-30000000D02*
+X105000000Y-39000000D01*
+X105000000Y-39000000D02*
+X105000000Y-48000000D01*
+X105000000Y-48000000D02*
+X105000000Y-57000000D01*
+X105000000Y-57000000D02*
+X105000000Y-66000000D01*
+X106000000Y-16000000D02*
+X106000000Y-32000000D01*
+X106000000Y-32000000D02*
+X106000000Y-41000000D01*
+X106000000Y-41000000D02*
+X106000000Y-50000000D01*
+X106000000Y-50000000D02*
+X106000000Y-59000000D01*
+X106000000Y-59000000D02*
+X106000000Y-68000000D01*
+G04 #@! TA.AperFunction,NonConductor*
+G36*
+X110620110Y-10166687D02*
+G01*
+X110734403Y-10205484D01*
+X110749610Y-10211783D01*
+X110962351Y-10316695D01*
+X110976608Y-10324926D01*
+X111173827Y-10456703D01*
+X111186893Y-10466728D01*
+X111365232Y-10623127D01*
+X111376872Y-10634767D01*
+X111533269Y-10813104D01*
+X111543296Y-10826173D01*
+X111675067Y-11023384D01*
+X111683308Y-11037656D01*
+X111760799Y-11194791D01*
+X111773783Y-11248925D01*
+X111939490Y-24339710D01*
+X111939500Y-24341305D01*
+X111939500Y-107995878D01*
+X111939230Y-108004119D01*
+X111923447Y-108244913D01*
+X111921296Y-108261254D01*
+X111875023Y-108493882D01*
+X111870757Y-108509801D01*
+X111794519Y-108734393D01*
+X111788212Y-108749620D01*
+X111683309Y-108962342D01*
+X111675068Y-108976616D01*
+X111543296Y-109173827D01*
+X111533263Y-109186903D01*
+X111376879Y-109365225D01*
+X111365225Y-109376879D01*
+X111186903Y-109533263D01*
+X111173827Y-109543296D01*
+X110976616Y-109675068D01*
+X110962342Y-109683309D01*
+X110749620Y-109788212D01*
+X110734393Y-109794519D01*
+X110509801Y-109870757D01*
+X110493882Y-109875023D01*
+X110261254Y-109921296D01*
+X110244913Y-109923447D01*
+X110004119Y-109939230D01*
+X109995878Y-109939500D01*
+X102004122Y-109939500D01*
+X101995881Y-109939230D01*
+X101755086Y-109923447D01*
+X101738745Y-109921296D01*
+X101506117Y-109875023D01*
+X101490198Y-109870757D01*
+X101265606Y-109794519D01*
+X101250379Y-109788212D01*
+X101037653Y-109683307D01*
+X101023386Y-109675070D01*
+X100826172Y-109543296D01*
+X100813104Y-109533269D01*
+X100634767Y-109376872D01*
+X100623127Y-109365232D01*
+X100466728Y-109186893D01*
+X100456703Y-109173827D01*
+X100324926Y-108976608D01*
+X100316695Y-108962351D01*
+X100211783Y-108749610D01*
+X100205484Y-108734403D01*
+X100129242Y-108509801D01*
+X100124976Y-108493882D01*
+X100106868Y-108402846D01*
+X100078701Y-108261242D01*
+X100076553Y-108244923D01*
+X100060770Y-108004119D01*
+X100060500Y-107995878D01*
+X100060500Y-66000000D01*
+X104086496Y-66000000D01*
+X104106457Y-66189927D01*
+X104136526Y-66282470D01*
+X104165473Y-66371556D01*
+X104165476Y-66371561D01*
+X104260958Y-66536941D01*
+X104260965Y-66536951D01*
+X104388744Y-66678864D01*
+X104388747Y-66678866D01*
+X104543248Y-66791118D01*
+X104717712Y-66868794D01*
+X104904513Y-66908500D01*
+X105095487Y-66908500D01*
+X105102049Y-66907810D01*
+X105102368Y-66910852D01*
+X105159870Y-66915131D01*
+X105216584Y-66957840D01*
+X105241204Y-67024430D01*
+X105241500Y-67033060D01*
+X105241500Y-67462999D01*
+X105224619Y-67525999D01*
+X105165476Y-67628438D01*
+X105165473Y-67628445D01*
+X105106457Y-67810072D01*
+X105086496Y-68000000D01*
+X105106457Y-68189927D01*
+X105136526Y-68282470D01*
+X105165473Y-68371556D01*
+X105165476Y-68371561D01*
+X105260958Y-68536941D01*
+X105260965Y-68536951D01*
+X105388744Y-68678864D01*
+X105388747Y-68678866D01*
+X105543248Y-68791118D01*
+X105717712Y-68868794D01*
+X105904513Y-68908500D01*
+X106095487Y-68908500D01*
+X106282288Y-68868794D01*
+X106456752Y-68791118D01*
+X106611253Y-68678866D01*
+X106739040Y-68536944D01*
+X106834527Y-68371556D01*
+X106893542Y-68189928D01*
+X106913504Y-68000000D01*
+X106893542Y-67810072D01*
+X106834527Y-67628444D01*
+X106775381Y-67525999D01*
+X106758500Y-67462999D01*
+X106758500Y-59536999D01*
+X106775380Y-59474000D01*
+X106834527Y-59371556D01*
+X106893542Y-59189928D01*
+X106913504Y-59000000D01*
+X106893542Y-58810072D01*
+X106834527Y-58628444D01*
+X106775381Y-58525999D01*
+X106758500Y-58462999D01*
+X106758500Y-50536999D01*
+X106775380Y-50474000D01*
+X106834527Y-50371556D01*
+X106893542Y-50189928D01*
+X106913504Y-50000000D01*
+X106893542Y-49810072D01*
+X106834527Y-49628444D01*
+X106775381Y-49525999D01*
+X106758500Y-49462999D01*
+X106758500Y-41536999D01*
+X106775380Y-41474000D01*
+X106834527Y-41371556D01*
+X106893542Y-41189928D01*
+X106913504Y-41000000D01*
+X106893542Y-40810072D01*
+X106834527Y-40628444D01*
+X106775381Y-40525999D01*
+X106758500Y-40462999D01*
+X106758500Y-32536999D01*
+X106775380Y-32474000D01*
+X106834527Y-32371556D01*
+X106893542Y-32189928D01*
+X106913504Y-32000000D01*
+X106893542Y-31810072D01*
+X106834527Y-31628444D01*
+X106775381Y-31525999D01*
+X106758500Y-31462999D01*
+X106758500Y-16536999D01*
+X106775380Y-16474000D01*
+X106834527Y-16371556D01*
+X106893542Y-16189928D01*
+X106913504Y-16000000D01*
+X106893542Y-15810072D01*
+X106834527Y-15628444D01*
+X106739040Y-15463056D01*
+X106739038Y-15463054D01*
+X106739034Y-15463048D01*
+X106611255Y-15321135D01*
+X106456752Y-15208882D01*
+X106282288Y-15131206D01*
+X106095487Y-15091500D01*
+X105904513Y-15091500D01*
+X105717711Y-15131206D01*
+X105543247Y-15208882D01*
+X105388744Y-15321135D01*
+X105260965Y-15463048D01*
+X105260958Y-15463058D01*
+X105165476Y-15628438D01*
+X105165473Y-15628445D01*
+X105106457Y-15810072D01*
+X105086496Y-16000000D01*
+X105106457Y-16189927D01*
+X105145317Y-16309524D01*
+X105165473Y-16371556D01*
+X105224619Y-16474000D01*
+X105241500Y-16536999D01*
+X105241500Y-21966938D01*
+X105221498Y-22035059D01*
+X105167842Y-22081552D01*
+X105102185Y-22090992D01*
+X105102060Y-22092190D01*
+X105095492Y-22091500D01*
+X105095487Y-22091500D01*
+X104904513Y-22091500D01*
+X104717711Y-22131206D01*
+X104543247Y-22208882D01*
+X104388744Y-22321135D01*
+X104260965Y-22463048D01*
+X104260958Y-22463058D01*
+X104165476Y-22628438D01*
+X104165473Y-22628445D01*
+X104106457Y-22810072D01*
+X104086496Y-23000000D01*
+X104106457Y-23189927D01*
+X104145317Y-23309524D01*
+X104165473Y-23371556D01*
+X104224619Y-23474000D01*
+X104241500Y-23536999D01*
+X104241500Y-29462999D01*
+X104224619Y-29525999D01*
+X104165476Y-29628438D01*
+X104165473Y-29628445D01*
+X104106457Y-29810072D01*
+X104086496Y-30000000D01*
+X104106457Y-30189927D01*
+X104145317Y-30309524D01*
+X104165473Y-30371556D01*
+X104224619Y-30474000D01*
+X104241500Y-30536999D01*
+X104241500Y-38462999D01*
+X104224619Y-38525999D01*
+X104165476Y-38628438D01*
+X104165473Y-38628445D01*
+X104106457Y-38810072D01*
+X104086496Y-39000000D01*
+X104106457Y-39189927D01*
+X104145317Y-39309524D01*
+X104165473Y-39371556D01*
+X104224619Y-39474000D01*
+X104241500Y-39536999D01*
+X104241500Y-47462999D01*
+X104224619Y-47525999D01*
+X104165476Y-47628438D01*
+X104165473Y-47628445D01*
+X104106457Y-47810072D01*
+X104086496Y-48000000D01*
+X104106457Y-48189927D01*
+X104145317Y-48309524D01*
+X104165473Y-48371556D01*
+X104224619Y-48474000D01*
+X104241500Y-48536999D01*
+X104241500Y-56462999D01*
+X104224619Y-56525999D01*
+X104165476Y-56628438D01*
+X104165473Y-56628445D01*
+X104106457Y-56810072D01*
+X104086496Y-57000000D01*
+X104106457Y-57189927D01*
+X104145317Y-57309524D01*
+X104165473Y-57371556D01*
+X104224619Y-57474000D01*
+X104241500Y-57536999D01*
+X104241500Y-65462999D01*
+X104224619Y-65525999D01*
+X104165476Y-65628438D01*
+X104165473Y-65628445D01*
+X104106457Y-65810072D01*
+X104086496Y-66000000D01*
+X100060500Y-66000000D01*
+X100060500Y-12004121D01*
+X100060770Y-11995880D01*
+X100061289Y-11987965D01*
+X100076553Y-11755074D01*
+X100078701Y-11738759D01*
+X100124977Y-11506111D01*
+X100129242Y-11490198D01*
+X100205486Y-11265590D01*
+X100211780Y-11250394D01*
+X100316698Y-11037641D01*
+X100324922Y-11023398D01*
+X100456710Y-10826162D01*
+X100466722Y-10813113D01*
+X100623134Y-10634759D01*
+X100634759Y-10623134D01*
+X100813113Y-10466722D01*
+X100826162Y-10456710D01*
+X101023398Y-10324922D01*
+X101037641Y-10316698D01*
+X101250394Y-10211780D01*
+X101265583Y-10205488D01*
+X101379893Y-10166685D01*
+X101420391Y-10160000D01*
+X110579609Y-10160000D01*
+X110620110Y-10166687D01*
+G37*
+G04 #@! TD.AperFunction*
+M02*
diff --git a/HARDWARE/GERBER/lightsticks_extender-B_Mask.gbr b/HARDWARE/GERBER/lightsticks_extender-B_Mask.gbr
new file mode 100644 (file)
index 0000000..eb5c683
--- /dev/null
@@ -0,0 +1,15 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1*
+G04 #@! TF.CreationDate,2024-04-05T17:11:52+02:00*
+G04 #@! TF.ProjectId,lightsticks_extender,6c696768-7473-4746-9963-6b735f657874,rev?*
+G04 #@! TF.SameCoordinates,Original*
+G04 #@! TF.FileFunction,Soldermask,Bot*
+G04 #@! TF.FilePolarity,Negative*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 7.0.11-7.0.11~ubuntu20.04.1) date 2024-04-05 17:11:52*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 APERTURE END LIST*
+M02*
diff --git a/HARDWARE/GERBER/lightsticks_extender-B_Paste.gbr b/HARDWARE/GERBER/lightsticks_extender-B_Paste.gbr
new file mode 100644 (file)
index 0000000..8d8f3c1
--- /dev/null
@@ -0,0 +1,15 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1*
+G04 #@! TF.CreationDate,2024-04-05T17:11:51+02:00*
+G04 #@! TF.ProjectId,lightsticks_extender,6c696768-7473-4746-9963-6b735f657874,rev?*
+G04 #@! TF.SameCoordinates,Original*
+G04 #@! TF.FileFunction,Paste,Bot*
+G04 #@! TF.FilePolarity,Positive*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 7.0.11-7.0.11~ubuntu20.04.1) date 2024-04-05 17:11:51*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 APERTURE END LIST*
+M02*
diff --git a/HARDWARE/GERBER/lightsticks_extender-B_Silkscreen.gbr b/HARDWARE/GERBER/lightsticks_extender-B_Silkscreen.gbr
new file mode 100644 (file)
index 0000000..067630c
--- /dev/null
@@ -0,0 +1,202 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1*
+G04 #@! TF.CreationDate,2024-04-05T17:11:51+02:00*
+G04 #@! TF.ProjectId,lightsticks_extender,6c696768-7473-4746-9963-6b735f657874,rev?*
+G04 #@! TF.SameCoordinates,Original*
+G04 #@! TF.FileFunction,Legend,Bot*
+G04 #@! TF.FilePolarity,Positive*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 7.0.11-7.0.11~ubuntu20.04.1) date 2024-04-05 17:11:51*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 APERTURE END LIST*
+G36*
+X105834040Y-102419652D02*
+G01*
+X105993195Y-102579004D01*
+X106053649Y-102803659D01*
+X105165747Y-102803659D01*
+X105226094Y-102579004D01*
+X105385050Y-102419652D01*
+X105609491Y-102359093D01*
+X105834040Y-102419652D01*
+G37*
+G36*
+X106262247Y-100810591D02*
+G01*
+X106518879Y-100841853D01*
+X106768844Y-100892963D01*
+X107011319Y-100963096D01*
+X107245480Y-101051430D01*
+X107470503Y-101157139D01*
+X107685564Y-101279401D01*
+X107889839Y-101417391D01*
+X108082505Y-101570286D01*
+X108262737Y-101737261D01*
+X108429713Y-101917494D01*
+X108582608Y-102110160D01*
+X108720598Y-102314436D01*
+X108842860Y-102529498D01*
+X108948569Y-102754521D01*
+X109036903Y-102988683D01*
+X109107036Y-103231159D01*
+X109158146Y-103481125D01*
+X109189409Y-103737758D01*
+X109200000Y-104000235D01*
+X109189377Y-104262683D01*
+X109158086Y-104519287D01*
+X109106953Y-104769223D01*
+X109036799Y-105011668D01*
+X108948450Y-105245799D01*
+X108842728Y-105470790D01*
+X108720458Y-105685821D01*
+X108582462Y-105890065D01*
+X108429565Y-106082702D01*
+X108262591Y-106262905D01*
+X108082362Y-106429853D01*
+X107889703Y-106582722D01*
+X107685437Y-106720688D01*
+X107470388Y-106842928D01*
+X107245379Y-106948618D01*
+X107011235Y-107036935D01*
+X106768778Y-107107055D01*
+X106518833Y-107158155D01*
+X106262223Y-107189411D01*
+X105999772Y-107200000D01*
+X105737346Y-107189378D01*
+X105480763Y-107158094D01*
+X105230846Y-107106970D01*
+X104988419Y-107036830D01*
+X104754304Y-106948497D01*
+X104529326Y-106842794D01*
+X104314307Y-106720546D01*
+X104110071Y-106582575D01*
+X103917442Y-106429704D01*
+X103737242Y-106262757D01*
+X103570295Y-106082558D01*
+X103417424Y-105889929D01*
+X103279452Y-105685694D01*
+X103157204Y-105470675D01*
+X103051502Y-105245698D01*
+X102963169Y-105011584D01*
+X102893029Y-104769158D01*
+X102888048Y-104744811D01*
+X103770151Y-104744811D01*
+X103803375Y-104953214D01*
+X103896052Y-105134103D01*
+X104037688Y-105276681D01*
+X104217793Y-105370146D01*
+X104425873Y-105403701D01*
+X104689254Y-105403701D01*
+X104689254Y-105169035D01*
+X104471439Y-105169035D01*
+X104237994Y-105106069D01*
+X104072349Y-104940427D01*
+X104009382Y-104706987D01*
+X104009382Y-104671040D01*
+X104009370Y-103556395D01*
+X104009370Y-103483541D01*
+X104072336Y-103250686D01*
+X104237981Y-103086139D01*
+X104471426Y-103023765D01*
+X106436311Y-103023765D01*
+X106436311Y-103556448D01*
+X106436779Y-104301931D01*
+X106393941Y-104337344D01*
+X106349739Y-104328811D01*
+X105200518Y-104328811D01*
+X105084963Y-104376619D01*
+X105037385Y-104492395D01*
+X105084976Y-104608187D01*
+X105200518Y-104655979D01*
+X106171113Y-104655979D01*
+X106121454Y-104821347D01*
+X106104595Y-104993195D01*
+X106122825Y-105169077D01*
+X104710223Y-105169077D01*
+X104710223Y-105403755D01*
+X106197556Y-105403755D01*
+X106338451Y-105607149D01*
+X106525945Y-105761575D01*
+X106748146Y-105859666D01*
+X106993159Y-105894059D01*
+X107230349Y-105862279D01*
+X107443503Y-105772433D01*
+X107624102Y-105633016D01*
+X107763627Y-105452523D01*
+X107853558Y-105239451D01*
+X107885377Y-105002293D01*
+X107867767Y-104828243D01*
+X107816566Y-104660992D01*
+X108031650Y-104552016D01*
+X108176625Y-104366164D01*
+X108229867Y-104131051D01*
+X108197738Y-103947108D01*
+X108107254Y-103786674D01*
+X107966485Y-103663979D01*
+X108115832Y-103474515D01*
+X108169263Y-103239275D01*
+X108129032Y-103033501D01*
+X108018960Y-102862984D01*
+X107854513Y-102744023D01*
+X107651156Y-102692917D01*
+X107534930Y-102500490D01*
+X107355275Y-102372868D01*
+X107135329Y-102326560D01*
+X106938148Y-102363549D01*
+X106772180Y-102465205D01*
+X106652108Y-102618406D01*
+X106592617Y-102810027D01*
+X106492371Y-102810027D01*
+X106461311Y-102578275D01*
+X106373628Y-102370114D01*
+X106237567Y-102193813D01*
+X106061374Y-102057644D01*
+X105853293Y-101969878D01*
+X105621570Y-101938784D01*
+X105389848Y-101969881D01*
+X105181768Y-102057649D01*
+X105005574Y-102193817D01*
+X104869513Y-102370116D01*
+X104781829Y-102578276D01*
+X104750769Y-102810027D01*
+X104425873Y-102810027D01*
+X104217793Y-102843584D01*
+X104037688Y-102937056D01*
+X103896052Y-103079641D01*
+X103803375Y-103260539D01*
+X103770151Y-103468949D01*
+X103770151Y-103521323D01*
+X103770151Y-103539669D01*
+X103770151Y-104709397D01*
+X103770151Y-104726677D01*
+X103770151Y-104744811D01*
+X102888048Y-104744811D01*
+X102841905Y-104519242D01*
+X102810621Y-104262660D01*
+X102800000Y-104000235D01*
+X102810589Y-103737783D01*
+X102841846Y-103481173D01*
+X102892946Y-103231227D01*
+X102963066Y-102988771D01*
+X103051383Y-102754626D01*
+X103157073Y-102529617D01*
+X103279312Y-102314568D01*
+X103417278Y-102110302D01*
+X103570147Y-101917642D01*
+X103737095Y-101737413D01*
+X103917299Y-101570438D01*
+X104109936Y-101417541D01*
+X104314181Y-101279546D01*
+X104529211Y-101157275D01*
+X104754204Y-101051553D01*
+X104988334Y-100963203D01*
+X105230780Y-100893049D01*
+X105480717Y-100841915D01*
+X105737322Y-100810624D01*
+X105999772Y-100800000D01*
+X106262247Y-100810591D01*
+G37*
+M02*
diff --git a/HARDWARE/GERBER/lightsticks_extender-Edge_Cuts.gbr b/HARDWARE/GERBER/lightsticks_extender-Edge_Cuts.gbr
new file mode 100644 (file)
index 0000000..2bb04de
--- /dev/null
@@ -0,0 +1,46 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1*
+G04 #@! TF.CreationDate,2024-04-05T17:11:52+02:00*
+G04 #@! TF.ProjectId,lightsticks_extender,6c696768-7473-4746-9963-6b735f657874,rev?*
+G04 #@! TF.SameCoordinates,Original*
+G04 #@! TF.FileFunction,Profile,NP*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 7.0.11-7.0.11~ubuntu20.04.1) date 2024-04-05 17:11:52*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 #@! TA.AperFunction,Profile*
+%ADD10C,0.120000*%
+G04 #@! TD*
+G04 APERTURE END LIST*
+D10*
+X102000000Y-110000000D02*
+X110000000Y-110000000D01*
+X110000000Y-110000000D02*
+G75*
+G03*
+X112000000Y-108000000I0J2000000D01*
+G01*
+X100000000Y-108000000D02*
+G75*
+G03*
+X102000000Y-110000000I2000000J0D01*
+G01*
+X102000000Y-10000000D02*
+X110000000Y-10000000D01*
+X102000000Y-10000000D02*
+G75*
+G03*
+X100000000Y-12000000I0J-2000000D01*
+G01*
+X112000000Y-12000000D02*
+G75*
+G03*
+X110000000Y-10000000I-2000000J0D01*
+G01*
+X112000000Y-12000000D02*
+X112000000Y-108000000D01*
+X100000000Y-12000000D02*
+X100000000Y-108000000D01*
+M02*
diff --git a/HARDWARE/GERBER/lightsticks_extender-F_Cu.gbr b/HARDWARE/GERBER/lightsticks_extender-F_Cu.gbr
new file mode 100644 (file)
index 0000000..51ef8f7
--- /dev/null
@@ -0,0 +1,2492 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1*
+G04 #@! TF.CreationDate,2024-04-05T17:11:51+02:00*
+G04 #@! TF.ProjectId,lightsticks_extender,6c696768-7473-4746-9963-6b735f657874,rev?*
+G04 #@! TF.SameCoordinates,Original*
+G04 #@! TF.FileFunction,Copper,L1,Top*
+G04 #@! TF.FilePolarity,Positive*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 7.0.11-7.0.11~ubuntu20.04.1) date 2024-04-05 17:11:51*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 Aperture macros list*
+%AMRoundRect*
+0 Rectangle with rounded corners*
+0 $1 Rounding radius*
+0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
+0 Add a 4 corners polygon primitive as box body*
+4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
+0 Add four circle primitives for the rounded corners*
+1,1,$1+$1,$2,$3*
+1,1,$1+$1,$4,$5*
+1,1,$1+$1,$6,$7*
+1,1,$1+$1,$8,$9*
+0 Add four rect primitives between the rounded corners*
+20,1,$1+$1,$2,$3,$4,$5,0*
+20,1,$1+$1,$4,$5,$6,$7,0*
+20,1,$1+$1,$6,$7,$8,$9,0*
+20,1,$1+$1,$8,$9,$2,$3,0*%
+G04 Aperture macros list end*
+G04 #@! TA.AperFunction,SMDPad,CuDef*
+%ADD10RoundRect,0.249999X1.425001X-0.512501X1.425001X0.512501X-1.425001X0.512501X-1.425001X-0.512501X0*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,SMDPad,CuDef*
+%ADD11RoundRect,0.250000X-0.325000X-0.450000X0.325000X-0.450000X0.325000X0.450000X-0.325000X0.450000X0*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,SMDPad,CuDef*
+%ADD12R,2.580000X1.000000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,ViaPad*
+%ADD13C,0.800000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,Conductor*
+%ADD14C,0.500000*%
+G04 #@! TD*
+G04 #@! TA.AperFunction,Conductor*
+%ADD15C,0.250000*%
+G04 #@! TD*
+G04 APERTURE END LIST*
+D10*
+X106000000Y-91012500D03*
+X106000000Y-96987500D03*
+X106000000Y-33987500D03*
+X106000000Y-28012500D03*
+X106000000Y-37012500D03*
+X106000000Y-42987500D03*
+X106000000Y-51987500D03*
+X106000000Y-46012500D03*
+X106000000Y-55012500D03*
+X106000000Y-60987500D03*
+X106000000Y-69987500D03*
+X106000000Y-64012500D03*
+X106000000Y-100012500D03*
+X106000000Y-105987500D03*
+X106000000Y-78987500D03*
+X106000000Y-73012500D03*
+X106000000Y-87987500D03*
+X106000000Y-82012500D03*
+D11*
+X104975000Y-25000000D03*
+X107025000Y-25000000D03*
+D12*
+X103915000Y-13100000D03*
+X108085000Y-13100000D03*
+X103915000Y-15100000D03*
+X108085000Y-15100000D03*
+X103915000Y-17100000D03*
+X108085000Y-17100000D03*
+X103915000Y-19100000D03*
+X108085000Y-19100000D03*
+X103915000Y-21100000D03*
+X108085000Y-21100000D03*
+D13*
+X105000000Y-23000000D03*
+X105000000Y-30000000D03*
+X105000000Y-39000000D03*
+X105000000Y-48000000D03*
+X105000000Y-57000000D03*
+X105000000Y-66000000D03*
+X106000000Y-16000000D03*
+X106000000Y-32000000D03*
+X106000000Y-41000000D03*
+X106000000Y-50000000D03*
+X106000000Y-59000000D03*
+X106000000Y-68000000D03*
+D14*
+X104975000Y-25000000D02*
+X104975000Y-23025000D01*
+D15*
+X104975000Y-23025000D02*
+X105000000Y-23000000D01*
+X105000000Y-29012500D02*
+X106000000Y-28012500D01*
+X105000000Y-30000000D02*
+X105000000Y-29012500D01*
+X105000000Y-38012500D02*
+X106000000Y-37012500D01*
+X105000000Y-39000000D02*
+X105000000Y-38012500D01*
+X105000000Y-47012500D02*
+X106000000Y-46012500D01*
+X105000000Y-48000000D02*
+X105000000Y-47012500D01*
+X105000000Y-56012500D02*
+X106000000Y-55012500D01*
+X105000000Y-57000000D02*
+X105000000Y-56012500D01*
+X105000000Y-65012500D02*
+X106000000Y-64012500D01*
+X105000000Y-66000000D02*
+X105000000Y-65012500D01*
+D14*
+X105166790Y-72179290D02*
+X106000000Y-73012500D01*
+X103874990Y-70887490D02*
+X105166790Y-72179290D01*
+X103874990Y-67125010D02*
+X103874990Y-70887490D01*
+X105000000Y-66000000D02*
+X103874990Y-67125010D01*
+X105166790Y-81179290D02*
+X106000000Y-82012500D01*
+X103874990Y-79887490D02*
+X105166790Y-81179290D01*
+X104225000Y-73012500D02*
+X103874990Y-73362510D01*
+X103874990Y-73362510D02*
+X103874990Y-79887490D01*
+X106000000Y-73012500D02*
+X104225000Y-73012500D01*
+X105166790Y-90179290D02*
+X106000000Y-91012500D01*
+X103874990Y-88887490D02*
+X105166790Y-90179290D01*
+X103874990Y-84137510D02*
+X103874990Y-88887490D01*
+X106000000Y-82012500D02*
+X103874990Y-84137510D01*
+X105166790Y-99179290D02*
+X106000000Y-100012500D01*
+X103874990Y-97887490D02*
+X105166790Y-99179290D01*
+X103874990Y-91362510D02*
+X103874990Y-97887490D01*
+X104225000Y-91012500D02*
+X103874990Y-91362510D01*
+X106000000Y-91012500D02*
+X104225000Y-91012500D01*
+D15*
+X106000000Y-32000000D02*
+X106000000Y-33987500D01*
+X106000000Y-41000000D02*
+X106000000Y-42987500D01*
+X106000000Y-50000000D02*
+X106000000Y-51987500D01*
+X106000000Y-59000000D02*
+X106000000Y-60987500D01*
+X106000000Y-68000000D02*
+X106000000Y-69987500D01*
+D14*
+X106833210Y-97820710D02*
+X106000000Y-96987500D01*
+X108500000Y-99487500D02*
+X106833210Y-97820710D01*
+X108500000Y-103487500D02*
+X108500000Y-99487500D01*
+X106000000Y-105987500D02*
+X108500000Y-103487500D01*
+X106833210Y-79820710D02*
+X106000000Y-78987500D01*
+X108125010Y-81112510D02*
+X106833210Y-79820710D01*
+X108125010Y-85862490D02*
+X108125010Y-81112510D01*
+X106000000Y-87987500D02*
+X108125010Y-85862490D01*
+X106833210Y-96154290D02*
+X106000000Y-96987500D01*
+X108125010Y-94862490D02*
+X106833210Y-96154290D01*
+X108125010Y-90112510D02*
+X108125010Y-94862490D01*
+X106000000Y-87987500D02*
+X108125010Y-90112510D01*
+X106833210Y-78154290D02*
+X106000000Y-78987500D01*
+X108125010Y-72112510D02*
+X108125010Y-76862490D01*
+X108125010Y-76862490D02*
+X106833210Y-78154290D01*
+X106000000Y-69987500D02*
+X108125010Y-72112510D01*
+D15*
+X108085000Y-17100000D02*
+X107295000Y-17100000D01*
+D14*
+X107100000Y-17100000D02*
+X108085000Y-17100000D01*
+X106000000Y-16000000D02*
+X107100000Y-17100000D01*
+D15*
+X103915000Y-19100000D02*
+X103915000Y-21100000D01*
+X108085000Y-19100000D02*
+X108085000Y-21100000D01*
+D14*
+X106000000Y-23975000D02*
+X107025000Y-25000000D01*
+X106000000Y-18395000D02*
+X106000000Y-23975000D01*
+X104705000Y-17100000D02*
+X103915000Y-17100000D01*
+X106000000Y-18395000D02*
+X104705000Y-17100000D01*
+G04 #@! TA.AperFunction,NonConductor*
+G36*
+X110620110Y-10166687D02*
+G01*
+X110734403Y-10205484D01*
+X110749610Y-10211783D01*
+X110962351Y-10316695D01*
+X110976608Y-10324926D01*
+X111173827Y-10456703D01*
+X111186893Y-10466728D01*
+X111365232Y-10623127D01*
+X111376872Y-10634767D01*
+X111533269Y-10813104D01*
+X111543296Y-10826173D01*
+X111675067Y-11023384D01*
+X111683308Y-11037656D01*
+X111760799Y-11194791D01*
+X111773783Y-11248925D01*
+X111939490Y-24339710D01*
+X111939500Y-24341305D01*
+X111939500Y-107995878D01*
+X111939230Y-108004119D01*
+X111923447Y-108244913D01*
+X111921296Y-108261254D01*
+X111875023Y-108493882D01*
+X111870757Y-108509801D01*
+X111794519Y-108734393D01*
+X111788212Y-108749620D01*
+X111683309Y-108962342D01*
+X111675068Y-108976616D01*
+X111543296Y-109173827D01*
+X111533263Y-109186903D01*
+X111376879Y-109365225D01*
+X111365225Y-109376879D01*
+X111186903Y-109533263D01*
+X111173827Y-109543296D01*
+X110976616Y-109675068D01*
+X110962342Y-109683309D01*
+X110749620Y-109788212D01*
+X110734393Y-109794519D01*
+X110509801Y-109870757D01*
+X110493882Y-109875023D01*
+X110261254Y-109921296D01*
+X110244913Y-109923447D01*
+X110004119Y-109939230D01*
+X109995878Y-109939500D01*
+X102004122Y-109939500D01*
+X101995881Y-109939230D01*
+X101755086Y-109923447D01*
+X101738745Y-109921296D01*
+X101506117Y-109875023D01*
+X101490198Y-109870757D01*
+X101265606Y-109794519D01*
+X101250379Y-109788212D01*
+X101037653Y-109683307D01*
+X101023386Y-109675070D01*
+X100826172Y-109543296D01*
+X100813104Y-109533269D01*
+X100634767Y-109376872D01*
+X100623127Y-109365232D01*
+X100466728Y-109186893D01*
+X100456703Y-109173827D01*
+X100324926Y-108976608D01*
+X100316695Y-108962351D01*
+X100211783Y-108749610D01*
+X100205484Y-108734403D01*
+X100129242Y-108509801D01*
+X100124976Y-108493882D01*
+X100106868Y-108402846D01*
+X100078701Y-108261242D01*
+X100076553Y-108244923D01*
+X100060770Y-108004119D01*
+X100060500Y-107995878D01*
+X100060500Y-97865285D01*
+X103111649Y-97865285D01*
+X103116010Y-97915123D01*
+X103116490Y-97926106D01*
+X103116490Y-97931675D01*
+X103120125Y-97962779D01*
+X103120497Y-97966422D01*
+X103127101Y-98041908D01*
+X103128586Y-98049096D01*
+X103128521Y-98049109D01*
+X103130155Y-98056479D01*
+X103130219Y-98056465D01*
+X103131911Y-98063606D01*
+X103157836Y-98134832D01*
+X103159039Y-98138294D01*
+X103182874Y-98210225D01*
+X103185977Y-98216878D01*
+X103185916Y-98216906D01*
+X103189201Y-98223692D01*
+X103189260Y-98223663D01*
+X103192553Y-98230220D01*
+X103234222Y-98293574D01*
+X103236161Y-98296617D01*
+X103263209Y-98340468D01*
+X103275962Y-98361144D01*
+X103280512Y-98366898D01*
+X103280458Y-98366940D01*
+X103285218Y-98372782D01*
+X103285269Y-98372740D01*
+X103289987Y-98378362D01*
+X103345145Y-98430401D01*
+X103347774Y-98432955D01*
+X103892244Y-98977425D01*
+X103926270Y-99039737D01*
+X103921205Y-99110552D01*
+X103910390Y-99132666D01*
+X103882888Y-99177253D01*
+X103882887Y-99177255D01*
+X103827113Y-99345572D01*
+X103827112Y-99345578D01*
+X103816500Y-99449445D01*
+X103816500Y-100575554D01*
+X103816499Y-100575554D01*
+X103827112Y-100679421D01*
+X103827113Y-100679427D01*
+X103882885Y-100847739D01*
+X103975970Y-100998652D01*
+X103975975Y-100998658D01*
+X104101341Y-101124024D01*
+X104101347Y-101124029D01*
+X104101348Y-101124030D01*
+X104252261Y-101217115D01*
+X104420573Y-101272887D01*
+X104460527Y-101276968D01*
+X104524446Y-101283500D01*
+X104524454Y-101283500D01*
+X107475554Y-101283500D01*
+X107571459Y-101273701D01*
+X107579427Y-101272887D01*
+X107579428Y-101272886D01*
+X107586154Y-101271447D01*
+X107586636Y-101273701D01*
+X107646791Y-101271617D01*
+X107707810Y-101307910D01*
+X107739522Y-101371430D01*
+X107741500Y-101393670D01*
+X107741500Y-103121129D01*
+X107721498Y-103189250D01*
+X107704595Y-103210224D01*
+X106235224Y-104679595D01*
+X106172912Y-104713621D01*
+X106146129Y-104716500D01*
+X104524446Y-104716500D01*
+X104420578Y-104727112D01*
+X104420571Y-104727113D01*
+X104252261Y-104782885D01*
+X104101347Y-104875970D01*
+X104101341Y-104875975D01*
+X103975975Y-105001341D01*
+X103975970Y-105001347D01*
+X103882885Y-105152261D01*
+X103827113Y-105320571D01*
+X103827112Y-105320578D01*
+X103816500Y-105424445D01*
+X103816500Y-106550554D01*
+X103816499Y-106550554D01*
+X103827112Y-106654421D01*
+X103827113Y-106654427D01*
+X103882885Y-106822739D01*
+X103975970Y-106973652D01*
+X103975975Y-106973658D01*
+X104101341Y-107099024D01*
+X104101347Y-107099029D01*
+X104101348Y-107099030D01*
+X104252261Y-107192115D01*
+X104420573Y-107247887D01*
+X104460527Y-107251968D01*
+X104524446Y-107258500D01*
+X104524454Y-107258500D01*
+X107475554Y-107258500D01*
+X107534906Y-107252435D01*
+X107579427Y-107247887D01*
+X107747739Y-107192115D01*
+X107898652Y-107099030D01*
+X108024030Y-106973652D01*
+X108117115Y-106822739D01*
+X108172887Y-106654427D01*
+X108177435Y-106609906D01*
+X108183500Y-106550554D01*
+X108183500Y-105424445D01*
+X108176677Y-105357673D01*
+X108172887Y-105320573D01*
+X108117115Y-105152261D01*
+X108089608Y-105107666D01*
+X108070871Y-105039188D01*
+X108092130Y-104971450D01*
+X108107749Y-104952430D01*
+X108990778Y-104069401D01*
+X109004617Y-104057441D01*
+X109024058Y-104042969D01*
+X109056227Y-104004630D01*
+X109063645Y-103996534D01*
+X109067581Y-103992600D01*
+X109087025Y-103968007D01*
+X109089265Y-103965257D01*
+X109138032Y-103907140D01*
+X109138033Y-103907136D01*
+X109138036Y-103907134D01*
+X109142070Y-103901002D01*
+X109142127Y-103901039D01*
+X109146171Y-103894691D01*
+X109146112Y-103894655D01*
+X109149965Y-103888407D01*
+X109149967Y-103888405D01*
+X109182035Y-103819632D01*
+X109183557Y-103816489D01*
+X109217609Y-103748688D01*
+X109217609Y-103748684D01*
+X109217611Y-103748682D01*
+X109220119Y-103741791D01*
+X109220184Y-103741814D01*
+X109222658Y-103734697D01*
+X109222594Y-103734676D01*
+X109224903Y-103727707D01*
+X109240238Y-103653436D01*
+X109241022Y-103649897D01*
+X109258500Y-103576156D01*
+X109258500Y-103576155D01*
+X109259352Y-103568868D01*
+X109259419Y-103568875D01*
+X109260185Y-103561377D01*
+X109260119Y-103561372D01*
+X109260757Y-103554065D01*
+X109260759Y-103554058D01*
+X109258553Y-103478240D01*
+X109258500Y-103474576D01*
+X109258500Y-99551935D01*
+X109259831Y-99533672D01*
+X109263340Y-99509716D01*
+X109263341Y-99509711D01*
+X109258979Y-99459852D01*
+X109258500Y-99448872D01*
+X109258500Y-99443313D01*
+X109254866Y-99412234D01*
+X109254496Y-99408622D01*
+X109247887Y-99333074D01*
+X109247885Y-99333070D01*
+X109246403Y-99325888D01*
+X109246469Y-99325874D01*
+X109244837Y-99318512D01*
+X109244772Y-99318528D01*
+X109243081Y-99311393D01*
+X109243079Y-99311387D01*
+X109217139Y-99240120D01*
+X109215952Y-99236703D01*
+X109192114Y-99164762D01*
+X109192109Y-99164755D01*
+X109189012Y-99158111D01*
+X109189074Y-99158081D01*
+X109185788Y-99151295D01*
+X109185728Y-99151326D01*
+X109182433Y-99144765D01*
+X109140782Y-99081439D01*
+X109138812Y-99078346D01*
+X109099032Y-99013851D01*
+X109094478Y-99008092D01*
+X109094531Y-99008049D01*
+X109089766Y-99002200D01*
+X109089715Y-99002244D01*
+X109084998Y-98996622D01*
+X109029826Y-98944570D01*
+X109027197Y-98942016D01*
+X108107754Y-98022573D01*
+X108073728Y-97960261D01*
+X108078793Y-97889446D01*
+X108089603Y-97867341D01*
+X108117115Y-97822739D01*
+X108172887Y-97654427D01*
+X108177435Y-97609906D01*
+X108183500Y-97550554D01*
+X108183500Y-96424445D01*
+X108176677Y-96357673D01*
+X108172887Y-96320573D01*
+X108117115Y-96152261D01*
+X108089608Y-96107666D01*
+X108070871Y-96039188D01*
+X108092130Y-95971450D01*
+X108107749Y-95952430D01*
+X108615788Y-95444391D01*
+X108629627Y-95432431D01*
+X108649068Y-95417959D01*
+X108681237Y-95379620D01*
+X108688655Y-95371524D01*
+X108692590Y-95367591D01*
+X108712054Y-95342973D01*
+X108714251Y-95340275D01*
+X108763042Y-95282130D01*
+X108763044Y-95282124D01*
+X108763047Y-95282122D01*
+X108767076Y-95275998D01*
+X108767132Y-95276035D01*
+X108771181Y-95269680D01*
+X108771123Y-95269645D01*
+X108774973Y-95263402D01*
+X108774974Y-95263399D01*
+X108774977Y-95263396D01*
+X108807028Y-95194660D01*
+X108808580Y-95191453D01*
+X108842619Y-95123678D01*
+X108842620Y-95123671D01*
+X108845129Y-95116781D01*
+X108845193Y-95116804D01*
+X108847668Y-95109683D01*
+X108847603Y-95109662D01*
+X108849909Y-95102700D01*
+X108849912Y-95102696D01*
+X108865239Y-95028462D01*
+X108866031Y-95024889D01*
+X108883510Y-94951145D01*
+X108884362Y-94943858D01*
+X108884428Y-94943865D01*
+X108885194Y-94936366D01*
+X108885128Y-94936361D01*
+X108885766Y-94929056D01*
+X108885768Y-94929048D01*
+X108883563Y-94853250D01*
+X108883510Y-94849587D01*
+X108883510Y-90176951D01*
+X108884840Y-90158692D01*
+X108885950Y-90151110D01*
+X108888351Y-90134721D01*
+X108883989Y-90084862D01*
+X108883510Y-90073882D01*
+X108883510Y-90068323D01*
+X108879876Y-90037244D01*
+X108879506Y-90033632D01*
+X108872897Y-89958084D01*
+X108872895Y-89958080D01*
+X108871413Y-89950898D01*
+X108871479Y-89950884D01*
+X108869847Y-89943522D01*
+X108869782Y-89943538D01*
+X108868091Y-89936403D01*
+X108868089Y-89936397D01*
+X108842149Y-89865130D01*
+X108840962Y-89861713D01*
+X108817124Y-89789772D01*
+X108817119Y-89789765D01*
+X108814022Y-89783121D01*
+X108814084Y-89783091D01*
+X108810798Y-89776305D01*
+X108810738Y-89776336D01*
+X108807443Y-89769775D01*
+X108765792Y-89706449D01*
+X108763822Y-89703356D01*
+X108724042Y-89638861D01*
+X108719488Y-89633102D01*
+X108719541Y-89633059D01*
+X108714776Y-89627210D01*
+X108714725Y-89627254D01*
+X108710008Y-89621632D01*
+X108654836Y-89569580D01*
+X108652207Y-89567026D01*
+X108107754Y-89022573D01*
+X108073728Y-88960261D01*
+X108078793Y-88889446D01*
+X108089603Y-88867341D01*
+X108117115Y-88822739D01*
+X108172887Y-88654427D01*
+X108177435Y-88609906D01*
+X108183500Y-88550554D01*
+X108183500Y-87424445D01*
+X108176677Y-87357673D01*
+X108172887Y-87320573D01*
+X108117115Y-87152261D01*
+X108102803Y-87129058D01*
+X108089609Y-87107666D01*
+X108070872Y-87039187D01*
+X108092132Y-86971448D01*
+X108107749Y-86952429D01*
+X108615787Y-86444391D01*
+X108629626Y-86432431D01*
+X108649068Y-86417959D01*
+X108681243Y-86379613D01*
+X108688661Y-86371517D01*
+X108692590Y-86367590D01*
+X108712054Y-86342971D01*
+X108714261Y-86340263D01*
+X108763042Y-86282130D01*
+X108763045Y-86282123D01*
+X108767075Y-86275998D01*
+X108767132Y-86276035D01*
+X108771180Y-86269681D01*
+X108771122Y-86269645D01*
+X108774975Y-86263397D01*
+X108774977Y-86263395D01*
+X108807045Y-86194622D01*
+X108808567Y-86191479D01*
+X108842619Y-86123678D01*
+X108842619Y-86123674D01*
+X108842621Y-86123672D01*
+X108845129Y-86116781D01*
+X108845194Y-86116804D01*
+X108847668Y-86109687D01*
+X108847604Y-86109666D01*
+X108849913Y-86102697D01*
+X108865248Y-86028426D01*
+X108866032Y-86024887D01*
+X108883510Y-85951146D01*
+X108883510Y-85951145D01*
+X108884362Y-85943858D01*
+X108884429Y-85943865D01*
+X108885195Y-85936367D01*
+X108885129Y-85936362D01*
+X108885767Y-85929055D01*
+X108885769Y-85929048D01*
+X108883563Y-85853230D01*
+X108883510Y-85849566D01*
+X108883510Y-81176945D01*
+X108884841Y-81158682D01*
+X108888350Y-81134726D01*
+X108888351Y-81134721D01*
+X108883989Y-81084861D01*
+X108883510Y-81073881D01*
+X108883510Y-81068335D01*
+X108883510Y-81068330D01*
+X108879873Y-81037222D01*
+X108879502Y-81033590D01*
+X108872897Y-80958083D01*
+X108872896Y-80958079D01*
+X108871413Y-80950897D01*
+X108871479Y-80950883D01*
+X108869849Y-80943529D01*
+X108869783Y-80943545D01*
+X108868089Y-80936400D01*
+X108868089Y-80936397D01*
+X108842132Y-80865082D01*
+X108840983Y-80861774D01*
+X108817124Y-80789772D01*
+X108817123Y-80789770D01*
+X108814024Y-80783124D01*
+X108814085Y-80783095D01*
+X108810798Y-80776305D01*
+X108810738Y-80776336D01*
+X108807443Y-80769775D01*
+X108765792Y-80706449D01*
+X108763822Y-80703356D01*
+X108724042Y-80638861D01*
+X108719488Y-80633102D01*
+X108719541Y-80633059D01*
+X108714776Y-80627210D01*
+X108714725Y-80627254D01*
+X108710008Y-80621632D01*
+X108654836Y-80569580D01*
+X108652207Y-80567026D01*
+X108107754Y-80022573D01*
+X108073728Y-79960261D01*
+X108078793Y-79889446D01*
+X108089603Y-79867341D01*
+X108117115Y-79822739D01*
+X108172887Y-79654427D01*
+X108177435Y-79609906D01*
+X108183500Y-79550554D01*
+X108183500Y-78424445D01*
+X108176677Y-78357673D01*
+X108172887Y-78320573D01*
+X108117115Y-78152261D01*
+X108089608Y-78107666D01*
+X108070871Y-78039188D01*
+X108092130Y-77971450D01*
+X108107749Y-77952430D01*
+X108615788Y-77444391D01*
+X108629627Y-77432431D01*
+X108649068Y-77417959D01*
+X108681237Y-77379620D01*
+X108688655Y-77371524D01*
+X108692590Y-77367591D01*
+X108712054Y-77342973D01*
+X108714251Y-77340275D01*
+X108763042Y-77282130D01*
+X108763044Y-77282124D01*
+X108763047Y-77282122D01*
+X108767076Y-77275998D01*
+X108767132Y-77276035D01*
+X108771181Y-77269680D01*
+X108771123Y-77269645D01*
+X108774973Y-77263402D01*
+X108774974Y-77263399D01*
+X108774977Y-77263396D01*
+X108807028Y-77194660D01*
+X108808580Y-77191453D01*
+X108842619Y-77123678D01*
+X108842620Y-77123671D01*
+X108845129Y-77116781D01*
+X108845193Y-77116804D01*
+X108847668Y-77109683D01*
+X108847603Y-77109662D01*
+X108849909Y-77102700D01*
+X108849912Y-77102696D01*
+X108865239Y-77028462D01*
+X108866031Y-77024889D01*
+X108883510Y-76951145D01*
+X108884362Y-76943858D01*
+X108884428Y-76943865D01*
+X108885194Y-76936366D01*
+X108885128Y-76936361D01*
+X108885766Y-76929056D01*
+X108885768Y-76929048D01*
+X108883563Y-76853250D01*
+X108883510Y-76849587D01*
+X108883510Y-72176951D01*
+X108884840Y-72158692D01*
+X108885950Y-72151110D01*
+X108888351Y-72134721D01*
+X108883989Y-72084862D01*
+X108883510Y-72073882D01*
+X108883510Y-72068323D01*
+X108879876Y-72037244D01*
+X108879506Y-72033632D01*
+X108872897Y-71958084D01*
+X108872895Y-71958080D01*
+X108871413Y-71950898D01*
+X108871479Y-71950884D01*
+X108869847Y-71943522D01*
+X108869782Y-71943538D01*
+X108868091Y-71936403D01*
+X108868089Y-71936397D01*
+X108842149Y-71865130D01*
+X108840962Y-71861713D01*
+X108817124Y-71789772D01*
+X108817119Y-71789765D01*
+X108814022Y-71783121D01*
+X108814084Y-71783091D01*
+X108810798Y-71776305D01*
+X108810738Y-71776336D01*
+X108807443Y-71769775D01*
+X108765792Y-71706449D01*
+X108763822Y-71703356D01*
+X108724042Y-71638861D01*
+X108719488Y-71633102D01*
+X108719541Y-71633059D01*
+X108714776Y-71627210D01*
+X108714725Y-71627254D01*
+X108710008Y-71621632D01*
+X108654836Y-71569580D01*
+X108652207Y-71567026D01*
+X108107754Y-71022573D01*
+X108073728Y-70960261D01*
+X108078793Y-70889446D01*
+X108089603Y-70867341D01*
+X108117115Y-70822739D01*
+X108172887Y-70654427D01*
+X108177435Y-70609906D01*
+X108183500Y-70550554D01*
+X108183500Y-69424445D01*
+X108176677Y-69357673D01*
+X108172887Y-69320573D01*
+X108117115Y-69152261D01*
+X108024030Y-69001348D01*
+X108024029Y-69001347D01*
+X108024024Y-69001341D01*
+X107898658Y-68875975D01*
+X107898652Y-68875970D01*
+X107747739Y-68782885D01*
+X107663583Y-68754999D01*
+X107579428Y-68727113D01*
+X107579421Y-68727112D01*
+X107475554Y-68716500D01*
+X107475546Y-68716500D01*
+X106853611Y-68716500D01*
+X106785490Y-68696498D01*
+X106738997Y-68642842D01*
+X106728893Y-68572568D01*
+X106744491Y-68527502D01*
+X106834527Y-68371556D01*
+X106893542Y-68189928D01*
+X106913504Y-68000000D01*
+X106893542Y-67810072D01*
+X106834527Y-67628444D01*
+X106739040Y-67463056D01*
+X106739038Y-67463054D01*
+X106739034Y-67463048D01*
+X106611255Y-67321135D01*
+X106456752Y-67208882D01*
+X106282288Y-67131206D01*
+X106095487Y-67091500D01*
+X105904513Y-67091500D01*
+X105717711Y-67131206D01*
+X105543247Y-67208882D01*
+X105388744Y-67321135D01*
+X105260965Y-67463048D01*
+X105260958Y-67463058D01*
+X105165476Y-67628438D01*
+X105165473Y-67628445D01*
+X105106457Y-67810072D01*
+X105086496Y-68000000D01*
+X105106457Y-68189927D01*
+X105136526Y-68282470D01*
+X105165473Y-68371556D01*
+X105255508Y-68527501D01*
+X105272246Y-68596495D01*
+X105249026Y-68663587D01*
+X105193219Y-68707474D01*
+X105146389Y-68716500D01*
+X104759490Y-68716500D01*
+X104691369Y-68696498D01*
+X104644876Y-68642842D01*
+X104633490Y-68590500D01*
+X104633490Y-67491381D01*
+X104653492Y-67423260D01*
+X104670390Y-67402290D01*
+X105156332Y-66916347D01*
+X105218643Y-66882324D01*
+X105219159Y-66882212D01*
+X105282288Y-66868794D01*
+X105456752Y-66791118D01*
+X105611253Y-66678866D01*
+X105639672Y-66647304D01*
+X105739034Y-66536951D01*
+X105739035Y-66536949D01*
+X105739040Y-66536944D01*
+X105834527Y-66371556D01*
+X105893542Y-66189928D01*
+X105913504Y-66000000D01*
+X105893542Y-65810072D01*
+X105834527Y-65628444D01*
+X105744493Y-65472500D01*
+X105727755Y-65403505D01*
+X105750975Y-65336413D01*
+X105806783Y-65292526D01*
+X105853612Y-65283500D01*
+X107475554Y-65283500D01*
+X107534906Y-65277435D01*
+X107579427Y-65272887D01*
+X107747739Y-65217115D01*
+X107898652Y-65124030D01*
+X108024030Y-64998652D01*
+X108117115Y-64847739D01*
+X108172887Y-64679427D01*
+X108177435Y-64634906D01*
+X108183500Y-64575554D01*
+X108183500Y-63449445D01*
+X108176677Y-63382673D01*
+X108172887Y-63345573D01*
+X108117115Y-63177261D01*
+X108024030Y-63026348D01*
+X108024029Y-63026347D01*
+X108024024Y-63026341D01*
+X107898658Y-62900975D01*
+X107898652Y-62900970D01*
+X107747739Y-62807885D01*
+X107663583Y-62779999D01*
+X107579428Y-62752113D01*
+X107579421Y-62752112D01*
+X107475554Y-62741500D01*
+X107475546Y-62741500D01*
+X104524454Y-62741500D01*
+X104524446Y-62741500D01*
+X104420578Y-62752112D01*
+X104420571Y-62752113D01*
+X104252261Y-62807885D01*
+X104101347Y-62900970D01*
+X104101341Y-62900975D01*
+X103975975Y-63026341D01*
+X103975970Y-63026347D01*
+X103882885Y-63177261D01*
+X103827113Y-63345571D01*
+X103827112Y-63345578D01*
+X103816500Y-63449445D01*
+X103816500Y-64575554D01*
+X103816499Y-64575554D01*
+X103827112Y-64679421D01*
+X103827113Y-64679427D01*
+X103882885Y-64847739D01*
+X103975970Y-64998652D01*
+X103975975Y-64998658D01*
+X104101341Y-65124024D01*
+X104101347Y-65124029D01*
+X104101348Y-65124030D01*
+X104252261Y-65217115D01*
+X104252268Y-65217117D01*
+X104258911Y-65220215D01*
+X104257649Y-65222919D01*
+X104304887Y-65255628D01*
+X104332140Y-65321185D01*
+X104319623Y-65391070D01*
+X104300516Y-65419124D01*
+X104260957Y-65463059D01*
+X104165476Y-65628438D01*
+X104165472Y-65628445D01*
+X104110612Y-65797285D01*
+X104079874Y-65847443D01*
+X103384215Y-66543102D01*
+X103370366Y-66555072D01*
+X103350933Y-66569539D01*
+X103318761Y-66607880D01*
+X103311350Y-66615968D01*
+X103307410Y-66619908D01*
+X103307404Y-66619915D01*
+X103287987Y-66644470D01*
+X103285679Y-66647304D01*
+X103236954Y-66705374D01*
+X103232925Y-66711501D01*
+X103232870Y-66711465D01*
+X103228815Y-66717830D01*
+X103228872Y-66717865D01*
+X103225020Y-66724108D01*
+X103192986Y-66792804D01*
+X103191391Y-66796097D01*
+X103157384Y-66863815D01*
+X103154872Y-66870717D01*
+X103154810Y-66870694D01*
+X103152333Y-66877820D01*
+X103152394Y-66877841D01*
+X103150086Y-66884805D01*
+X103134749Y-66959074D01*
+X103133957Y-66962647D01*
+X103116490Y-67036350D01*
+X103115638Y-67043644D01*
+X103115571Y-67043636D01*
+X103114804Y-67051136D01*
+X103114871Y-67051142D01*
+X103114231Y-67058452D01*
+X103116437Y-67134268D01*
+X103116490Y-67137932D01*
+X103116490Y-70823049D01*
+X103115160Y-70841309D01*
+X103111649Y-70865276D01*
+X103111649Y-70865285D01*
+X103116010Y-70915123D01*
+X103116490Y-70926106D01*
+X103116490Y-70931675D01*
+X103120125Y-70962779D01*
+X103120497Y-70966422D01*
+X103127101Y-71041908D01*
+X103128586Y-71049096D01*
+X103128521Y-71049109D01*
+X103130155Y-71056479D01*
+X103130219Y-71056465D01*
+X103131911Y-71063606D01*
+X103157836Y-71134832D01*
+X103159039Y-71138294D01*
+X103182874Y-71210225D01*
+X103185977Y-71216878D01*
+X103185916Y-71216906D01*
+X103189201Y-71223692D01*
+X103189260Y-71223663D01*
+X103192553Y-71230220D01*
+X103234222Y-71293574D01*
+X103236161Y-71296617D01*
+X103263209Y-71340468D01*
+X103275962Y-71361144D01*
+X103280512Y-71366898D01*
+X103280458Y-71366940D01*
+X103285218Y-71372782D01*
+X103285269Y-71372740D01*
+X103289987Y-71378362D01*
+X103345145Y-71430401D01*
+X103347774Y-71432955D01*
+X103892244Y-71977425D01*
+X103926270Y-72039737D01*
+X103921205Y-72110552D01*
+X103910390Y-72132666D01*
+X103882888Y-72177253D01*
+X103882885Y-72177261D01*
+X103832722Y-72328643D01*
+X103792308Y-72387014D01*
+X103779267Y-72396249D01*
+X103751349Y-72413470D01*
+X103751348Y-72413471D01*
+X103745588Y-72418025D01*
+X103745547Y-72417973D01*
+X103739704Y-72422733D01*
+X103739746Y-72422783D01*
+X103734128Y-72427496D01*
+X103682087Y-72482656D01*
+X103679534Y-72485283D01*
+X103384215Y-72780602D01*
+X103370366Y-72792572D01*
+X103350933Y-72807039D01*
+X103318761Y-72845380D01*
+X103311350Y-72853468D01*
+X103307410Y-72857408D01*
+X103307404Y-72857415D01*
+X103287987Y-72881970D01*
+X103285679Y-72884804D01*
+X103236954Y-72942874D01*
+X103232925Y-72949001D01*
+X103232870Y-72948965D01*
+X103228815Y-72955330D01*
+X103228872Y-72955365D01*
+X103225020Y-72961608D01*
+X103192986Y-73030304D01*
+X103191391Y-73033597D01*
+X103157384Y-73101315D01*
+X103154872Y-73108217D01*
+X103154810Y-73108194D01*
+X103152333Y-73115320D01*
+X103152394Y-73115341D01*
+X103150086Y-73122305D01*
+X103134749Y-73196574D01*
+X103133957Y-73200147D01*
+X103116490Y-73273850D01*
+X103115638Y-73281144D01*
+X103115571Y-73281136D01*
+X103114804Y-73288636D01*
+X103114871Y-73288642D01*
+X103114231Y-73295952D01*
+X103116437Y-73371768D01*
+X103116490Y-73375432D01*
+X103116490Y-79823049D01*
+X103115160Y-79841309D01*
+X103111649Y-79865276D01*
+X103111649Y-79865285D01*
+X103116010Y-79915123D01*
+X103116490Y-79926106D01*
+X103116490Y-79931675D01*
+X103120125Y-79962779D01*
+X103120497Y-79966422D01*
+X103127101Y-80041908D01*
+X103128586Y-80049096D01*
+X103128521Y-80049109D01*
+X103130155Y-80056479D01*
+X103130219Y-80056465D01*
+X103131911Y-80063606D01*
+X103157836Y-80134832D01*
+X103159039Y-80138294D01*
+X103182874Y-80210225D01*
+X103185977Y-80216878D01*
+X103185916Y-80216906D01*
+X103189201Y-80223692D01*
+X103189260Y-80223663D01*
+X103192553Y-80230220D01*
+X103234222Y-80293574D01*
+X103236161Y-80296617D01*
+X103263209Y-80340468D01*
+X103275962Y-80361144D01*
+X103280512Y-80366898D01*
+X103280458Y-80366940D01*
+X103285218Y-80372782D01*
+X103285269Y-80372740D01*
+X103289987Y-80378362D01*
+X103345145Y-80430401D01*
+X103347774Y-80432955D01*
+X103892244Y-80977425D01*
+X103926270Y-81039737D01*
+X103921205Y-81110552D01*
+X103910390Y-81132666D01*
+X103882888Y-81177253D01*
+X103882887Y-81177255D01*
+X103827113Y-81345572D01*
+X103827112Y-81345578D01*
+X103816500Y-81449445D01*
+X103816500Y-82575554D01*
+X103816499Y-82575554D01*
+X103827112Y-82679421D01*
+X103827113Y-82679427D01*
+X103882885Y-82847739D01*
+X103910390Y-82892331D01*
+X103929127Y-82960811D01*
+X103907868Y-83028550D01*
+X103892244Y-83047573D01*
+X103384215Y-83555602D01*
+X103370366Y-83567572D01*
+X103350933Y-83582039D01*
+X103318761Y-83620380D01*
+X103311350Y-83628468D01*
+X103307410Y-83632408D01*
+X103307404Y-83632415D01*
+X103287987Y-83656970D01*
+X103285679Y-83659804D01*
+X103236954Y-83717874D01*
+X103232925Y-83724001D01*
+X103232870Y-83723965D01*
+X103228815Y-83730330D01*
+X103228872Y-83730365D01*
+X103225020Y-83736608D01*
+X103192986Y-83805304D01*
+X103191391Y-83808597D01*
+X103157384Y-83876315D01*
+X103154872Y-83883217D01*
+X103154810Y-83883194D01*
+X103152333Y-83890320D01*
+X103152394Y-83890341D01*
+X103150086Y-83897305D01*
+X103134749Y-83971574D01*
+X103133957Y-83975147D01*
+X103116490Y-84048850D01*
+X103115638Y-84056144D01*
+X103115571Y-84056136D01*
+X103114804Y-84063636D01*
+X103114871Y-84063642D01*
+X103114231Y-84070952D01*
+X103116437Y-84146768D01*
+X103116490Y-84150432D01*
+X103116490Y-88823049D01*
+X103115160Y-88841309D01*
+X103111649Y-88865276D01*
+X103111649Y-88865285D01*
+X103116010Y-88915123D01*
+X103116490Y-88926106D01*
+X103116490Y-88931675D01*
+X103120125Y-88962779D01*
+X103120497Y-88966422D01*
+X103127101Y-89041908D01*
+X103128586Y-89049096D01*
+X103128521Y-89049109D01*
+X103130155Y-89056479D01*
+X103130219Y-89056465D01*
+X103131911Y-89063606D01*
+X103157836Y-89134832D01*
+X103159039Y-89138294D01*
+X103182874Y-89210225D01*
+X103185977Y-89216878D01*
+X103185916Y-89216906D01*
+X103189201Y-89223692D01*
+X103189260Y-89223663D01*
+X103192553Y-89230220D01*
+X103234222Y-89293574D01*
+X103236161Y-89296617D01*
+X103263209Y-89340468D01*
+X103275962Y-89361144D01*
+X103280512Y-89366898D01*
+X103280458Y-89366940D01*
+X103285218Y-89372782D01*
+X103285269Y-89372740D01*
+X103289987Y-89378362D01*
+X103345145Y-89430401D01*
+X103347774Y-89432955D01*
+X103892244Y-89977425D01*
+X103926270Y-90039737D01*
+X103921205Y-90110552D01*
+X103910390Y-90132666D01*
+X103882888Y-90177253D01*
+X103882885Y-90177261D01*
+X103832722Y-90328643D01*
+X103792308Y-90387014D01*
+X103779267Y-90396249D01*
+X103751349Y-90413470D01*
+X103751348Y-90413471D01*
+X103745588Y-90418025D01*
+X103745547Y-90417973D01*
+X103739704Y-90422733D01*
+X103739746Y-90422783D01*
+X103734128Y-90427496D01*
+X103682087Y-90482656D01*
+X103679534Y-90485283D01*
+X103384215Y-90780602D01*
+X103370366Y-90792572D01*
+X103350933Y-90807039D01*
+X103318761Y-90845380D01*
+X103311350Y-90853468D01*
+X103307410Y-90857408D01*
+X103307404Y-90857415D01*
+X103287987Y-90881970D01*
+X103285679Y-90884804D01*
+X103236954Y-90942874D01*
+X103232925Y-90949001D01*
+X103232870Y-90948965D01*
+X103228815Y-90955330D01*
+X103228872Y-90955365D01*
+X103225020Y-90961608D01*
+X103192986Y-91030304D01*
+X103191391Y-91033597D01*
+X103157384Y-91101315D01*
+X103154872Y-91108217D01*
+X103154810Y-91108194D01*
+X103152333Y-91115320D01*
+X103152394Y-91115341D01*
+X103150086Y-91122305D01*
+X103134749Y-91196574D01*
+X103133957Y-91200147D01*
+X103116490Y-91273850D01*
+X103115638Y-91281144D01*
+X103115571Y-91281136D01*
+X103114804Y-91288636D01*
+X103114871Y-91288642D01*
+X103114231Y-91295952D01*
+X103116437Y-91371768D01*
+X103116490Y-91375432D01*
+X103116490Y-97823049D01*
+X103115160Y-97841309D01*
+X103111649Y-97865276D01*
+X103111649Y-97865285D01*
+X100060500Y-97865285D01*
+X100060500Y-61550554D01*
+X103816499Y-61550554D01*
+X103827112Y-61654421D01*
+X103827113Y-61654427D01*
+X103882885Y-61822739D01*
+X103975970Y-61973652D01*
+X103975975Y-61973658D01*
+X104101341Y-62099024D01*
+X104101347Y-62099029D01*
+X104101348Y-62099030D01*
+X104252261Y-62192115D01*
+X104420573Y-62247887D01*
+X104460527Y-62251968D01*
+X104524446Y-62258500D01*
+X104524454Y-62258500D01*
+X107475554Y-62258500D01*
+X107534906Y-62252435D01*
+X107579427Y-62247887D01*
+X107747739Y-62192115D01*
+X107898652Y-62099030D01*
+X108024030Y-61973652D01*
+X108117115Y-61822739D01*
+X108172887Y-61654427D01*
+X108177435Y-61609906D01*
+X108183500Y-61550554D01*
+X108183500Y-60424445D01*
+X108176677Y-60357673D01*
+X108172887Y-60320573D01*
+X108117115Y-60152261D01*
+X108024030Y-60001348D01*
+X108024029Y-60001347D01*
+X108024024Y-60001341D01*
+X107898658Y-59875975D01*
+X107898652Y-59875970D01*
+X107747739Y-59782885D01*
+X107663583Y-59754999D01*
+X107579428Y-59727113D01*
+X107579421Y-59727112D01*
+X107475554Y-59716500D01*
+X107475546Y-59716500D01*
+X106853611Y-59716500D01*
+X106785490Y-59696498D01*
+X106738997Y-59642842D01*
+X106728893Y-59572568D01*
+X106744491Y-59527502D01*
+X106834527Y-59371556D01*
+X106893542Y-59189928D01*
+X106913504Y-59000000D01*
+X106893542Y-58810072D01*
+X106834527Y-58628444D01*
+X106739040Y-58463056D01*
+X106739038Y-58463054D01*
+X106739034Y-58463048D01*
+X106611255Y-58321135D01*
+X106456752Y-58208882D01*
+X106282288Y-58131206D01*
+X106095487Y-58091500D01*
+X105904513Y-58091500D01*
+X105717711Y-58131206D01*
+X105543247Y-58208882D01*
+X105388744Y-58321135D01*
+X105260965Y-58463048D01*
+X105260958Y-58463058D01*
+X105165476Y-58628438D01*
+X105165473Y-58628445D01*
+X105106457Y-58810072D01*
+X105086496Y-59000000D01*
+X105106457Y-59189927D01*
+X105136526Y-59282470D01*
+X105165473Y-59371556D01*
+X105255508Y-59527501D01*
+X105272246Y-59596495D01*
+X105249026Y-59663587D01*
+X105193219Y-59707474D01*
+X105146389Y-59716500D01*
+X104524446Y-59716500D01*
+X104420578Y-59727112D01*
+X104420571Y-59727113D01*
+X104252261Y-59782885D01*
+X104101347Y-59875970D01*
+X104101341Y-59875975D01*
+X103975975Y-60001341D01*
+X103975970Y-60001347D01*
+X103882885Y-60152261D01*
+X103827113Y-60320571D01*
+X103827112Y-60320578D01*
+X103816500Y-60424445D01*
+X103816500Y-61550554D01*
+X103816499Y-61550554D01*
+X100060500Y-61550554D01*
+X100060500Y-55575554D01*
+X103816499Y-55575554D01*
+X103827112Y-55679421D01*
+X103827113Y-55679427D01*
+X103882885Y-55847739D01*
+X103975970Y-55998652D01*
+X103975975Y-55998658D01*
+X104101341Y-56124024D01*
+X104101347Y-56124029D01*
+X104101348Y-56124030D01*
+X104252261Y-56217115D01*
+X104252268Y-56217117D01*
+X104258911Y-56220215D01*
+X104257649Y-56222919D01*
+X104304887Y-56255628D01*
+X104332140Y-56321185D01*
+X104319623Y-56391070D01*
+X104300516Y-56419124D01*
+X104260957Y-56463059D01*
+X104165476Y-56628438D01*
+X104165473Y-56628445D01*
+X104106457Y-56810072D01*
+X104086496Y-57000000D01*
+X104106457Y-57189927D01*
+X104136526Y-57282470D01*
+X104165473Y-57371556D01*
+X104165476Y-57371561D01*
+X104260958Y-57536941D01*
+X104260965Y-57536951D01*
+X104388744Y-57678864D01*
+X104388747Y-57678866D01*
+X104543248Y-57791118D01*
+X104717712Y-57868794D01*
+X104904513Y-57908500D01*
+X105095487Y-57908500D01*
+X105282288Y-57868794D01*
+X105456752Y-57791118D01*
+X105611253Y-57678866D01*
+X105739040Y-57536944D01*
+X105834527Y-57371556D01*
+X105893542Y-57189928D01*
+X105913504Y-57000000D01*
+X105893542Y-56810072D01*
+X105834527Y-56628444D01*
+X105744493Y-56472500D01*
+X105727755Y-56403505D01*
+X105750975Y-56336413D01*
+X105806783Y-56292526D01*
+X105853612Y-56283500D01*
+X107475554Y-56283500D01*
+X107534906Y-56277435D01*
+X107579427Y-56272887D01*
+X107747739Y-56217115D01*
+X107898652Y-56124030D01*
+X108024030Y-55998652D01*
+X108117115Y-55847739D01*
+X108172887Y-55679427D01*
+X108177435Y-55634906D01*
+X108183500Y-55575554D01*
+X108183500Y-54449445D01*
+X108176677Y-54382673D01*
+X108172887Y-54345573D01*
+X108117115Y-54177261D01*
+X108024030Y-54026348D01*
+X108024029Y-54026347D01*
+X108024024Y-54026341D01*
+X107898658Y-53900975D01*
+X107898652Y-53900970D01*
+X107747739Y-53807885D01*
+X107663583Y-53779999D01*
+X107579428Y-53752113D01*
+X107579421Y-53752112D01*
+X107475554Y-53741500D01*
+X107475546Y-53741500D01*
+X104524454Y-53741500D01*
+X104524446Y-53741500D01*
+X104420578Y-53752112D01*
+X104420571Y-53752113D01*
+X104252261Y-53807885D01*
+X104101347Y-53900970D01*
+X104101341Y-53900975D01*
+X103975975Y-54026341D01*
+X103975970Y-54026347D01*
+X103882885Y-54177261D01*
+X103827113Y-54345571D01*
+X103827112Y-54345578D01*
+X103816500Y-54449445D01*
+X103816500Y-55575554D01*
+X103816499Y-55575554D01*
+X100060500Y-55575554D01*
+X100060500Y-52550554D01*
+X103816499Y-52550554D01*
+X103827112Y-52654421D01*
+X103827113Y-52654427D01*
+X103882885Y-52822739D01*
+X103975970Y-52973652D01*
+X103975975Y-52973658D01*
+X104101341Y-53099024D01*
+X104101347Y-53099029D01*
+X104101348Y-53099030D01*
+X104252261Y-53192115D01*
+X104420573Y-53247887D01*
+X104460527Y-53251968D01*
+X104524446Y-53258500D01*
+X104524454Y-53258500D01*
+X107475554Y-53258500D01*
+X107534906Y-53252435D01*
+X107579427Y-53247887D01*
+X107747739Y-53192115D01*
+X107898652Y-53099030D01*
+X108024030Y-52973652D01*
+X108117115Y-52822739D01*
+X108172887Y-52654427D01*
+X108177435Y-52609906D01*
+X108183500Y-52550554D01*
+X108183500Y-51424445D01*
+X108176677Y-51357673D01*
+X108172887Y-51320573D01*
+X108117115Y-51152261D01*
+X108024030Y-51001348D01*
+X108024029Y-51001347D01*
+X108024024Y-51001341D01*
+X107898658Y-50875975D01*
+X107898652Y-50875970D01*
+X107747739Y-50782885D01*
+X107663583Y-50754999D01*
+X107579428Y-50727113D01*
+X107579421Y-50727112D01*
+X107475554Y-50716500D01*
+X107475546Y-50716500D01*
+X106853611Y-50716500D01*
+X106785490Y-50696498D01*
+X106738997Y-50642842D01*
+X106728893Y-50572568D01*
+X106744491Y-50527502D01*
+X106834527Y-50371556D01*
+X106893542Y-50189928D01*
+X106913504Y-50000000D01*
+X106893542Y-49810072D01*
+X106834527Y-49628444D01*
+X106739040Y-49463056D01*
+X106739038Y-49463054D01*
+X106739034Y-49463048D01*
+X106611255Y-49321135D01*
+X106456752Y-49208882D01*
+X106282288Y-49131206D01*
+X106095487Y-49091500D01*
+X105904513Y-49091500D01*
+X105717711Y-49131206D01*
+X105543247Y-49208882D01*
+X105388744Y-49321135D01*
+X105260965Y-49463048D01*
+X105260958Y-49463058D01*
+X105165476Y-49628438D01*
+X105165473Y-49628445D01*
+X105106457Y-49810072D01*
+X105086496Y-50000000D01*
+X105106457Y-50189927D01*
+X105136526Y-50282470D01*
+X105165473Y-50371556D01*
+X105255508Y-50527501D01*
+X105272246Y-50596495D01*
+X105249026Y-50663587D01*
+X105193219Y-50707474D01*
+X105146389Y-50716500D01*
+X104524446Y-50716500D01*
+X104420578Y-50727112D01*
+X104420571Y-50727113D01*
+X104252261Y-50782885D01*
+X104101347Y-50875970D01*
+X104101341Y-50875975D01*
+X103975975Y-51001341D01*
+X103975970Y-51001347D01*
+X103882885Y-51152261D01*
+X103827113Y-51320571D01*
+X103827112Y-51320578D01*
+X103816500Y-51424445D01*
+X103816500Y-52550554D01*
+X103816499Y-52550554D01*
+X100060500Y-52550554D01*
+X100060500Y-46575554D01*
+X103816499Y-46575554D01*
+X103827112Y-46679421D01*
+X103827113Y-46679427D01*
+X103882885Y-46847739D01*
+X103975970Y-46998652D01*
+X103975975Y-46998658D01*
+X104101341Y-47124024D01*
+X104101347Y-47124029D01*
+X104101348Y-47124030D01*
+X104252261Y-47217115D01*
+X104252268Y-47217117D01*
+X104258911Y-47220215D01*
+X104257649Y-47222919D01*
+X104304887Y-47255628D01*
+X104332140Y-47321185D01*
+X104319623Y-47391070D01*
+X104300516Y-47419124D01*
+X104260957Y-47463059D01*
+X104165476Y-47628438D01*
+X104165473Y-47628445D01*
+X104106457Y-47810072D01*
+X104086496Y-48000000D01*
+X104106457Y-48189927D01*
+X104136526Y-48282470D01*
+X104165473Y-48371556D01*
+X104165476Y-48371561D01*
+X104260958Y-48536941D01*
+X104260965Y-48536951D01*
+X104388744Y-48678864D01*
+X104388747Y-48678866D01*
+X104543248Y-48791118D01*
+X104717712Y-48868794D01*
+X104904513Y-48908500D01*
+X105095487Y-48908500D01*
+X105282288Y-48868794D01*
+X105456752Y-48791118D01*
+X105611253Y-48678866D01*
+X105739040Y-48536944D01*
+X105834527Y-48371556D01*
+X105893542Y-48189928D01*
+X105913504Y-48000000D01*
+X105893542Y-47810072D01*
+X105834527Y-47628444D01*
+X105744493Y-47472500D01*
+X105727755Y-47403505D01*
+X105750975Y-47336413D01*
+X105806783Y-47292526D01*
+X105853612Y-47283500D01*
+X107475554Y-47283500D01*
+X107534906Y-47277435D01*
+X107579427Y-47272887D01*
+X107747739Y-47217115D01*
+X107898652Y-47124030D01*
+X108024030Y-46998652D01*
+X108117115Y-46847739D01*
+X108172887Y-46679427D01*
+X108177435Y-46634906D01*
+X108183500Y-46575554D01*
+X108183500Y-45449445D01*
+X108176677Y-45382673D01*
+X108172887Y-45345573D01*
+X108117115Y-45177261D01*
+X108024030Y-45026348D01*
+X108024029Y-45026347D01*
+X108024024Y-45026341D01*
+X107898658Y-44900975D01*
+X107898652Y-44900970D01*
+X107747739Y-44807885D01*
+X107663583Y-44779999D01*
+X107579428Y-44752113D01*
+X107579421Y-44752112D01*
+X107475554Y-44741500D01*
+X107475546Y-44741500D01*
+X104524454Y-44741500D01*
+X104524446Y-44741500D01*
+X104420578Y-44752112D01*
+X104420571Y-44752113D01*
+X104252261Y-44807885D01*
+X104101347Y-44900970D01*
+X104101341Y-44900975D01*
+X103975975Y-45026341D01*
+X103975970Y-45026347D01*
+X103882885Y-45177261D01*
+X103827113Y-45345571D01*
+X103827112Y-45345578D01*
+X103816500Y-45449445D01*
+X103816500Y-46575554D01*
+X103816499Y-46575554D01*
+X100060500Y-46575554D01*
+X100060500Y-43550554D01*
+X103816499Y-43550554D01*
+X103827112Y-43654421D01*
+X103827113Y-43654427D01*
+X103882885Y-43822739D01*
+X103975970Y-43973652D01*
+X103975975Y-43973658D01*
+X104101341Y-44099024D01*
+X104101347Y-44099029D01*
+X104101348Y-44099030D01*
+X104252261Y-44192115D01*
+X104420573Y-44247887D01*
+X104460527Y-44251968D01*
+X104524446Y-44258500D01*
+X104524454Y-44258500D01*
+X107475554Y-44258500D01*
+X107534906Y-44252435D01*
+X107579427Y-44247887D01*
+X107747739Y-44192115D01*
+X107898652Y-44099030D01*
+X108024030Y-43973652D01*
+X108117115Y-43822739D01*
+X108172887Y-43654427D01*
+X108177435Y-43609906D01*
+X108183500Y-43550554D01*
+X108183500Y-42424445D01*
+X108176677Y-42357673D01*
+X108172887Y-42320573D01*
+X108117115Y-42152261D01*
+X108024030Y-42001348D01*
+X108024029Y-42001347D01*
+X108024024Y-42001341D01*
+X107898658Y-41875975D01*
+X107898652Y-41875970D01*
+X107747739Y-41782885D01*
+X107663583Y-41754999D01*
+X107579428Y-41727113D01*
+X107579421Y-41727112D01*
+X107475554Y-41716500D01*
+X107475546Y-41716500D01*
+X106853611Y-41716500D01*
+X106785490Y-41696498D01*
+X106738997Y-41642842D01*
+X106728893Y-41572568D01*
+X106744491Y-41527502D01*
+X106834527Y-41371556D01*
+X106893542Y-41189928D01*
+X106913504Y-41000000D01*
+X106893542Y-40810072D01*
+X106834527Y-40628444D01*
+X106739040Y-40463056D01*
+X106739038Y-40463054D01*
+X106739034Y-40463048D01*
+X106611255Y-40321135D01*
+X106456752Y-40208882D01*
+X106282288Y-40131206D01*
+X106095487Y-40091500D01*
+X105904513Y-40091500D01*
+X105717711Y-40131206D01*
+X105543247Y-40208882D01*
+X105388744Y-40321135D01*
+X105260965Y-40463048D01*
+X105260958Y-40463058D01*
+X105165476Y-40628438D01*
+X105165473Y-40628445D01*
+X105106457Y-40810072D01*
+X105086496Y-41000000D01*
+X105106457Y-41189927D01*
+X105136526Y-41282470D01*
+X105165473Y-41371556D01*
+X105255508Y-41527501D01*
+X105272246Y-41596495D01*
+X105249026Y-41663587D01*
+X105193219Y-41707474D01*
+X105146389Y-41716500D01*
+X104524446Y-41716500D01*
+X104420578Y-41727112D01*
+X104420571Y-41727113D01*
+X104252261Y-41782885D01*
+X104101347Y-41875970D01*
+X104101341Y-41875975D01*
+X103975975Y-42001341D01*
+X103975970Y-42001347D01*
+X103882885Y-42152261D01*
+X103827113Y-42320571D01*
+X103827112Y-42320578D01*
+X103816500Y-42424445D01*
+X103816500Y-43550554D01*
+X103816499Y-43550554D01*
+X100060500Y-43550554D01*
+X100060500Y-37575554D01*
+X103816499Y-37575554D01*
+X103827112Y-37679421D01*
+X103827113Y-37679427D01*
+X103882885Y-37847739D01*
+X103975970Y-37998652D01*
+X103975975Y-37998658D01*
+X104101341Y-38124024D01*
+X104101347Y-38124029D01*
+X104101348Y-38124030D01*
+X104252261Y-38217115D01*
+X104252268Y-38217117D01*
+X104258911Y-38220215D01*
+X104257649Y-38222919D01*
+X104304887Y-38255628D01*
+X104332140Y-38321185D01*
+X104319623Y-38391070D01*
+X104300516Y-38419124D01*
+X104260957Y-38463059D01*
+X104165476Y-38628438D01*
+X104165473Y-38628445D01*
+X104106457Y-38810072D01*
+X104086496Y-39000000D01*
+X104106457Y-39189927D01*
+X104136526Y-39282470D01*
+X104165473Y-39371556D01*
+X104165476Y-39371561D01*
+X104260958Y-39536941D01*
+X104260965Y-39536951D01*
+X104388744Y-39678864D01*
+X104388747Y-39678866D01*
+X104543248Y-39791118D01*
+X104717712Y-39868794D01*
+X104904513Y-39908500D01*
+X105095487Y-39908500D01*
+X105282288Y-39868794D01*
+X105456752Y-39791118D01*
+X105611253Y-39678866D01*
+X105739040Y-39536944D01*
+X105834527Y-39371556D01*
+X105893542Y-39189928D01*
+X105913504Y-39000000D01*
+X105893542Y-38810072D01*
+X105834527Y-38628444D01*
+X105744493Y-38472500D01*
+X105727755Y-38403505D01*
+X105750975Y-38336413D01*
+X105806783Y-38292526D01*
+X105853612Y-38283500D01*
+X107475554Y-38283500D01*
+X107534906Y-38277435D01*
+X107579427Y-38272887D01*
+X107747739Y-38217115D01*
+X107898652Y-38124030D01*
+X108024030Y-37998652D01*
+X108117115Y-37847739D01*
+X108172887Y-37679427D01*
+X108177435Y-37634906D01*
+X108183500Y-37575554D01*
+X108183500Y-36449445D01*
+X108176677Y-36382673D01*
+X108172887Y-36345573D01*
+X108117115Y-36177261D01*
+X108024030Y-36026348D01*
+X108024029Y-36026347D01*
+X108024024Y-36026341D01*
+X107898658Y-35900975D01*
+X107898652Y-35900970D01*
+X107747739Y-35807885D01*
+X107663583Y-35779999D01*
+X107579428Y-35752113D01*
+X107579421Y-35752112D01*
+X107475554Y-35741500D01*
+X107475546Y-35741500D01*
+X104524454Y-35741500D01*
+X104524446Y-35741500D01*
+X104420578Y-35752112D01*
+X104420571Y-35752113D01*
+X104252261Y-35807885D01*
+X104101347Y-35900970D01*
+X104101341Y-35900975D01*
+X103975975Y-36026341D01*
+X103975970Y-36026347D01*
+X103882885Y-36177261D01*
+X103827113Y-36345571D01*
+X103827112Y-36345578D01*
+X103816500Y-36449445D01*
+X103816500Y-37575554D01*
+X103816499Y-37575554D01*
+X100060500Y-37575554D01*
+X100060500Y-34550554D01*
+X103816499Y-34550554D01*
+X103827112Y-34654421D01*
+X103827113Y-34654427D01*
+X103882885Y-34822739D01*
+X103975970Y-34973652D01*
+X103975975Y-34973658D01*
+X104101341Y-35099024D01*
+X104101347Y-35099029D01*
+X104101348Y-35099030D01*
+X104252261Y-35192115D01*
+X104420573Y-35247887D01*
+X104460527Y-35251968D01*
+X104524446Y-35258500D01*
+X104524454Y-35258500D01*
+X107475554Y-35258500D01*
+X107534906Y-35252435D01*
+X107579427Y-35247887D01*
+X107747739Y-35192115D01*
+X107898652Y-35099030D01*
+X108024030Y-34973652D01*
+X108117115Y-34822739D01*
+X108172887Y-34654427D01*
+X108177435Y-34609906D01*
+X108183500Y-34550554D01*
+X108183500Y-33424445D01*
+X108176677Y-33357673D01*
+X108172887Y-33320573D01*
+X108117115Y-33152261D01*
+X108024030Y-33001348D01*
+X108024029Y-33001347D01*
+X108024024Y-33001341D01*
+X107898658Y-32875975D01*
+X107898652Y-32875970D01*
+X107747739Y-32782885D01*
+X107663583Y-32754999D01*
+X107579428Y-32727113D01*
+X107579421Y-32727112D01*
+X107475554Y-32716500D01*
+X107475546Y-32716500D01*
+X106853611Y-32716500D01*
+X106785490Y-32696498D01*
+X106738997Y-32642842D01*
+X106728893Y-32572568D01*
+X106744491Y-32527502D01*
+X106834527Y-32371556D01*
+X106893542Y-32189928D01*
+X106913504Y-32000000D01*
+X106893542Y-31810072D01*
+X106834527Y-31628444D01*
+X106739040Y-31463056D01*
+X106739038Y-31463054D01*
+X106739034Y-31463048D01*
+X106611255Y-31321135D01*
+X106456752Y-31208882D01*
+X106282288Y-31131206D01*
+X106095487Y-31091500D01*
+X105904513Y-31091500D01*
+X105717711Y-31131206D01*
+X105543247Y-31208882D01*
+X105388744Y-31321135D01*
+X105260965Y-31463048D01*
+X105260958Y-31463058D01*
+X105165476Y-31628438D01*
+X105165473Y-31628445D01*
+X105106457Y-31810072D01*
+X105086496Y-32000000D01*
+X105106457Y-32189927D01*
+X105136526Y-32282470D01*
+X105165473Y-32371556D01*
+X105255508Y-32527501D01*
+X105272246Y-32596495D01*
+X105249026Y-32663587D01*
+X105193219Y-32707474D01*
+X105146389Y-32716500D01*
+X104524446Y-32716500D01*
+X104420578Y-32727112D01*
+X104420571Y-32727113D01*
+X104252261Y-32782885D01*
+X104101347Y-32875970D01*
+X104101341Y-32875975D01*
+X103975975Y-33001341D01*
+X103975970Y-33001347D01*
+X103882885Y-33152261D01*
+X103827113Y-33320571D01*
+X103827112Y-33320578D01*
+X103816500Y-33424445D01*
+X103816500Y-34550554D01*
+X103816499Y-34550554D01*
+X100060500Y-34550554D01*
+X100060500Y-28575554D01*
+X103816499Y-28575554D01*
+X103827112Y-28679421D01*
+X103827113Y-28679427D01*
+X103882885Y-28847739D01*
+X103975970Y-28998652D01*
+X103975975Y-28998658D01*
+X104101341Y-29124024D01*
+X104101347Y-29124029D01*
+X104101348Y-29124030D01*
+X104252261Y-29217115D01*
+X104252268Y-29217117D01*
+X104258911Y-29220215D01*
+X104257649Y-29222919D01*
+X104304887Y-29255628D01*
+X104332140Y-29321185D01*
+X104319623Y-29391070D01*
+X104300516Y-29419124D01*
+X104260957Y-29463059D01*
+X104165476Y-29628438D01*
+X104165473Y-29628445D01*
+X104106457Y-29810072D01*
+X104086496Y-30000000D01*
+X104106457Y-30189927D01*
+X104136526Y-30282470D01*
+X104165473Y-30371556D01*
+X104165476Y-30371561D01*
+X104260958Y-30536941D01*
+X104260965Y-30536951D01*
+X104388744Y-30678864D01*
+X104388747Y-30678866D01*
+X104543248Y-30791118D01*
+X104717712Y-30868794D01*
+X104904513Y-30908500D01*
+X105095487Y-30908500D01*
+X105282288Y-30868794D01*
+X105456752Y-30791118D01*
+X105611253Y-30678866D01*
+X105739040Y-30536944D01*
+X105834527Y-30371556D01*
+X105893542Y-30189928D01*
+X105913504Y-30000000D01*
+X105893542Y-29810072D01*
+X105834527Y-29628444D01*
+X105744493Y-29472500D01*
+X105727755Y-29403505D01*
+X105750975Y-29336413D01*
+X105806783Y-29292526D01*
+X105853612Y-29283500D01*
+X107475554Y-29283500D01*
+X107534906Y-29277435D01*
+X107579427Y-29272887D01*
+X107747739Y-29217115D01*
+X107898652Y-29124030D01*
+X108024030Y-28998652D01*
+X108117115Y-28847739D01*
+X108172887Y-28679427D01*
+X108177435Y-28634906D01*
+X108183500Y-28575554D01*
+X108183500Y-27449445D01*
+X108176677Y-27382673D01*
+X108172887Y-27345573D01*
+X108117115Y-27177261D01*
+X108024030Y-27026348D01*
+X108024029Y-27026347D01*
+X108024024Y-27026341D01*
+X107898658Y-26900975D01*
+X107898652Y-26900970D01*
+X107747739Y-26807885D01*
+X107663583Y-26779999D01*
+X107579428Y-26752113D01*
+X107579421Y-26752112D01*
+X107475554Y-26741500D01*
+X107475546Y-26741500D01*
+X104524454Y-26741500D01*
+X104524446Y-26741500D01*
+X104420578Y-26752112D01*
+X104420571Y-26752113D01*
+X104252261Y-26807885D01*
+X104101347Y-26900970D01*
+X104101341Y-26900975D01*
+X103975975Y-27026341D01*
+X103975970Y-27026347D01*
+X103882885Y-27177261D01*
+X103827113Y-27345571D01*
+X103827112Y-27345578D01*
+X103816500Y-27449445D01*
+X103816500Y-28575554D01*
+X103816499Y-28575554D01*
+X100060500Y-28575554D01*
+X100060500Y-21648649D01*
+X102116500Y-21648649D01*
+X102123009Y-21709196D01*
+X102123011Y-21709204D01*
+X102174110Y-21846202D01*
+X102174112Y-21846207D01*
+X102261738Y-21963261D01*
+X102378792Y-22050887D01*
+X102378794Y-22050888D01*
+X102378796Y-22050889D01*
+X102437875Y-22072924D01*
+X102515795Y-22101988D01*
+X102515803Y-22101990D01*
+X102576350Y-22108499D01*
+X102576355Y-22108499D01*
+X102576362Y-22108500D01*
+X104297202Y-22108500D01*
+X104365323Y-22128502D01*
+X104411816Y-22182158D01*
+X104421920Y-22252432D01*
+X104392426Y-22317012D01*
+X104390839Y-22318810D01*
+X104260961Y-22463054D01*
+X104260958Y-22463058D01*
+X104165476Y-22628438D01*
+X104165473Y-22628445D01*
+X104106457Y-22810072D01*
+X104086496Y-23000000D01*
+X104106457Y-23189927D01*
+X104165475Y-23371561D01*
+X104199618Y-23430697D01*
+X104216500Y-23493698D01*
+X104216500Y-23858627D01*
+X104196498Y-23926748D01*
+X104179595Y-23947722D01*
+X104050975Y-24076341D01*
+X104050970Y-24076347D01*
+X103957885Y-24227262D01*
+X103902113Y-24395572D01*
+X103902112Y-24395579D01*
+X103891500Y-24499446D01*
+X103891500Y-25500544D01*
+X103902112Y-25604425D01*
+X103957885Y-25772738D01*
+X104050970Y-25923652D01*
+X104050975Y-25923658D01*
+X104176341Y-26049024D01*
+X104176347Y-26049029D01*
+X104176348Y-26049030D01*
+X104327262Y-26142115D01*
+X104495574Y-26197887D01*
+X104599455Y-26208500D01*
+X105350544Y-26208499D01*
+X105454426Y-26197887D01*
+X105622738Y-26142115D01*
+X105773652Y-26049030D01*
+X105899030Y-25923652D01*
+X105899031Y-25923649D01*
+X105901162Y-25920956D01*
+X105903098Y-25919584D01*
+X105904220Y-25918463D01*
+X105904411Y-25918654D01*
+X105959101Y-25879925D01*
+X106030026Y-25876733D01*
+X106091418Y-25912392D01*
+X106098838Y-25920956D01*
+X106100971Y-25923654D01*
+X106226341Y-26049024D01*
+X106226347Y-26049029D01*
+X106226348Y-26049030D01*
+X106377262Y-26142115D01*
+X106545574Y-26197887D01*
+X106649455Y-26208500D01*
+X107400544Y-26208499D01*
+X107504426Y-26197887D01*
+X107672738Y-26142115D01*
+X107823652Y-26049030D01*
+X107949030Y-25923652D01*
+X108042115Y-25772738D01*
+X108097887Y-25604426D01*
+X108108500Y-25500545D01*
+X108108499Y-24499456D01*
+X108097887Y-24395574D01*
+X108042115Y-24227262D01*
+X107949030Y-24076348D01*
+X107949029Y-24076347D01*
+X107949024Y-24076341D01*
+X107823658Y-23950975D01*
+X107823652Y-23950970D01*
+X107784382Y-23926748D01*
+X107672738Y-23857885D01*
+X107588582Y-23829999D01*
+X107504427Y-23802113D01*
+X107504420Y-23802112D01*
+X107400553Y-23791500D01*
+X107400545Y-23791500D01*
+X106941371Y-23791500D01*
+X106873250Y-23771498D01*
+X106852276Y-23754595D01*
+X106795405Y-23697724D01*
+X106761379Y-23635412D01*
+X106758500Y-23608629D01*
+X106758500Y-22234500D01*
+X106778502Y-22166379D01*
+X106832158Y-22119886D01*
+X106884500Y-22108500D01*
+X109423632Y-22108500D01*
+X109423638Y-22108500D01*
+X109423645Y-22108499D01*
+X109423649Y-22108499D01*
+X109484196Y-22101990D01*
+X109484199Y-22101989D01*
+X109484201Y-22101989D01*
+X109621204Y-22050889D01*
+X109738261Y-21963261D01*
+X109825889Y-21846204D01*
+X109876989Y-21709201D01*
+X109883500Y-21648638D01*
+X109883500Y-20551362D01*
+X109883499Y-20551350D01*
+X109876990Y-20490803D01*
+X109876988Y-20490795D01*
+X109825889Y-20353797D01*
+X109825887Y-20353792D01*
+X109738261Y-20236738D01*
+X109690343Y-20200868D01*
+X109647796Y-20144033D01*
+X109642731Y-20073217D01*
+X109676756Y-20010905D01*
+X109690343Y-19999132D01*
+X109738261Y-19963261D01*
+X109825887Y-19846207D01*
+X109825887Y-19846206D01*
+X109825889Y-19846204D01*
+X109876989Y-19709201D01*
+X109883500Y-19648638D01*
+X109883500Y-18551362D01*
+X109883499Y-18551350D01*
+X109876990Y-18490803D01*
+X109876988Y-18490795D01*
+X109825889Y-18353797D01*
+X109825887Y-18353792D01*
+X109738261Y-18236738D01*
+X109690343Y-18200868D01*
+X109647796Y-18144033D01*
+X109642731Y-18073217D01*
+X109676756Y-18010905D01*
+X109690343Y-17999132D01*
+X109738261Y-17963261D01*
+X109825887Y-17846207D01*
+X109825887Y-17846206D01*
+X109825889Y-17846204D01*
+X109876989Y-17709201D01*
+X109883500Y-17648638D01*
+X109883500Y-16551362D01*
+X109883499Y-16551350D01*
+X109876990Y-16490803D01*
+X109876988Y-16490795D01*
+X109825889Y-16353797D01*
+X109825887Y-16353792D01*
+X109738261Y-16236738D01*
+X109690343Y-16200868D01*
+X109647796Y-16144033D01*
+X109642731Y-16073217D01*
+X109676756Y-16010905D01*
+X109690343Y-15999132D01*
+X109738261Y-15963261D01*
+X109825887Y-15846207D01*
+X109825887Y-15846206D01*
+X109825889Y-15846204D01*
+X109876989Y-15709201D01*
+X109883500Y-15648638D01*
+X109883500Y-14551362D01*
+X109883499Y-14551350D01*
+X109876990Y-14490803D01*
+X109876988Y-14490795D01*
+X109825889Y-14353797D01*
+X109825887Y-14353792D01*
+X109738261Y-14236738D01*
+X109690343Y-14200868D01*
+X109647796Y-14144033D01*
+X109642731Y-14073217D01*
+X109676756Y-14010905D01*
+X109690343Y-13999132D01*
+X109738261Y-13963261D01*
+X109825887Y-13846207D01*
+X109825887Y-13846206D01*
+X109825889Y-13846204D01*
+X109876989Y-13709201D01*
+X109883500Y-13648638D01*
+X109883500Y-12551362D01*
+X109883499Y-12551350D01*
+X109876990Y-12490803D01*
+X109876988Y-12490795D01*
+X109825889Y-12353797D01*
+X109825887Y-12353792D01*
+X109738261Y-12236738D01*
+X109621207Y-12149112D01*
+X109621202Y-12149110D01*
+X109484204Y-12098011D01*
+X109484196Y-12098009D01*
+X109423649Y-12091500D01*
+X109423638Y-12091500D01*
+X106746362Y-12091500D01*
+X106746350Y-12091500D01*
+X106685803Y-12098009D01*
+X106685795Y-12098011D01*
+X106548797Y-12149110D01*
+X106548792Y-12149112D01*
+X106431738Y-12236738D01*
+X106344112Y-12353792D01*
+X106344110Y-12353797D01*
+X106293011Y-12490795D01*
+X106293009Y-12490803D01*
+X106286500Y-12551350D01*
+X106286500Y-13648649D01*
+X106293009Y-13709196D01*
+X106293011Y-13709204D01*
+X106344110Y-13846202D01*
+X106344112Y-13846207D01*
+X106431737Y-13963259D01*
+X106431738Y-13963259D01*
+X106431739Y-13963261D01*
+X106479657Y-13999132D01*
+X106522203Y-14055968D01*
+X106527267Y-14126784D01*
+X106493242Y-14189096D01*
+X106479657Y-14200868D01*
+X106431737Y-14236740D01*
+X106344112Y-14353792D01*
+X106344110Y-14353797D01*
+X106293011Y-14490795D01*
+X106293009Y-14490803D01*
+X106286500Y-14551350D01*
+X106286500Y-14976503D01*
+X106266498Y-15044624D01*
+X106212842Y-15091117D01*
+X106142568Y-15101221D01*
+X106134304Y-15099750D01*
+X106095489Y-15091500D01*
+X106095487Y-15091500D01*
+X105904513Y-15091500D01*
+X105904511Y-15091500D01*
+X105865696Y-15099750D01*
+X105794905Y-15094347D01*
+X105738273Y-15051530D01*
+X105713780Y-14984892D01*
+X105713500Y-14976503D01*
+X105713500Y-14551367D01*
+X105713499Y-14551350D01*
+X105706990Y-14490803D01*
+X105706988Y-14490795D01*
+X105655889Y-14353797D01*
+X105655887Y-14353792D01*
+X105568261Y-14236738D01*
+X105520343Y-14200868D01*
+X105477796Y-14144033D01*
+X105472731Y-14073217D01*
+X105506756Y-14010905D01*
+X105520343Y-13999132D01*
+X105568261Y-13963261D01*
+X105655887Y-13846207D01*
+X105655887Y-13846206D01*
+X105655889Y-13846204D01*
+X105706989Y-13709201D01*
+X105713500Y-13648638D01*
+X105713500Y-12551362D01*
+X105713499Y-12551350D01*
+X105706990Y-12490803D01*
+X105706988Y-12490795D01*
+X105655889Y-12353797D01*
+X105655887Y-12353792D01*
+X105568261Y-12236738D01*
+X105451207Y-12149112D01*
+X105451202Y-12149110D01*
+X105314204Y-12098011D01*
+X105314196Y-12098009D01*
+X105253649Y-12091500D01*
+X105253638Y-12091500D01*
+X102576362Y-12091500D01*
+X102576350Y-12091500D01*
+X102515803Y-12098009D01*
+X102515795Y-12098011D01*
+X102378797Y-12149110D01*
+X102378792Y-12149112D01*
+X102261738Y-12236738D01*
+X102174112Y-12353792D01*
+X102174110Y-12353797D01*
+X102123011Y-12490795D01*
+X102123009Y-12490803D01*
+X102116500Y-12551350D01*
+X102116500Y-13648649D01*
+X102123009Y-13709196D01*
+X102123011Y-13709204D01*
+X102174110Y-13846202D01*
+X102174112Y-13846207D01*
+X102261737Y-13963259D01*
+X102261738Y-13963259D01*
+X102261739Y-13963261D01*
+X102309657Y-13999132D01*
+X102352203Y-14055968D01*
+X102357267Y-14126784D01*
+X102323242Y-14189096D01*
+X102309657Y-14200868D01*
+X102261737Y-14236740D01*
+X102174112Y-14353792D01*
+X102174110Y-14353797D01*
+X102123011Y-14490795D01*
+X102123009Y-14490803D01*
+X102116500Y-14551350D01*
+X102116500Y-15648649D01*
+X102123009Y-15709196D01*
+X102123011Y-15709204D01*
+X102174110Y-15846202D01*
+X102174112Y-15846207D01*
+X102261737Y-15963259D01*
+X102261738Y-15963259D01*
+X102261739Y-15963261D01*
+X102309657Y-15999132D01*
+X102352203Y-16055968D01*
+X102357267Y-16126784D01*
+X102323242Y-16189096D01*
+X102309657Y-16200868D01*
+X102261737Y-16236740D01*
+X102174112Y-16353792D01*
+X102174110Y-16353797D01*
+X102123011Y-16490795D01*
+X102123009Y-16490803D01*
+X102116500Y-16551350D01*
+X102116500Y-17648649D01*
+X102123009Y-17709196D01*
+X102123011Y-17709204D01*
+X102174110Y-17846202D01*
+X102174112Y-17846207D01*
+X102261737Y-17963259D01*
+X102261738Y-17963259D01*
+X102261739Y-17963261D01*
+X102309657Y-17999132D01*
+X102352203Y-18055968D01*
+X102357267Y-18126784D01*
+X102323242Y-18189096D01*
+X102309657Y-18200868D01*
+X102261737Y-18236740D01*
+X102174112Y-18353792D01*
+X102174110Y-18353797D01*
+X102123011Y-18490795D01*
+X102123009Y-18490803D01*
+X102116500Y-18551350D01*
+X102116500Y-19648649D01*
+X102123009Y-19709196D01*
+X102123011Y-19709204D01*
+X102174110Y-19846202D01*
+X102174112Y-19846207D01*
+X102261737Y-19963259D01*
+X102261738Y-19963259D01*
+X102261739Y-19963261D01*
+X102309657Y-19999132D01*
+X102352203Y-20055968D01*
+X102357267Y-20126784D01*
+X102323242Y-20189096D01*
+X102309657Y-20200868D01*
+X102261737Y-20236740D01*
+X102174112Y-20353792D01*
+X102174110Y-20353797D01*
+X102123011Y-20490795D01*
+X102123009Y-20490803D01*
+X102116500Y-20551350D01*
+X102116500Y-21648649D01*
+X100060500Y-21648649D01*
+X100060500Y-12004121D01*
+X100060770Y-11995880D01*
+X100061289Y-11987965D01*
+X100076553Y-11755074D01*
+X100078701Y-11738759D01*
+X100124977Y-11506111D01*
+X100129242Y-11490198D01*
+X100205486Y-11265590D01*
+X100211780Y-11250394D01*
+X100316698Y-11037641D01*
+X100324922Y-11023398D01*
+X100456710Y-10826162D01*
+X100466722Y-10813113D01*
+X100623134Y-10634759D01*
+X100634759Y-10623134D01*
+X100813113Y-10466722D01*
+X100826162Y-10456710D01*
+X101023398Y-10324922D01*
+X101037641Y-10316698D01*
+X101250394Y-10211780D01*
+X101265583Y-10205488D01*
+X101379893Y-10166685D01*
+X101420391Y-10160000D01*
+X110579609Y-10160000D01*
+X110620110Y-10166687D01*
+G37*
+G04 #@! TD.AperFunction*
+G04 #@! TA.AperFunction,NonConductor*
+G36*
+X106214249Y-71278502D02*
+G01*
+X106235223Y-71295404D01*
+X106413414Y-71473595D01*
+X106466224Y-71526404D01*
+X106500249Y-71588717D01*
+X106495185Y-71659532D01*
+X106452638Y-71716368D01*
+X106386118Y-71741179D01*
+X106377129Y-71741500D01*
+X105853871Y-71741500D01*
+X105785750Y-71721498D01*
+X105764776Y-71704595D01*
+X105533776Y-71473595D01*
+X105499750Y-71411283D01*
+X105504815Y-71340468D01*
+X105547362Y-71283632D01*
+X105613882Y-71258821D01*
+X105622871Y-71258500D01*
+X106146128Y-71258500D01*
+X106214249Y-71278502D01*
+G37*
+G04 #@! TD.AperFunction*
+G04 #@! TA.AperFunction,NonConductor*
+G36*
+X107308631Y-74303502D02*
+G01*
+X107355124Y-74357158D01*
+X107366510Y-74409500D01*
+X107366510Y-76496119D01*
+X107346508Y-76564240D01*
+X107329605Y-76585214D01*
+X106235224Y-77679595D01*
+X106172912Y-77713621D01*
+X106146129Y-77716500D01*
+X104759490Y-77716500D01*
+X104691369Y-77696498D01*
+X104644876Y-77642842D01*
+X104633490Y-77590500D01*
+X104633490Y-74409500D01*
+X104653492Y-74341379D01*
+X104707148Y-74294886D01*
+X104759490Y-74283500D01*
+X107240510Y-74283500D01*
+X107308631Y-74303502D01*
+G37*
+G04 #@! TD.AperFunction*
+G04 #@! TA.AperFunction,NonConductor*
+G36*
+X106214250Y-80278502D02*
+G01*
+X106235224Y-80295405D01*
+X106466224Y-80526405D01*
+X106500250Y-80588717D01*
+X106495185Y-80659532D01*
+X106452638Y-80716368D01*
+X106386118Y-80741179D01*
+X106377129Y-80741500D01*
+X105853871Y-80741500D01*
+X105785750Y-80721498D01*
+X105764776Y-80704595D01*
+X105533776Y-80473595D01*
+X105499750Y-80411283D01*
+X105504815Y-80340468D01*
+X105547362Y-80283632D01*
+X105613882Y-80258821D01*
+X105622871Y-80258500D01*
+X106146129Y-80258500D01*
+X106214250Y-80278502D01*
+G37*
+G04 #@! TD.AperFunction*
+G04 #@! TA.AperFunction,NonConductor*
+G36*
+X107308631Y-83303502D02*
+G01*
+X107355124Y-83357158D01*
+X107366510Y-83409500D01*
+X107366510Y-85496119D01*
+X107346508Y-85564240D01*
+X107329605Y-85585214D01*
+X106235224Y-86679595D01*
+X106172912Y-86713621D01*
+X106146129Y-86716500D01*
+X104759490Y-86716500D01*
+X104691369Y-86696498D01*
+X104644876Y-86642842D01*
+X104633490Y-86590500D01*
+X104633490Y-84503880D01*
+X104653492Y-84435759D01*
+X104670395Y-84414785D01*
+X105764775Y-83320405D01*
+X105827087Y-83286379D01*
+X105853870Y-83283500D01*
+X107240510Y-83283500D01*
+X107308631Y-83303502D01*
+G37*
+G04 #@! TD.AperFunction*
+G04 #@! TA.AperFunction,NonConductor*
+G36*
+X106214249Y-89278502D02*
+G01*
+X106235223Y-89295404D01*
+X106413414Y-89473595D01*
+X106466224Y-89526404D01*
+X106500249Y-89588717D01*
+X106495185Y-89659532D01*
+X106452638Y-89716368D01*
+X106386118Y-89741179D01*
+X106377129Y-89741500D01*
+X105853871Y-89741500D01*
+X105785750Y-89721498D01*
+X105764776Y-89704595D01*
+X105533776Y-89473595D01*
+X105499750Y-89411283D01*
+X105504815Y-89340468D01*
+X105547362Y-89283632D01*
+X105613882Y-89258821D01*
+X105622871Y-89258500D01*
+X106146128Y-89258500D01*
+X106214249Y-89278502D01*
+G37*
+G04 #@! TD.AperFunction*
+G04 #@! TA.AperFunction,NonConductor*
+G36*
+X107308631Y-92303502D02*
+G01*
+X107355124Y-92357158D01*
+X107366510Y-92409500D01*
+X107366510Y-94496119D01*
+X107346508Y-94564240D01*
+X107329605Y-94585214D01*
+X106235224Y-95679595D01*
+X106172912Y-95713621D01*
+X106146129Y-95716500D01*
+X104759490Y-95716500D01*
+X104691369Y-95696498D01*
+X104644876Y-95642842D01*
+X104633490Y-95590500D01*
+X104633490Y-92409500D01*
+X104653492Y-92341379D01*
+X104707148Y-92294886D01*
+X104759490Y-92283500D01*
+X107240510Y-92283500D01*
+X107308631Y-92303502D01*
+G37*
+G04 #@! TD.AperFunction*
+G04 #@! TA.AperFunction,NonConductor*
+G36*
+X106214250Y-98278502D02*
+G01*
+X106235224Y-98295405D01*
+X106466224Y-98526405D01*
+X106500250Y-98588717D01*
+X106495185Y-98659532D01*
+X106452638Y-98716368D01*
+X106386118Y-98741179D01*
+X106377129Y-98741500D01*
+X105853871Y-98741500D01*
+X105785750Y-98721498D01*
+X105764776Y-98704595D01*
+X105533776Y-98473595D01*
+X105499750Y-98411283D01*
+X105504815Y-98340468D01*
+X105547362Y-98283632D01*
+X105613882Y-98258821D01*
+X105622871Y-98258500D01*
+X106146129Y-98258500D01*
+X106214250Y-98278502D01*
+G37*
+G04 #@! TD.AperFunction*
+M02*
diff --git a/HARDWARE/GERBER/lightsticks_extender-F_Mask.gbr b/HARDWARE/GERBER/lightsticks_extender-F_Mask.gbr
new file mode 100644 (file)
index 0000000..c41aa2d
--- /dev/null
@@ -0,0 +1,1547 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1*
+G04 #@! TF.CreationDate,2024-04-05T17:11:51+02:00*
+G04 #@! TF.ProjectId,lightsticks_extender,6c696768-7473-4746-9963-6b735f657874,rev?*
+G04 #@! TF.SameCoordinates,Original*
+G04 #@! TF.FileFunction,Soldermask,Top*
+G04 #@! TF.FilePolarity,Negative*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 7.0.11-7.0.11~ubuntu20.04.1) date 2024-04-05 17:11:51*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 APERTURE END LIST*
+G36*
+X107493915Y-105181995D02*
+G01*
+X107509726Y-105188976D01*
+X107517533Y-105190213D01*
+X107550054Y-105206783D01*
+X107595106Y-105226676D01*
+X107673324Y-105304894D01*
+X107693219Y-105349953D01*
+X107709786Y-105382466D01*
+X107711022Y-105390270D01*
+X107718005Y-105406085D01*
+X107725999Y-105475000D01*
+X107725999Y-105484829D01*
+X107726000Y-105484836D01*
+X107726000Y-106490163D01*
+X107726000Y-106500001D01*
+X107718005Y-106568915D01*
+X107711021Y-106584729D01*
+X107709786Y-106592533D01*
+X107693223Y-106625039D01*
+X107673324Y-106670106D01*
+X107595106Y-106748324D01*
+X107550039Y-106768223D01*
+X107517533Y-106784786D01*
+X107509729Y-106786021D01*
+X107493915Y-106793005D01*
+X107425000Y-106800999D01*
+X107415170Y-106800999D01*
+X107415164Y-106801000D01*
+X104584836Y-106801000D01*
+X104584835Y-106800999D01*
+X104574999Y-106801000D01*
+X104506085Y-106793005D01*
+X104490270Y-106786022D01*
+X104482466Y-106784786D01*
+X104449953Y-106768219D01*
+X104404894Y-106748324D01*
+X104326676Y-106670106D01*
+X104306783Y-106625054D01*
+X104290213Y-106592533D01*
+X104288976Y-106584726D01*
+X104281995Y-106568915D01*
+X104274001Y-106500000D01*
+X104274000Y-106490169D01*
+X104274000Y-106490163D01*
+X104274000Y-105484836D01*
+X104274000Y-105484835D01*
+X104274000Y-105474999D01*
+X104281995Y-105406085D01*
+X104288976Y-105390273D01*
+X104290213Y-105382466D01*
+X104306786Y-105349938D01*
+X104326676Y-105304894D01*
+X104404894Y-105226676D01*
+X104449938Y-105206786D01*
+X104482466Y-105190213D01*
+X104490273Y-105188976D01*
+X104506085Y-105181995D01*
+X104575000Y-105174001D01*
+X104584829Y-105174000D01*
+X104584836Y-105174000D01*
+X107415164Y-105174000D01*
+X107425001Y-105174000D01*
+X107493915Y-105181995D01*
+G37*
+G36*
+X107493915Y-99206995D02*
+G01*
+X107509726Y-99213976D01*
+X107517533Y-99215213D01*
+X107550054Y-99231783D01*
+X107595106Y-99251676D01*
+X107673324Y-99329894D01*
+X107693219Y-99374953D01*
+X107709786Y-99407466D01*
+X107711022Y-99415270D01*
+X107718005Y-99431085D01*
+X107725999Y-99500000D01*
+X107725999Y-99509829D01*
+X107726000Y-99509836D01*
+X107726000Y-100515163D01*
+X107726000Y-100525001D01*
+X107718005Y-100593915D01*
+X107711021Y-100609729D01*
+X107709786Y-100617533D01*
+X107693223Y-100650039D01*
+X107673324Y-100695106D01*
+X107595106Y-100773324D01*
+X107550039Y-100793223D01*
+X107517533Y-100809786D01*
+X107509729Y-100811021D01*
+X107493915Y-100818005D01*
+X107425000Y-100825999D01*
+X107415170Y-100825999D01*
+X107415164Y-100826000D01*
+X104584836Y-100826000D01*
+X104584835Y-100825999D01*
+X104574999Y-100826000D01*
+X104506085Y-100818005D01*
+X104490270Y-100811022D01*
+X104482466Y-100809786D01*
+X104449953Y-100793219D01*
+X104404894Y-100773324D01*
+X104326676Y-100695106D01*
+X104306783Y-100650054D01*
+X104290213Y-100617533D01*
+X104288976Y-100609726D01*
+X104281995Y-100593915D01*
+X104274001Y-100525000D01*
+X104274000Y-100515169D01*
+X104274000Y-100515163D01*
+X104274000Y-99509836D01*
+X104274000Y-99509835D01*
+X104274000Y-99499999D01*
+X104281995Y-99431085D01*
+X104288976Y-99415273D01*
+X104290213Y-99407466D01*
+X104306786Y-99374938D01*
+X104326676Y-99329894D01*
+X104404894Y-99251676D01*
+X104449938Y-99231786D01*
+X104482466Y-99215213D01*
+X104490273Y-99213976D01*
+X104506085Y-99206995D01*
+X104575000Y-99199001D01*
+X104584829Y-99199000D01*
+X104584836Y-99199000D01*
+X107415164Y-99199000D01*
+X107425001Y-99199000D01*
+X107493915Y-99206995D01*
+G37*
+G36*
+X107493915Y-96181995D02*
+G01*
+X107509726Y-96188976D01*
+X107517533Y-96190213D01*
+X107550054Y-96206783D01*
+X107595106Y-96226676D01*
+X107673324Y-96304894D01*
+X107693219Y-96349953D01*
+X107709786Y-96382466D01*
+X107711022Y-96390270D01*
+X107718005Y-96406085D01*
+X107725999Y-96475000D01*
+X107725999Y-96484829D01*
+X107726000Y-96484836D01*
+X107726000Y-97490163D01*
+X107726000Y-97500001D01*
+X107718005Y-97568915D01*
+X107711021Y-97584729D01*
+X107709786Y-97592533D01*
+X107693223Y-97625039D01*
+X107673324Y-97670106D01*
+X107595106Y-97748324D01*
+X107550039Y-97768223D01*
+X107517533Y-97784786D01*
+X107509729Y-97786021D01*
+X107493915Y-97793005D01*
+X107425000Y-97800999D01*
+X107415170Y-97800999D01*
+X107415164Y-97801000D01*
+X104584836Y-97801000D01*
+X104584835Y-97800999D01*
+X104574999Y-97801000D01*
+X104506085Y-97793005D01*
+X104490270Y-97786022D01*
+X104482466Y-97784786D01*
+X104449953Y-97768219D01*
+X104404894Y-97748324D01*
+X104326676Y-97670106D01*
+X104306783Y-97625054D01*
+X104290213Y-97592533D01*
+X104288976Y-97584726D01*
+X104281995Y-97568915D01*
+X104274001Y-97500000D01*
+X104274000Y-97490169D01*
+X104274000Y-97490163D01*
+X104274000Y-96484836D01*
+X104274000Y-96484835D01*
+X104274000Y-96474999D01*
+X104281995Y-96406085D01*
+X104288976Y-96390273D01*
+X104290213Y-96382466D01*
+X104306786Y-96349938D01*
+X104326676Y-96304894D01*
+X104404894Y-96226676D01*
+X104449938Y-96206786D01*
+X104482466Y-96190213D01*
+X104490273Y-96188976D01*
+X104506085Y-96181995D01*
+X104575000Y-96174001D01*
+X104584829Y-96174000D01*
+X104584836Y-96174000D01*
+X107415164Y-96174000D01*
+X107425001Y-96174000D01*
+X107493915Y-96181995D01*
+G37*
+G36*
+X107493915Y-90206995D02*
+G01*
+X107509726Y-90213976D01*
+X107517533Y-90215213D01*
+X107550054Y-90231783D01*
+X107595106Y-90251676D01*
+X107673324Y-90329894D01*
+X107693219Y-90374953D01*
+X107709786Y-90407466D01*
+X107711022Y-90415270D01*
+X107718005Y-90431085D01*
+X107725999Y-90500000D01*
+X107725999Y-90509829D01*
+X107726000Y-90509836D01*
+X107726000Y-91515163D01*
+X107726000Y-91525001D01*
+X107718005Y-91593915D01*
+X107711021Y-91609729D01*
+X107709786Y-91617533D01*
+X107693223Y-91650039D01*
+X107673324Y-91695106D01*
+X107595106Y-91773324D01*
+X107550039Y-91793223D01*
+X107517533Y-91809786D01*
+X107509729Y-91811021D01*
+X107493915Y-91818005D01*
+X107425000Y-91825999D01*
+X107415170Y-91825999D01*
+X107415164Y-91826000D01*
+X104584836Y-91826000D01*
+X104584835Y-91825999D01*
+X104574999Y-91826000D01*
+X104506085Y-91818005D01*
+X104490270Y-91811022D01*
+X104482466Y-91809786D01*
+X104449953Y-91793219D01*
+X104404894Y-91773324D01*
+X104326676Y-91695106D01*
+X104306783Y-91650054D01*
+X104290213Y-91617533D01*
+X104288976Y-91609726D01*
+X104281995Y-91593915D01*
+X104274001Y-91525000D01*
+X104274000Y-91515169D01*
+X104274000Y-91515163D01*
+X104274000Y-90509836D01*
+X104274000Y-90509835D01*
+X104274000Y-90499999D01*
+X104281995Y-90431085D01*
+X104288976Y-90415273D01*
+X104290213Y-90407466D01*
+X104306786Y-90374938D01*
+X104326676Y-90329894D01*
+X104404894Y-90251676D01*
+X104449938Y-90231786D01*
+X104482466Y-90215213D01*
+X104490273Y-90213976D01*
+X104506085Y-90206995D01*
+X104575000Y-90199001D01*
+X104584829Y-90199000D01*
+X104584836Y-90199000D01*
+X107415164Y-90199000D01*
+X107425001Y-90199000D01*
+X107493915Y-90206995D01*
+G37*
+G36*
+X107493915Y-87181995D02*
+G01*
+X107509726Y-87188976D01*
+X107517533Y-87190213D01*
+X107550054Y-87206783D01*
+X107595106Y-87226676D01*
+X107673324Y-87304894D01*
+X107693219Y-87349953D01*
+X107709786Y-87382466D01*
+X107711022Y-87390270D01*
+X107718005Y-87406085D01*
+X107725999Y-87475000D01*
+X107725999Y-87484829D01*
+X107726000Y-87484836D01*
+X107726000Y-88490163D01*
+X107726000Y-88500001D01*
+X107718005Y-88568915D01*
+X107711021Y-88584729D01*
+X107709786Y-88592533D01*
+X107693223Y-88625039D01*
+X107673324Y-88670106D01*
+X107595106Y-88748324D01*
+X107550039Y-88768223D01*
+X107517533Y-88784786D01*
+X107509729Y-88786021D01*
+X107493915Y-88793005D01*
+X107425000Y-88800999D01*
+X107415170Y-88800999D01*
+X107415164Y-88801000D01*
+X104584836Y-88801000D01*
+X104584835Y-88800999D01*
+X104574999Y-88801000D01*
+X104506085Y-88793005D01*
+X104490270Y-88786022D01*
+X104482466Y-88784786D01*
+X104449953Y-88768219D01*
+X104404894Y-88748324D01*
+X104326676Y-88670106D01*
+X104306783Y-88625054D01*
+X104290213Y-88592533D01*
+X104288976Y-88584726D01*
+X104281995Y-88568915D01*
+X104274001Y-88500000D01*
+X104274000Y-88490169D01*
+X104274000Y-88490163D01*
+X104274000Y-87484836D01*
+X104274000Y-87484835D01*
+X104274000Y-87474999D01*
+X104281995Y-87406085D01*
+X104288976Y-87390273D01*
+X104290213Y-87382466D01*
+X104306786Y-87349938D01*
+X104326676Y-87304894D01*
+X104404894Y-87226676D01*
+X104449938Y-87206786D01*
+X104482466Y-87190213D01*
+X104490273Y-87188976D01*
+X104506085Y-87181995D01*
+X104575000Y-87174001D01*
+X104584829Y-87174000D01*
+X104584836Y-87174000D01*
+X107415164Y-87174000D01*
+X107425001Y-87174000D01*
+X107493915Y-87181995D01*
+G37*
+G36*
+X107493915Y-81206995D02*
+G01*
+X107509726Y-81213976D01*
+X107517533Y-81215213D01*
+X107550054Y-81231783D01*
+X107595106Y-81251676D01*
+X107673324Y-81329894D01*
+X107693219Y-81374953D01*
+X107709786Y-81407466D01*
+X107711022Y-81415270D01*
+X107718005Y-81431085D01*
+X107725999Y-81500000D01*
+X107725999Y-81509829D01*
+X107726000Y-81509836D01*
+X107726000Y-82515163D01*
+X107726000Y-82525001D01*
+X107718005Y-82593915D01*
+X107711021Y-82609729D01*
+X107709786Y-82617533D01*
+X107693223Y-82650039D01*
+X107673324Y-82695106D01*
+X107595106Y-82773324D01*
+X107550039Y-82793223D01*
+X107517533Y-82809786D01*
+X107509729Y-82811021D01*
+X107493915Y-82818005D01*
+X107425000Y-82825999D01*
+X107415170Y-82825999D01*
+X107415164Y-82826000D01*
+X104584836Y-82826000D01*
+X104584835Y-82825999D01*
+X104574999Y-82826000D01*
+X104506085Y-82818005D01*
+X104490270Y-82811022D01*
+X104482466Y-82809786D01*
+X104449953Y-82793219D01*
+X104404894Y-82773324D01*
+X104326676Y-82695106D01*
+X104306783Y-82650054D01*
+X104290213Y-82617533D01*
+X104288976Y-82609726D01*
+X104281995Y-82593915D01*
+X104274001Y-82525000D01*
+X104274000Y-82515169D01*
+X104274000Y-82515163D01*
+X104274000Y-81509836D01*
+X104274000Y-81509835D01*
+X104274000Y-81499999D01*
+X104281995Y-81431085D01*
+X104288976Y-81415273D01*
+X104290213Y-81407466D01*
+X104306786Y-81374938D01*
+X104326676Y-81329894D01*
+X104404894Y-81251676D01*
+X104449938Y-81231786D01*
+X104482466Y-81215213D01*
+X104490273Y-81213976D01*
+X104506085Y-81206995D01*
+X104575000Y-81199001D01*
+X104584829Y-81199000D01*
+X104584836Y-81199000D01*
+X107415164Y-81199000D01*
+X107425001Y-81199000D01*
+X107493915Y-81206995D01*
+G37*
+G36*
+X107493915Y-78181995D02*
+G01*
+X107509726Y-78188976D01*
+X107517533Y-78190213D01*
+X107550054Y-78206783D01*
+X107595106Y-78226676D01*
+X107673324Y-78304894D01*
+X107693219Y-78349953D01*
+X107709786Y-78382466D01*
+X107711022Y-78390270D01*
+X107718005Y-78406085D01*
+X107725999Y-78475000D01*
+X107725999Y-78484829D01*
+X107726000Y-78484836D01*
+X107726000Y-79490163D01*
+X107726000Y-79500001D01*
+X107718005Y-79568915D01*
+X107711021Y-79584729D01*
+X107709786Y-79592533D01*
+X107693223Y-79625039D01*
+X107673324Y-79670106D01*
+X107595106Y-79748324D01*
+X107550039Y-79768223D01*
+X107517533Y-79784786D01*
+X107509729Y-79786021D01*
+X107493915Y-79793005D01*
+X107425000Y-79800999D01*
+X107415170Y-79800999D01*
+X107415164Y-79801000D01*
+X104584836Y-79801000D01*
+X104584835Y-79800999D01*
+X104574999Y-79801000D01*
+X104506085Y-79793005D01*
+X104490270Y-79786022D01*
+X104482466Y-79784786D01*
+X104449953Y-79768219D01*
+X104404894Y-79748324D01*
+X104326676Y-79670106D01*
+X104306783Y-79625054D01*
+X104290213Y-79592533D01*
+X104288976Y-79584726D01*
+X104281995Y-79568915D01*
+X104274001Y-79500000D01*
+X104274000Y-79490169D01*
+X104274000Y-79490163D01*
+X104274000Y-78484836D01*
+X104274000Y-78484835D01*
+X104274000Y-78474999D01*
+X104281995Y-78406085D01*
+X104288976Y-78390273D01*
+X104290213Y-78382466D01*
+X104306786Y-78349938D01*
+X104326676Y-78304894D01*
+X104404894Y-78226676D01*
+X104449938Y-78206786D01*
+X104482466Y-78190213D01*
+X104490273Y-78188976D01*
+X104506085Y-78181995D01*
+X104575000Y-78174001D01*
+X104584829Y-78174000D01*
+X104584836Y-78174000D01*
+X107415164Y-78174000D01*
+X107425001Y-78174000D01*
+X107493915Y-78181995D01*
+G37*
+G36*
+X107493915Y-72206995D02*
+G01*
+X107509726Y-72213976D01*
+X107517533Y-72215213D01*
+X107550054Y-72231783D01*
+X107595106Y-72251676D01*
+X107673324Y-72329894D01*
+X107693219Y-72374953D01*
+X107709786Y-72407466D01*
+X107711022Y-72415270D01*
+X107718005Y-72431085D01*
+X107725999Y-72500000D01*
+X107725999Y-72509829D01*
+X107726000Y-72509836D01*
+X107726000Y-73515163D01*
+X107726000Y-73525001D01*
+X107718005Y-73593915D01*
+X107711021Y-73609729D01*
+X107709786Y-73617533D01*
+X107693223Y-73650039D01*
+X107673324Y-73695106D01*
+X107595106Y-73773324D01*
+X107550039Y-73793223D01*
+X107517533Y-73809786D01*
+X107509729Y-73811021D01*
+X107493915Y-73818005D01*
+X107425000Y-73825999D01*
+X107415170Y-73825999D01*
+X107415164Y-73826000D01*
+X104584836Y-73826000D01*
+X104584835Y-73825999D01*
+X104574999Y-73826000D01*
+X104506085Y-73818005D01*
+X104490270Y-73811022D01*
+X104482466Y-73809786D01*
+X104449953Y-73793219D01*
+X104404894Y-73773324D01*
+X104326676Y-73695106D01*
+X104306783Y-73650054D01*
+X104290213Y-73617533D01*
+X104288976Y-73609726D01*
+X104281995Y-73593915D01*
+X104274001Y-73525000D01*
+X104274000Y-73515169D01*
+X104274000Y-73515163D01*
+X104274000Y-72509836D01*
+X104274000Y-72509835D01*
+X104274000Y-72499999D01*
+X104281995Y-72431085D01*
+X104288976Y-72415273D01*
+X104290213Y-72407466D01*
+X104306786Y-72374938D01*
+X104326676Y-72329894D01*
+X104404894Y-72251676D01*
+X104449938Y-72231786D01*
+X104482466Y-72215213D01*
+X104490273Y-72213976D01*
+X104506085Y-72206995D01*
+X104575000Y-72199001D01*
+X104584829Y-72199000D01*
+X104584836Y-72199000D01*
+X107415164Y-72199000D01*
+X107425001Y-72199000D01*
+X107493915Y-72206995D01*
+G37*
+G36*
+X107493915Y-69181995D02*
+G01*
+X107509726Y-69188976D01*
+X107517533Y-69190213D01*
+X107550054Y-69206783D01*
+X107595106Y-69226676D01*
+X107673324Y-69304894D01*
+X107693219Y-69349953D01*
+X107709786Y-69382466D01*
+X107711022Y-69390270D01*
+X107718005Y-69406085D01*
+X107725999Y-69475000D01*
+X107725999Y-69484829D01*
+X107726000Y-69484836D01*
+X107726000Y-70490163D01*
+X107726000Y-70500001D01*
+X107718005Y-70568915D01*
+X107711021Y-70584729D01*
+X107709786Y-70592533D01*
+X107693223Y-70625039D01*
+X107673324Y-70670106D01*
+X107595106Y-70748324D01*
+X107550039Y-70768223D01*
+X107517533Y-70784786D01*
+X107509729Y-70786021D01*
+X107493915Y-70793005D01*
+X107425000Y-70800999D01*
+X107415170Y-70800999D01*
+X107415164Y-70801000D01*
+X104584836Y-70801000D01*
+X104584835Y-70800999D01*
+X104574999Y-70801000D01*
+X104506085Y-70793005D01*
+X104490270Y-70786022D01*
+X104482466Y-70784786D01*
+X104449953Y-70768219D01*
+X104404894Y-70748324D01*
+X104326676Y-70670106D01*
+X104306783Y-70625054D01*
+X104290213Y-70592533D01*
+X104288976Y-70584726D01*
+X104281995Y-70568915D01*
+X104274001Y-70500000D01*
+X104274000Y-70490169D01*
+X104274000Y-70490163D01*
+X104274000Y-69484836D01*
+X104274000Y-69484835D01*
+X104274000Y-69474999D01*
+X104281995Y-69406085D01*
+X104288976Y-69390273D01*
+X104290213Y-69382466D01*
+X104306786Y-69349938D01*
+X104326676Y-69304894D01*
+X104404894Y-69226676D01*
+X104449938Y-69206786D01*
+X104482466Y-69190213D01*
+X104490273Y-69188976D01*
+X104506085Y-69181995D01*
+X104575000Y-69174001D01*
+X104584829Y-69174000D01*
+X104584836Y-69174000D01*
+X107415164Y-69174000D01*
+X107425001Y-69174000D01*
+X107493915Y-69181995D01*
+G37*
+G36*
+X107493915Y-63206995D02*
+G01*
+X107509726Y-63213976D01*
+X107517533Y-63215213D01*
+X107550054Y-63231783D01*
+X107595106Y-63251676D01*
+X107673324Y-63329894D01*
+X107693219Y-63374953D01*
+X107709786Y-63407466D01*
+X107711022Y-63415270D01*
+X107718005Y-63431085D01*
+X107725999Y-63500000D01*
+X107725999Y-63509829D01*
+X107726000Y-63509836D01*
+X107726000Y-64515163D01*
+X107726000Y-64525001D01*
+X107718005Y-64593915D01*
+X107711021Y-64609729D01*
+X107709786Y-64617533D01*
+X107693223Y-64650039D01*
+X107673324Y-64695106D01*
+X107595106Y-64773324D01*
+X107550039Y-64793223D01*
+X107517533Y-64809786D01*
+X107509729Y-64811021D01*
+X107493915Y-64818005D01*
+X107425000Y-64825999D01*
+X107415170Y-64825999D01*
+X107415164Y-64826000D01*
+X104584836Y-64826000D01*
+X104584835Y-64825999D01*
+X104574999Y-64826000D01*
+X104506085Y-64818005D01*
+X104490270Y-64811022D01*
+X104482466Y-64809786D01*
+X104449953Y-64793219D01*
+X104404894Y-64773324D01*
+X104326676Y-64695106D01*
+X104306783Y-64650054D01*
+X104290213Y-64617533D01*
+X104288976Y-64609726D01*
+X104281995Y-64593915D01*
+X104274001Y-64525000D01*
+X104274000Y-64515169D01*
+X104274000Y-64515163D01*
+X104274000Y-63509836D01*
+X104274000Y-63509835D01*
+X104274000Y-63499999D01*
+X104281995Y-63431085D01*
+X104288976Y-63415273D01*
+X104290213Y-63407466D01*
+X104306786Y-63374938D01*
+X104326676Y-63329894D01*
+X104404894Y-63251676D01*
+X104449938Y-63231786D01*
+X104482466Y-63215213D01*
+X104490273Y-63213976D01*
+X104506085Y-63206995D01*
+X104575000Y-63199001D01*
+X104584829Y-63199000D01*
+X104584836Y-63199000D01*
+X107415164Y-63199000D01*
+X107425001Y-63199000D01*
+X107493915Y-63206995D01*
+G37*
+G36*
+X107493915Y-60181995D02*
+G01*
+X107509726Y-60188976D01*
+X107517533Y-60190213D01*
+X107550054Y-60206783D01*
+X107595106Y-60226676D01*
+X107673324Y-60304894D01*
+X107693219Y-60349953D01*
+X107709786Y-60382466D01*
+X107711022Y-60390270D01*
+X107718005Y-60406085D01*
+X107725999Y-60475000D01*
+X107725999Y-60484829D01*
+X107726000Y-60484836D01*
+X107726000Y-61490163D01*
+X107726000Y-61500001D01*
+X107718005Y-61568915D01*
+X107711021Y-61584729D01*
+X107709786Y-61592533D01*
+X107693223Y-61625039D01*
+X107673324Y-61670106D01*
+X107595106Y-61748324D01*
+X107550039Y-61768223D01*
+X107517533Y-61784786D01*
+X107509729Y-61786021D01*
+X107493915Y-61793005D01*
+X107425000Y-61800999D01*
+X107415170Y-61800999D01*
+X107415164Y-61801000D01*
+X104584836Y-61801000D01*
+X104584835Y-61800999D01*
+X104574999Y-61801000D01*
+X104506085Y-61793005D01*
+X104490270Y-61786022D01*
+X104482466Y-61784786D01*
+X104449953Y-61768219D01*
+X104404894Y-61748324D01*
+X104326676Y-61670106D01*
+X104306783Y-61625054D01*
+X104290213Y-61592533D01*
+X104288976Y-61584726D01*
+X104281995Y-61568915D01*
+X104274001Y-61500000D01*
+X104274000Y-61490169D01*
+X104274000Y-61490163D01*
+X104274000Y-60484836D01*
+X104274000Y-60484835D01*
+X104274000Y-60474999D01*
+X104281995Y-60406085D01*
+X104288976Y-60390273D01*
+X104290213Y-60382466D01*
+X104306786Y-60349938D01*
+X104326676Y-60304894D01*
+X104404894Y-60226676D01*
+X104449938Y-60206786D01*
+X104482466Y-60190213D01*
+X104490273Y-60188976D01*
+X104506085Y-60181995D01*
+X104575000Y-60174001D01*
+X104584829Y-60174000D01*
+X104584836Y-60174000D01*
+X107415164Y-60174000D01*
+X107425001Y-60174000D01*
+X107493915Y-60181995D01*
+G37*
+G36*
+X107493915Y-54206995D02*
+G01*
+X107509726Y-54213976D01*
+X107517533Y-54215213D01*
+X107550054Y-54231783D01*
+X107595106Y-54251676D01*
+X107673324Y-54329894D01*
+X107693219Y-54374953D01*
+X107709786Y-54407466D01*
+X107711022Y-54415270D01*
+X107718005Y-54431085D01*
+X107725999Y-54500000D01*
+X107725999Y-54509829D01*
+X107726000Y-54509836D01*
+X107726000Y-55515163D01*
+X107726000Y-55525001D01*
+X107718005Y-55593915D01*
+X107711021Y-55609729D01*
+X107709786Y-55617533D01*
+X107693223Y-55650039D01*
+X107673324Y-55695106D01*
+X107595106Y-55773324D01*
+X107550039Y-55793223D01*
+X107517533Y-55809786D01*
+X107509729Y-55811021D01*
+X107493915Y-55818005D01*
+X107425000Y-55825999D01*
+X107415170Y-55825999D01*
+X107415164Y-55826000D01*
+X104584836Y-55826000D01*
+X104584835Y-55825999D01*
+X104574999Y-55826000D01*
+X104506085Y-55818005D01*
+X104490270Y-55811022D01*
+X104482466Y-55809786D01*
+X104449953Y-55793219D01*
+X104404894Y-55773324D01*
+X104326676Y-55695106D01*
+X104306783Y-55650054D01*
+X104290213Y-55617533D01*
+X104288976Y-55609726D01*
+X104281995Y-55593915D01*
+X104274001Y-55525000D01*
+X104274000Y-55515169D01*
+X104274000Y-55515163D01*
+X104274000Y-54509836D01*
+X104274000Y-54509835D01*
+X104274000Y-54499999D01*
+X104281995Y-54431085D01*
+X104288976Y-54415273D01*
+X104290213Y-54407466D01*
+X104306786Y-54374938D01*
+X104326676Y-54329894D01*
+X104404894Y-54251676D01*
+X104449938Y-54231786D01*
+X104482466Y-54215213D01*
+X104490273Y-54213976D01*
+X104506085Y-54206995D01*
+X104575000Y-54199001D01*
+X104584829Y-54199000D01*
+X104584836Y-54199000D01*
+X107415164Y-54199000D01*
+X107425001Y-54199000D01*
+X107493915Y-54206995D01*
+G37*
+G36*
+X107493915Y-51181995D02*
+G01*
+X107509726Y-51188976D01*
+X107517533Y-51190213D01*
+X107550054Y-51206783D01*
+X107595106Y-51226676D01*
+X107673324Y-51304894D01*
+X107693219Y-51349953D01*
+X107709786Y-51382466D01*
+X107711022Y-51390270D01*
+X107718005Y-51406085D01*
+X107725999Y-51475000D01*
+X107725999Y-51484829D01*
+X107726000Y-51484836D01*
+X107726000Y-52490163D01*
+X107726000Y-52500001D01*
+X107718005Y-52568915D01*
+X107711021Y-52584729D01*
+X107709786Y-52592533D01*
+X107693223Y-52625039D01*
+X107673324Y-52670106D01*
+X107595106Y-52748324D01*
+X107550039Y-52768223D01*
+X107517533Y-52784786D01*
+X107509729Y-52786021D01*
+X107493915Y-52793005D01*
+X107425000Y-52800999D01*
+X107415170Y-52800999D01*
+X107415164Y-52801000D01*
+X104584836Y-52801000D01*
+X104584835Y-52800999D01*
+X104574999Y-52801000D01*
+X104506085Y-52793005D01*
+X104490270Y-52786022D01*
+X104482466Y-52784786D01*
+X104449953Y-52768219D01*
+X104404894Y-52748324D01*
+X104326676Y-52670106D01*
+X104306783Y-52625054D01*
+X104290213Y-52592533D01*
+X104288976Y-52584726D01*
+X104281995Y-52568915D01*
+X104274001Y-52500000D01*
+X104274000Y-52490169D01*
+X104274000Y-52490163D01*
+X104274000Y-51484836D01*
+X104274000Y-51484835D01*
+X104274000Y-51474999D01*
+X104281995Y-51406085D01*
+X104288976Y-51390273D01*
+X104290213Y-51382466D01*
+X104306786Y-51349938D01*
+X104326676Y-51304894D01*
+X104404894Y-51226676D01*
+X104449938Y-51206786D01*
+X104482466Y-51190213D01*
+X104490273Y-51188976D01*
+X104506085Y-51181995D01*
+X104575000Y-51174001D01*
+X104584829Y-51174000D01*
+X104584836Y-51174000D01*
+X107415164Y-51174000D01*
+X107425001Y-51174000D01*
+X107493915Y-51181995D01*
+G37*
+G36*
+X107493915Y-45206995D02*
+G01*
+X107509726Y-45213976D01*
+X107517533Y-45215213D01*
+X107550054Y-45231783D01*
+X107595106Y-45251676D01*
+X107673324Y-45329894D01*
+X107693219Y-45374953D01*
+X107709786Y-45407466D01*
+X107711022Y-45415270D01*
+X107718005Y-45431085D01*
+X107725999Y-45500000D01*
+X107725999Y-45509829D01*
+X107726000Y-45509836D01*
+X107726000Y-46515163D01*
+X107726000Y-46525001D01*
+X107718005Y-46593915D01*
+X107711021Y-46609729D01*
+X107709786Y-46617533D01*
+X107693223Y-46650039D01*
+X107673324Y-46695106D01*
+X107595106Y-46773324D01*
+X107550039Y-46793223D01*
+X107517533Y-46809786D01*
+X107509729Y-46811021D01*
+X107493915Y-46818005D01*
+X107425000Y-46825999D01*
+X107415170Y-46825999D01*
+X107415164Y-46826000D01*
+X104584836Y-46826000D01*
+X104584835Y-46825999D01*
+X104574999Y-46826000D01*
+X104506085Y-46818005D01*
+X104490270Y-46811022D01*
+X104482466Y-46809786D01*
+X104449953Y-46793219D01*
+X104404894Y-46773324D01*
+X104326676Y-46695106D01*
+X104306783Y-46650054D01*
+X104290213Y-46617533D01*
+X104288976Y-46609726D01*
+X104281995Y-46593915D01*
+X104274001Y-46525000D01*
+X104274000Y-46515169D01*
+X104274000Y-46515163D01*
+X104274000Y-45509836D01*
+X104274000Y-45509835D01*
+X104274000Y-45499999D01*
+X104281995Y-45431085D01*
+X104288976Y-45415273D01*
+X104290213Y-45407466D01*
+X104306786Y-45374938D01*
+X104326676Y-45329894D01*
+X104404894Y-45251676D01*
+X104449938Y-45231786D01*
+X104482466Y-45215213D01*
+X104490273Y-45213976D01*
+X104506085Y-45206995D01*
+X104575000Y-45199001D01*
+X104584829Y-45199000D01*
+X104584836Y-45199000D01*
+X107415164Y-45199000D01*
+X107425001Y-45199000D01*
+X107493915Y-45206995D01*
+G37*
+G36*
+X107493915Y-42181995D02*
+G01*
+X107509726Y-42188976D01*
+X107517533Y-42190213D01*
+X107550054Y-42206783D01*
+X107595106Y-42226676D01*
+X107673324Y-42304894D01*
+X107693219Y-42349953D01*
+X107709786Y-42382466D01*
+X107711022Y-42390270D01*
+X107718005Y-42406085D01*
+X107725999Y-42475000D01*
+X107725999Y-42484829D01*
+X107726000Y-42484836D01*
+X107726000Y-43490163D01*
+X107726000Y-43500001D01*
+X107718005Y-43568915D01*
+X107711021Y-43584729D01*
+X107709786Y-43592533D01*
+X107693223Y-43625039D01*
+X107673324Y-43670106D01*
+X107595106Y-43748324D01*
+X107550039Y-43768223D01*
+X107517533Y-43784786D01*
+X107509729Y-43786021D01*
+X107493915Y-43793005D01*
+X107425000Y-43800999D01*
+X107415170Y-43800999D01*
+X107415164Y-43801000D01*
+X104584836Y-43801000D01*
+X104584835Y-43800999D01*
+X104574999Y-43801000D01*
+X104506085Y-43793005D01*
+X104490270Y-43786022D01*
+X104482466Y-43784786D01*
+X104449953Y-43768219D01*
+X104404894Y-43748324D01*
+X104326676Y-43670106D01*
+X104306783Y-43625054D01*
+X104290213Y-43592533D01*
+X104288976Y-43584726D01*
+X104281995Y-43568915D01*
+X104274001Y-43500000D01*
+X104274000Y-43490169D01*
+X104274000Y-43490163D01*
+X104274000Y-42484836D01*
+X104274000Y-42484835D01*
+X104274000Y-42474999D01*
+X104281995Y-42406085D01*
+X104288976Y-42390273D01*
+X104290213Y-42382466D01*
+X104306786Y-42349938D01*
+X104326676Y-42304894D01*
+X104404894Y-42226676D01*
+X104449938Y-42206786D01*
+X104482466Y-42190213D01*
+X104490273Y-42188976D01*
+X104506085Y-42181995D01*
+X104575000Y-42174001D01*
+X104584829Y-42174000D01*
+X104584836Y-42174000D01*
+X107415164Y-42174000D01*
+X107425001Y-42174000D01*
+X107493915Y-42181995D01*
+G37*
+G36*
+X107493915Y-36206995D02*
+G01*
+X107509726Y-36213976D01*
+X107517533Y-36215213D01*
+X107550054Y-36231783D01*
+X107595106Y-36251676D01*
+X107673324Y-36329894D01*
+X107693219Y-36374953D01*
+X107709786Y-36407466D01*
+X107711022Y-36415270D01*
+X107718005Y-36431085D01*
+X107725999Y-36500000D01*
+X107725999Y-36509829D01*
+X107726000Y-36509836D01*
+X107726000Y-37515163D01*
+X107726000Y-37525001D01*
+X107718005Y-37593915D01*
+X107711021Y-37609729D01*
+X107709786Y-37617533D01*
+X107693223Y-37650039D01*
+X107673324Y-37695106D01*
+X107595106Y-37773324D01*
+X107550039Y-37793223D01*
+X107517533Y-37809786D01*
+X107509729Y-37811021D01*
+X107493915Y-37818005D01*
+X107425000Y-37825999D01*
+X107415170Y-37825999D01*
+X107415164Y-37826000D01*
+X104584836Y-37826000D01*
+X104584835Y-37825999D01*
+X104574999Y-37826000D01*
+X104506085Y-37818005D01*
+X104490270Y-37811022D01*
+X104482466Y-37809786D01*
+X104449953Y-37793219D01*
+X104404894Y-37773324D01*
+X104326676Y-37695106D01*
+X104306783Y-37650054D01*
+X104290213Y-37617533D01*
+X104288976Y-37609726D01*
+X104281995Y-37593915D01*
+X104274001Y-37525000D01*
+X104274000Y-37515169D01*
+X104274000Y-37515163D01*
+X104274000Y-36509836D01*
+X104274000Y-36509835D01*
+X104274000Y-36499999D01*
+X104281995Y-36431085D01*
+X104288976Y-36415273D01*
+X104290213Y-36407466D01*
+X104306786Y-36374938D01*
+X104326676Y-36329894D01*
+X104404894Y-36251676D01*
+X104449938Y-36231786D01*
+X104482466Y-36215213D01*
+X104490273Y-36213976D01*
+X104506085Y-36206995D01*
+X104575000Y-36199001D01*
+X104584829Y-36199000D01*
+X104584836Y-36199000D01*
+X107415164Y-36199000D01*
+X107425001Y-36199000D01*
+X107493915Y-36206995D01*
+G37*
+G36*
+X107493915Y-33181995D02*
+G01*
+X107509726Y-33188976D01*
+X107517533Y-33190213D01*
+X107550054Y-33206783D01*
+X107595106Y-33226676D01*
+X107673324Y-33304894D01*
+X107693219Y-33349953D01*
+X107709786Y-33382466D01*
+X107711022Y-33390270D01*
+X107718005Y-33406085D01*
+X107725999Y-33475000D01*
+X107725999Y-33484829D01*
+X107726000Y-33484836D01*
+X107726000Y-34490163D01*
+X107726000Y-34500001D01*
+X107718005Y-34568915D01*
+X107711021Y-34584729D01*
+X107709786Y-34592533D01*
+X107693223Y-34625039D01*
+X107673324Y-34670106D01*
+X107595106Y-34748324D01*
+X107550039Y-34768223D01*
+X107517533Y-34784786D01*
+X107509729Y-34786021D01*
+X107493915Y-34793005D01*
+X107425000Y-34800999D01*
+X107415170Y-34800999D01*
+X107415164Y-34801000D01*
+X104584836Y-34801000D01*
+X104584835Y-34800999D01*
+X104574999Y-34801000D01*
+X104506085Y-34793005D01*
+X104490270Y-34786022D01*
+X104482466Y-34784786D01*
+X104449953Y-34768219D01*
+X104404894Y-34748324D01*
+X104326676Y-34670106D01*
+X104306783Y-34625054D01*
+X104290213Y-34592533D01*
+X104288976Y-34584726D01*
+X104281995Y-34568915D01*
+X104274001Y-34500000D01*
+X104274000Y-34490169D01*
+X104274000Y-34490163D01*
+X104274000Y-33484836D01*
+X104274000Y-33484835D01*
+X104274000Y-33474999D01*
+X104281995Y-33406085D01*
+X104288976Y-33390273D01*
+X104290213Y-33382466D01*
+X104306786Y-33349938D01*
+X104326676Y-33304894D01*
+X104404894Y-33226676D01*
+X104449938Y-33206786D01*
+X104482466Y-33190213D01*
+X104490273Y-33188976D01*
+X104506085Y-33181995D01*
+X104575000Y-33174001D01*
+X104584829Y-33174000D01*
+X104584836Y-33174000D01*
+X107415164Y-33174000D01*
+X107425001Y-33174000D01*
+X107493915Y-33181995D01*
+G37*
+G36*
+X107493915Y-27206995D02*
+G01*
+X107509726Y-27213976D01*
+X107517533Y-27215213D01*
+X107550054Y-27231783D01*
+X107595106Y-27251676D01*
+X107673324Y-27329894D01*
+X107693219Y-27374953D01*
+X107709786Y-27407466D01*
+X107711022Y-27415270D01*
+X107718005Y-27431085D01*
+X107725999Y-27500000D01*
+X107725999Y-27509829D01*
+X107726000Y-27509836D01*
+X107726000Y-28515163D01*
+X107726000Y-28525001D01*
+X107718005Y-28593915D01*
+X107711021Y-28609729D01*
+X107709786Y-28617533D01*
+X107693223Y-28650039D01*
+X107673324Y-28695106D01*
+X107595106Y-28773324D01*
+X107550039Y-28793223D01*
+X107517533Y-28809786D01*
+X107509729Y-28811021D01*
+X107493915Y-28818005D01*
+X107425000Y-28825999D01*
+X107415170Y-28825999D01*
+X107415164Y-28826000D01*
+X104584836Y-28826000D01*
+X104584835Y-28825999D01*
+X104574999Y-28826000D01*
+X104506085Y-28818005D01*
+X104490270Y-28811022D01*
+X104482466Y-28809786D01*
+X104449953Y-28793219D01*
+X104404894Y-28773324D01*
+X104326676Y-28695106D01*
+X104306783Y-28650054D01*
+X104290213Y-28617533D01*
+X104288976Y-28609726D01*
+X104281995Y-28593915D01*
+X104274001Y-28525000D01*
+X104274000Y-28515169D01*
+X104274000Y-28515163D01*
+X104274000Y-27509836D01*
+X104274000Y-27509835D01*
+X104274000Y-27499999D01*
+X104281995Y-27431085D01*
+X104288976Y-27415273D01*
+X104290213Y-27407466D01*
+X104306786Y-27374938D01*
+X104326676Y-27329894D01*
+X104404894Y-27251676D01*
+X104449938Y-27231786D01*
+X104482466Y-27215213D01*
+X104490273Y-27213976D01*
+X104506085Y-27206995D01*
+X104575000Y-27199001D01*
+X104584829Y-27199000D01*
+X104584836Y-27199000D01*
+X107415164Y-27199000D01*
+X107425001Y-27199000D01*
+X107493915Y-27206995D01*
+G37*
+G36*
+X105368914Y-24256995D02*
+G01*
+X105384726Y-24263976D01*
+X105392531Y-24265213D01*
+X105425039Y-24281776D01*
+X105470106Y-24301676D01*
+X105548324Y-24379894D01*
+X105568226Y-24424967D01*
+X105584786Y-24457468D01*
+X105586021Y-24465270D01*
+X105593005Y-24481086D01*
+X105601000Y-24550000D01*
+X105601000Y-25450000D01*
+X105593005Y-25518914D01*
+X105586021Y-25534729D01*
+X105584786Y-25542531D01*
+X105568229Y-25575024D01*
+X105548324Y-25620106D01*
+X105470106Y-25698324D01*
+X105425024Y-25718229D01*
+X105392531Y-25734786D01*
+X105384729Y-25736021D01*
+X105368914Y-25743005D01*
+X105300000Y-25751000D01*
+X104650000Y-25751000D01*
+X104581086Y-25743005D01*
+X104565270Y-25736021D01*
+X104557468Y-25734786D01*
+X104524967Y-25718226D01*
+X104479894Y-25698324D01*
+X104401676Y-25620106D01*
+X104381776Y-25575039D01*
+X104365213Y-25542531D01*
+X104363976Y-25534726D01*
+X104356995Y-25518914D01*
+X104349000Y-25450000D01*
+X104349000Y-24550000D01*
+X104356995Y-24481086D01*
+X104363976Y-24465274D01*
+X104365213Y-24457468D01*
+X104381780Y-24424953D01*
+X104401676Y-24379894D01*
+X104479894Y-24301676D01*
+X104524953Y-24281780D01*
+X104557468Y-24265213D01*
+X104565274Y-24263976D01*
+X104581086Y-24256995D01*
+X104650000Y-24249000D01*
+X105300000Y-24249000D01*
+X105368914Y-24256995D01*
+G37*
+G36*
+X107418914Y-24256995D02*
+G01*
+X107434726Y-24263976D01*
+X107442531Y-24265213D01*
+X107475039Y-24281776D01*
+X107520106Y-24301676D01*
+X107598324Y-24379894D01*
+X107618226Y-24424967D01*
+X107634786Y-24457468D01*
+X107636021Y-24465270D01*
+X107643005Y-24481086D01*
+X107651000Y-24550000D01*
+X107651000Y-25450000D01*
+X107643005Y-25518914D01*
+X107636021Y-25534729D01*
+X107634786Y-25542531D01*
+X107618229Y-25575024D01*
+X107598324Y-25620106D01*
+X107520106Y-25698324D01*
+X107475024Y-25718229D01*
+X107442531Y-25734786D01*
+X107434729Y-25736021D01*
+X107418914Y-25743005D01*
+X107350000Y-25751000D01*
+X106700000Y-25751000D01*
+X106631086Y-25743005D01*
+X106615270Y-25736021D01*
+X106607468Y-25734786D01*
+X106574967Y-25718226D01*
+X106529894Y-25698324D01*
+X106451676Y-25620106D01*
+X106431776Y-25575039D01*
+X106415213Y-25542531D01*
+X106413976Y-25534726D01*
+X106406995Y-25518914D01*
+X106399000Y-25450000D01*
+X106399000Y-24550000D01*
+X106406995Y-24481086D01*
+X106413976Y-24465274D01*
+X106415213Y-24457468D01*
+X106431780Y-24424953D01*
+X106451676Y-24379894D01*
+X106529894Y-24301676D01*
+X106574953Y-24281780D01*
+X106607468Y-24265213D01*
+X106615274Y-24263976D01*
+X106631086Y-24256995D01*
+X106700000Y-24249000D01*
+X107350000Y-24249000D01*
+X107418914Y-24256995D01*
+G37*
+G36*
+X105224517Y-20552882D02*
+G01*
+X105241062Y-20563938D01*
+X105252118Y-20580483D01*
+X105256000Y-20600000D01*
+X105256000Y-21600000D01*
+X105252118Y-21619517D01*
+X105241062Y-21636062D01*
+X105224517Y-21647118D01*
+X105205000Y-21651000D01*
+X102625000Y-21651000D01*
+X102605483Y-21647118D01*
+X102588938Y-21636062D01*
+X102577882Y-21619517D01*
+X102574000Y-21600000D01*
+X102574000Y-20600000D01*
+X102577882Y-20580483D01*
+X102588938Y-20563938D01*
+X102605483Y-20552882D01*
+X102625000Y-20549000D01*
+X105205000Y-20549000D01*
+X105224517Y-20552882D01*
+G37*
+G36*
+X109394517Y-20552882D02*
+G01*
+X109411062Y-20563938D01*
+X109422118Y-20580483D01*
+X109426000Y-20600000D01*
+X109426000Y-21600000D01*
+X109422118Y-21619517D01*
+X109411062Y-21636062D01*
+X109394517Y-21647118D01*
+X109375000Y-21651000D01*
+X106795000Y-21651000D01*
+X106775483Y-21647118D01*
+X106758938Y-21636062D01*
+X106747882Y-21619517D01*
+X106744000Y-21600000D01*
+X106744000Y-20600000D01*
+X106747882Y-20580483D01*
+X106758938Y-20563938D01*
+X106775483Y-20552882D01*
+X106795000Y-20549000D01*
+X109375000Y-20549000D01*
+X109394517Y-20552882D01*
+G37*
+G36*
+X105224517Y-18552882D02*
+G01*
+X105241062Y-18563938D01*
+X105252118Y-18580483D01*
+X105256000Y-18600000D01*
+X105256000Y-19600000D01*
+X105252118Y-19619517D01*
+X105241062Y-19636062D01*
+X105224517Y-19647118D01*
+X105205000Y-19651000D01*
+X102625000Y-19651000D01*
+X102605483Y-19647118D01*
+X102588938Y-19636062D01*
+X102577882Y-19619517D01*
+X102574000Y-19600000D01*
+X102574000Y-18600000D01*
+X102577882Y-18580483D01*
+X102588938Y-18563938D01*
+X102605483Y-18552882D01*
+X102625000Y-18549000D01*
+X105205000Y-18549000D01*
+X105224517Y-18552882D01*
+G37*
+G36*
+X109394517Y-18552882D02*
+G01*
+X109411062Y-18563938D01*
+X109422118Y-18580483D01*
+X109426000Y-18600000D01*
+X109426000Y-19600000D01*
+X109422118Y-19619517D01*
+X109411062Y-19636062D01*
+X109394517Y-19647118D01*
+X109375000Y-19651000D01*
+X106795000Y-19651000D01*
+X106775483Y-19647118D01*
+X106758938Y-19636062D01*
+X106747882Y-19619517D01*
+X106744000Y-19600000D01*
+X106744000Y-18600000D01*
+X106747882Y-18580483D01*
+X106758938Y-18563938D01*
+X106775483Y-18552882D01*
+X106795000Y-18549000D01*
+X109375000Y-18549000D01*
+X109394517Y-18552882D01*
+G37*
+G36*
+X105224517Y-16552882D02*
+G01*
+X105241062Y-16563938D01*
+X105252118Y-16580483D01*
+X105256000Y-16600000D01*
+X105256000Y-17600000D01*
+X105252118Y-17619517D01*
+X105241062Y-17636062D01*
+X105224517Y-17647118D01*
+X105205000Y-17651000D01*
+X102625000Y-17651000D01*
+X102605483Y-17647118D01*
+X102588938Y-17636062D01*
+X102577882Y-17619517D01*
+X102574000Y-17600000D01*
+X102574000Y-16600000D01*
+X102577882Y-16580483D01*
+X102588938Y-16563938D01*
+X102605483Y-16552882D01*
+X102625000Y-16549000D01*
+X105205000Y-16549000D01*
+X105224517Y-16552882D01*
+G37*
+G36*
+X109394517Y-16552882D02*
+G01*
+X109411062Y-16563938D01*
+X109422118Y-16580483D01*
+X109426000Y-16600000D01*
+X109426000Y-17600000D01*
+X109422118Y-17619517D01*
+X109411062Y-17636062D01*
+X109394517Y-17647118D01*
+X109375000Y-17651000D01*
+X106795000Y-17651000D01*
+X106775483Y-17647118D01*
+X106758938Y-17636062D01*
+X106747882Y-17619517D01*
+X106744000Y-17600000D01*
+X106744000Y-16600000D01*
+X106747882Y-16580483D01*
+X106758938Y-16563938D01*
+X106775483Y-16552882D01*
+X106795000Y-16549000D01*
+X109375000Y-16549000D01*
+X109394517Y-16552882D01*
+G37*
+G36*
+X105224517Y-14552882D02*
+G01*
+X105241062Y-14563938D01*
+X105252118Y-14580483D01*
+X105256000Y-14600000D01*
+X105256000Y-15600000D01*
+X105252118Y-15619517D01*
+X105241062Y-15636062D01*
+X105224517Y-15647118D01*
+X105205000Y-15651000D01*
+X102625000Y-15651000D01*
+X102605483Y-15647118D01*
+X102588938Y-15636062D01*
+X102577882Y-15619517D01*
+X102574000Y-15600000D01*
+X102574000Y-14600000D01*
+X102577882Y-14580483D01*
+X102588938Y-14563938D01*
+X102605483Y-14552882D01*
+X102625000Y-14549000D01*
+X105205000Y-14549000D01*
+X105224517Y-14552882D01*
+G37*
+G36*
+X109394517Y-14552882D02*
+G01*
+X109411062Y-14563938D01*
+X109422118Y-14580483D01*
+X109426000Y-14600000D01*
+X109426000Y-15600000D01*
+X109422118Y-15619517D01*
+X109411062Y-15636062D01*
+X109394517Y-15647118D01*
+X109375000Y-15651000D01*
+X106795000Y-15651000D01*
+X106775483Y-15647118D01*
+X106758938Y-15636062D01*
+X106747882Y-15619517D01*
+X106744000Y-15600000D01*
+X106744000Y-14600000D01*
+X106747882Y-14580483D01*
+X106758938Y-14563938D01*
+X106775483Y-14552882D01*
+X106795000Y-14549000D01*
+X109375000Y-14549000D01*
+X109394517Y-14552882D01*
+G37*
+G36*
+X105224517Y-12552882D02*
+G01*
+X105241062Y-12563938D01*
+X105252118Y-12580483D01*
+X105256000Y-12600000D01*
+X105256000Y-13600000D01*
+X105252118Y-13619517D01*
+X105241062Y-13636062D01*
+X105224517Y-13647118D01*
+X105205000Y-13651000D01*
+X102625000Y-13651000D01*
+X102605483Y-13647118D01*
+X102588938Y-13636062D01*
+X102577882Y-13619517D01*
+X102574000Y-13600000D01*
+X102574000Y-12600000D01*
+X102577882Y-12580483D01*
+X102588938Y-12563938D01*
+X102605483Y-12552882D01*
+X102625000Y-12549000D01*
+X105205000Y-12549000D01*
+X105224517Y-12552882D01*
+G37*
+G36*
+X109394517Y-12552882D02*
+G01*
+X109411062Y-12563938D01*
+X109422118Y-12580483D01*
+X109426000Y-12600000D01*
+X109426000Y-13600000D01*
+X109422118Y-13619517D01*
+X109411062Y-13636062D01*
+X109394517Y-13647118D01*
+X109375000Y-13651000D01*
+X106795000Y-13651000D01*
+X106775483Y-13647118D01*
+X106758938Y-13636062D01*
+X106747882Y-13619517D01*
+X106744000Y-13600000D01*
+X106744000Y-12600000D01*
+X106747882Y-12580483D01*
+X106758938Y-12563938D01*
+X106775483Y-12552882D01*
+X106795000Y-12549000D01*
+X109375000Y-12549000D01*
+X109394517Y-12552882D01*
+G37*
+M02*
diff --git a/HARDWARE/GERBER/lightsticks_extender-F_Paste.gbr b/HARDWARE/GERBER/lightsticks_extender-F_Paste.gbr
new file mode 100644 (file)
index 0000000..aa0250f
--- /dev/null
@@ -0,0 +1,69 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1*
+G04 #@! TF.CreationDate,2024-04-05T17:11:51+02:00*
+G04 #@! TF.ProjectId,lightsticks_extender,6c696768-7473-4746-9963-6b735f657874,rev?*
+G04 #@! TF.SameCoordinates,Original*
+G04 #@! TF.FileFunction,Paste,Top*
+G04 #@! TF.FilePolarity,Positive*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 7.0.11-7.0.11~ubuntu20.04.1) date 2024-04-05 17:11:51*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+G04 Aperture macros list*
+%AMRoundRect*
+0 Rectangle with rounded corners*
+0 $1 Rounding radius*
+0 $2 $3 $4 $5 $6 $7 $8 $9 X,Y pos of 4 corners*
+0 Add a 4 corners polygon primitive as box body*
+4,1,4,$2,$3,$4,$5,$6,$7,$8,$9,$2,$3,0*
+0 Add four circle primitives for the rounded corners*
+1,1,$1+$1,$2,$3*
+1,1,$1+$1,$4,$5*
+1,1,$1+$1,$6,$7*
+1,1,$1+$1,$8,$9*
+0 Add four rect primitives between the rounded corners*
+20,1,$1+$1,$2,$3,$4,$5,0*
+20,1,$1+$1,$4,$5,$6,$7,0*
+20,1,$1+$1,$6,$7,$8,$9,0*
+20,1,$1+$1,$8,$9,$2,$3,0*%
+G04 Aperture macros list end*
+%ADD10RoundRect,0.249999X1.425001X-0.512501X1.425001X0.512501X-1.425001X0.512501X-1.425001X-0.512501X0*%
+%ADD11RoundRect,0.250000X-0.325000X-0.450000X0.325000X-0.450000X0.325000X0.450000X-0.325000X0.450000X0*%
+%ADD12R,2.580000X1.000000*%
+G04 APERTURE END LIST*
+D10*
+X106000000Y-91012500D03*
+X106000000Y-96987500D03*
+X106000000Y-33987500D03*
+X106000000Y-28012500D03*
+X106000000Y-37012500D03*
+X106000000Y-42987500D03*
+X106000000Y-51987500D03*
+X106000000Y-46012500D03*
+X106000000Y-55012500D03*
+X106000000Y-60987500D03*
+X106000000Y-69987500D03*
+X106000000Y-64012500D03*
+X106000000Y-100012500D03*
+X106000000Y-105987500D03*
+X106000000Y-78987500D03*
+X106000000Y-73012500D03*
+X106000000Y-87987500D03*
+X106000000Y-82012500D03*
+D11*
+X104975000Y-25000000D03*
+X107025000Y-25000000D03*
+D12*
+X103915000Y-13100000D03*
+X108085000Y-13100000D03*
+X103915000Y-15100000D03*
+X108085000Y-15100000D03*
+X103915000Y-17100000D03*
+X108085000Y-17100000D03*
+X103915000Y-19100000D03*
+X108085000Y-19100000D03*
+X103915000Y-21100000D03*
+X108085000Y-21100000D03*
+M02*
diff --git a/HARDWARE/GERBER/lightsticks_extender-F_Silkscreen.gbr b/HARDWARE/GERBER/lightsticks_extender-F_Silkscreen.gbr
new file mode 100644 (file)
index 0000000..3beebab
--- /dev/null
@@ -0,0 +1,1568 @@
+G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1*
+G04 #@! TF.CreationDate,2024-04-05T17:11:51+02:00*
+G04 #@! TF.ProjectId,lightsticks_extender,6c696768-7473-4746-9963-6b735f657874,rev?*
+G04 #@! TF.SameCoordinates,Original*
+G04 #@! TF.FileFunction,Legend,Top*
+G04 #@! TF.FilePolarity,Positive*
+%FSLAX46Y46*%
+G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)*
+G04 Created by KiCad (PCBNEW 7.0.11-7.0.11~ubuntu20.04.1) date 2024-04-05 17:11:51*
+%MOMM*%
+%LPD*%
+G01*
+G04 APERTURE LIST*
+%ADD10C,0.130000*%
+%ADD11C,0.120000*%
+%ADD12C,0.150000*%
+G04 APERTURE END LIST*
+D10*
+X110255859Y-65676378D02*
+X109255859Y-65676378D01*
+X110255859Y-65247807D02*
+X109732049Y-65247807D01*
+X109732049Y-65247807D02*
+X109636811Y-65295426D01*
+X109636811Y-65295426D02*
+X109589192Y-65390664D01*
+X109589192Y-65390664D02*
+X109589192Y-65533521D01*
+X109589192Y-65533521D02*
+X109636811Y-65628759D01*
+X109636811Y-65628759D02*
+X109684430Y-65676378D01*
+X109589192Y-64914473D02*
+X109589192Y-64533521D01*
+X109255859Y-64771616D02*
+X110113001Y-64771616D01*
+X110113001Y-64771616D02*
+X110208240Y-64723997D01*
+X110208240Y-64723997D02*
+X110255859Y-64628759D01*
+X110255859Y-64628759D02*
+X110255859Y-64533521D01*
+X109589192Y-64343044D02*
+X109589192Y-63962092D01*
+X109255859Y-64200187D02*
+X110113001Y-64200187D01*
+X110113001Y-64200187D02*
+X110208240Y-64152568D01*
+X110208240Y-64152568D02*
+X110255859Y-64057330D01*
+X110255859Y-64057330D02*
+X110255859Y-63962092D01*
+X109589192Y-63628758D02*
+X110589192Y-63628758D01*
+X109636811Y-63628758D02*
+X109589192Y-63533520D01*
+X109589192Y-63533520D02*
+X109589192Y-63343044D01*
+X109589192Y-63343044D02*
+X109636811Y-63247806D01*
+X109636811Y-63247806D02*
+X109684430Y-63200187D01*
+X109684430Y-63200187D02*
+X109779668Y-63152568D01*
+X109779668Y-63152568D02*
+X110065382Y-63152568D01*
+X110065382Y-63152568D02*
+X110160620Y-63200187D01*
+X110160620Y-63200187D02*
+X110208240Y-63247806D01*
+X110208240Y-63247806D02*
+X110255859Y-63343044D01*
+X110255859Y-63343044D02*
+X110255859Y-63533520D01*
+X110255859Y-63533520D02*
+X110208240Y-63628758D01*
+X110208240Y-62771615D02*
+X110255859Y-62676377D01*
+X110255859Y-62676377D02*
+X110255859Y-62485901D01*
+X110255859Y-62485901D02*
+X110208240Y-62390663D01*
+X110208240Y-62390663D02*
+X110113001Y-62343044D01*
+X110113001Y-62343044D02*
+X110065382Y-62343044D01*
+X110065382Y-62343044D02*
+X109970144Y-62390663D01*
+X109970144Y-62390663D02*
+X109922525Y-62485901D01*
+X109922525Y-62485901D02*
+X109922525Y-62628758D01*
+X109922525Y-62628758D02*
+X109874906Y-62723996D01*
+X109874906Y-62723996D02*
+X109779668Y-62771615D01*
+X109779668Y-62771615D02*
+X109732049Y-62771615D01*
+X109732049Y-62771615D02*
+X109636811Y-62723996D01*
+X109636811Y-62723996D02*
+X109589192Y-62628758D01*
+X109589192Y-62628758D02*
+X109589192Y-62485901D01*
+X109589192Y-62485901D02*
+X109636811Y-62390663D01*
+X110160620Y-61914472D02*
+X110208240Y-61866853D01*
+X110208240Y-61866853D02*
+X110255859Y-61914472D01*
+X110255859Y-61914472D02*
+X110208240Y-61962091D01*
+X110208240Y-61962091D02*
+X110160620Y-61914472D01*
+X110160620Y-61914472D02*
+X110255859Y-61914472D01*
+X109636811Y-61914472D02*
+X109684430Y-61866853D01*
+X109684430Y-61866853D02*
+X109732049Y-61914472D01*
+X109732049Y-61914472D02*
+X109684430Y-61962091D01*
+X109684430Y-61962091D02*
+X109636811Y-61914472D01*
+X109636811Y-61914472D02*
+X109732049Y-61914472D01*
+X109208240Y-60723997D02*
+X110493954Y-61581139D01*
+X109208240Y-59676378D02*
+X110493954Y-60533520D01*
+X110255859Y-58914473D02*
+X109255859Y-58914473D01*
+X110208240Y-58914473D02*
+X110255859Y-59009711D01*
+X110255859Y-59009711D02*
+X110255859Y-59200187D01*
+X110255859Y-59200187D02*
+X110208240Y-59295425D01*
+X110208240Y-59295425D02*
+X110160620Y-59343044D01*
+X110160620Y-59343044D02*
+X110065382Y-59390663D01*
+X110065382Y-59390663D02*
+X109779668Y-59390663D01*
+X109779668Y-59390663D02*
+X109684430Y-59343044D01*
+X109684430Y-59343044D02*
+X109636811Y-59295425D01*
+X109636811Y-59295425D02*
+X109589192Y-59200187D01*
+X109589192Y-59200187D02*
+X109589192Y-59009711D01*
+X109589192Y-59009711D02*
+X109636811Y-58914473D01*
+X110255859Y-58009711D02*
+X109732049Y-58009711D01*
+X109732049Y-58009711D02*
+X109636811Y-58057330D01*
+X109636811Y-58057330D02*
+X109589192Y-58152568D01*
+X109589192Y-58152568D02*
+X109589192Y-58343044D01*
+X109589192Y-58343044D02*
+X109636811Y-58438282D01*
+X110208240Y-58009711D02*
+X110255859Y-58104949D01*
+X110255859Y-58104949D02*
+X110255859Y-58343044D01*
+X110255859Y-58343044D02*
+X110208240Y-58438282D01*
+X110208240Y-58438282D02*
+X110113001Y-58485901D01*
+X110113001Y-58485901D02*
+X110017763Y-58485901D01*
+X110017763Y-58485901D02*
+X109922525Y-58438282D01*
+X109922525Y-58438282D02*
+X109874906Y-58343044D01*
+X109874906Y-58343044D02*
+X109874906Y-58104949D01*
+X109874906Y-58104949D02*
+X109827287Y-58009711D01*
+X110255859Y-57533520D02*
+X109589192Y-57533520D01*
+X109255859Y-57533520D02*
+X109303478Y-57581139D01*
+X109303478Y-57581139D02*
+X109351097Y-57533520D01*
+X109351097Y-57533520D02*
+X109303478Y-57485901D01*
+X109303478Y-57485901D02*
+X109255859Y-57533520D01*
+X109255859Y-57533520D02*
+X109351097Y-57533520D01*
+X110255859Y-56914473D02*
+X110208240Y-57009711D01*
+X110208240Y-57009711D02*
+X110113001Y-57057330D01*
+X110113001Y-57057330D02*
+X109255859Y-57057330D01*
+X109589192Y-56628758D02*
+X110255859Y-56390663D01*
+X109589192Y-56152568D02*
+X110255859Y-56390663D01*
+X110255859Y-56390663D02*
+X110493954Y-56485901D01*
+X110493954Y-56485901D02*
+X110541573Y-56533520D01*
+X110541573Y-56533520D02*
+X110589192Y-56628758D01*
+X110255859Y-55771615D02*
+X109255859Y-55771615D01*
+X109636811Y-55771615D02*
+X109589192Y-55676377D01*
+X109589192Y-55676377D02*
+X109589192Y-55485901D01*
+X109589192Y-55485901D02*
+X109636811Y-55390663D01*
+X109636811Y-55390663D02*
+X109684430Y-55343044D01*
+X109684430Y-55343044D02*
+X109779668Y-55295425D01*
+X109779668Y-55295425D02*
+X110065382Y-55295425D01*
+X110065382Y-55295425D02*
+X110160620Y-55343044D01*
+X110160620Y-55343044D02*
+X110208240Y-55390663D01*
+X110208240Y-55390663D02*
+X110255859Y-55485901D01*
+X110255859Y-55485901D02*
+X110255859Y-55676377D01*
+X110255859Y-55676377D02*
+X110208240Y-55771615D01*
+X110208240Y-54485901D02*
+X110255859Y-54581139D01*
+X110255859Y-54581139D02*
+X110255859Y-54771615D01*
+X110255859Y-54771615D02*
+X110208240Y-54866853D01*
+X110208240Y-54866853D02*
+X110113001Y-54914472D01*
+X110113001Y-54914472D02*
+X109732049Y-54914472D01*
+X109732049Y-54914472D02*
+X109636811Y-54866853D01*
+X109636811Y-54866853D02*
+X109589192Y-54771615D01*
+X109589192Y-54771615D02*
+X109589192Y-54581139D01*
+X109589192Y-54581139D02*
+X109636811Y-54485901D01*
+X109636811Y-54485901D02*
+X109732049Y-54438282D01*
+X109732049Y-54438282D02*
+X109827287Y-54438282D01*
+X109827287Y-54438282D02*
+X109922525Y-54914472D01*
+X110208240Y-53628758D02*
+X110255859Y-53723996D01*
+X110255859Y-53723996D02*
+X110255859Y-53914472D01*
+X110255859Y-53914472D02*
+X110208240Y-54009710D01*
+X110208240Y-54009710D02*
+X110113001Y-54057329D01*
+X110113001Y-54057329D02*
+X109732049Y-54057329D01*
+X109732049Y-54057329D02*
+X109636811Y-54009710D01*
+X109636811Y-54009710D02*
+X109589192Y-53914472D01*
+X109589192Y-53914472D02*
+X109589192Y-53723996D01*
+X109589192Y-53723996D02*
+X109636811Y-53628758D01*
+X109636811Y-53628758D02*
+X109732049Y-53581139D01*
+X109732049Y-53581139D02*
+X109827287Y-53581139D01*
+X109827287Y-53581139D02*
+X109922525Y-54057329D01*
+X110255859Y-53152567D02*
+X109589192Y-53152567D01*
+X109779668Y-53152567D02*
+X109684430Y-53104948D01*
+X109684430Y-53104948D02*
+X109636811Y-53057329D01*
+X109636811Y-53057329D02*
+X109589192Y-52962091D01*
+X109589192Y-52962091D02*
+X109589192Y-52866853D01*
+X110160620Y-52533519D02*
+X110208240Y-52485900D01*
+X110208240Y-52485900D02*
+X110255859Y-52533519D01*
+X110255859Y-52533519D02*
+X110208240Y-52581138D01*
+X110208240Y-52581138D02*
+X110160620Y-52533519D01*
+X110160620Y-52533519D02*
+X110255859Y-52533519D01*
+X110208240Y-51676377D02*
+X110255859Y-51771615D01*
+X110255859Y-51771615D02*
+X110255859Y-51962091D01*
+X110255859Y-51962091D02*
+X110208240Y-52057329D01*
+X110208240Y-52057329D02*
+X110113001Y-52104948D01*
+X110113001Y-52104948D02*
+X109732049Y-52104948D01*
+X109732049Y-52104948D02*
+X109636811Y-52057329D01*
+X109636811Y-52057329D02*
+X109589192Y-51962091D01*
+X109589192Y-51962091D02*
+X109589192Y-51771615D01*
+X109589192Y-51771615D02*
+X109636811Y-51676377D01*
+X109636811Y-51676377D02*
+X109732049Y-51628758D01*
+X109732049Y-51628758D02*
+X109827287Y-51628758D01*
+X109827287Y-51628758D02*
+X109922525Y-52104948D01*
+X109589192Y-50771615D02*
+X110255859Y-50771615D01*
+X109589192Y-51200186D02*
+X110113001Y-51200186D01*
+X110113001Y-51200186D02*
+X110208240Y-51152567D01*
+X110208240Y-51152567D02*
+X110255859Y-51057329D01*
+X110255859Y-51057329D02*
+X110255859Y-50914472D01*
+X110255859Y-50914472D02*
+X110208240Y-50819234D01*
+X110208240Y-50819234D02*
+X110160620Y-50771615D01*
+X109208240Y-49581139D02*
+X110493954Y-50438281D01*
+X110255859Y-49247805D02*
+X109589192Y-49247805D01*
+X109684430Y-49247805D02*
+X109636811Y-49200186D01*
+X109636811Y-49200186D02*
+X109589192Y-49104948D01*
+X109589192Y-49104948D02*
+X109589192Y-48962091D01*
+X109589192Y-48962091D02*
+X109636811Y-48866853D01*
+X109636811Y-48866853D02*
+X109732049Y-48819234D01*
+X109732049Y-48819234D02*
+X110255859Y-48819234D01*
+X109732049Y-48819234D02*
+X109636811Y-48771615D01*
+X109636811Y-48771615D02*
+X109589192Y-48676377D01*
+X109589192Y-48676377D02*
+X109589192Y-48533520D01*
+X109589192Y-48533520D02*
+X109636811Y-48438281D01*
+X109636811Y-48438281D02*
+X109732049Y-48390662D01*
+X109732049Y-48390662D02*
+X110255859Y-48390662D01*
+X110208240Y-47533520D02*
+X110255859Y-47628758D01*
+X110255859Y-47628758D02*
+X110255859Y-47819234D01*
+X110255859Y-47819234D02*
+X110208240Y-47914472D01*
+X110208240Y-47914472D02*
+X110113001Y-47962091D01*
+X110113001Y-47962091D02*
+X109732049Y-47962091D01*
+X109732049Y-47962091D02*
+X109636811Y-47914472D01*
+X109636811Y-47914472D02*
+X109589192Y-47819234D01*
+X109589192Y-47819234D02*
+X109589192Y-47628758D01*
+X109589192Y-47628758D02*
+X109636811Y-47533520D01*
+X109636811Y-47533520D02*
+X109732049Y-47485901D01*
+X109732049Y-47485901D02*
+X109827287Y-47485901D01*
+X109827287Y-47485901D02*
+X109922525Y-47962091D01*
+X110255859Y-47057329D02*
+X109589192Y-47057329D01*
+X109779668Y-47057329D02*
+X109684430Y-47009710D01*
+X109684430Y-47009710D02*
+X109636811Y-46962091D01*
+X109636811Y-46962091D02*
+X109589192Y-46866853D01*
+X109589192Y-46866853D02*
+X109589192Y-46771615D01*
+X110208240Y-46009710D02*
+X110255859Y-46104948D01*
+X110255859Y-46104948D02*
+X110255859Y-46295424D01*
+X110255859Y-46295424D02*
+X110208240Y-46390662D01*
+X110208240Y-46390662D02*
+X110160620Y-46438281D01*
+X110160620Y-46438281D02*
+X110065382Y-46485900D01*
+X110065382Y-46485900D02*
+X109779668Y-46485900D01*
+X109779668Y-46485900D02*
+X109684430Y-46438281D01*
+X109684430Y-46438281D02*
+X109636811Y-46390662D01*
+X109636811Y-46390662D02*
+X109589192Y-46295424D01*
+X109589192Y-46295424D02*
+X109589192Y-46104948D01*
+X109589192Y-46104948D02*
+X109636811Y-46009710D01*
+X110255859Y-45581138D02*
+X109255859Y-45581138D01*
+X110255859Y-45152567D02*
+X109732049Y-45152567D01*
+X109732049Y-45152567D02*
+X109636811Y-45200186D01*
+X109636811Y-45200186D02*
+X109589192Y-45295424D01*
+X109589192Y-45295424D02*
+X109589192Y-45438281D01*
+X109589192Y-45438281D02*
+X109636811Y-45533519D01*
+X109636811Y-45533519D02*
+X109684430Y-45581138D01*
+X109208240Y-43962091D02*
+X110493954Y-44819233D01*
+X110255859Y-43485900D02*
+X110208240Y-43581138D01*
+X110208240Y-43581138D02*
+X110113001Y-43628757D01*
+X110113001Y-43628757D02*
+X109255859Y-43628757D01*
+X110255859Y-43104947D02*
+X109589192Y-43104947D01*
+X109255859Y-43104947D02*
+X109303478Y-43152566D01*
+X109303478Y-43152566D02*
+X109351097Y-43104947D01*
+X109351097Y-43104947D02*
+X109303478Y-43057328D01*
+X109303478Y-43057328D02*
+X109255859Y-43104947D01*
+X109255859Y-43104947D02*
+X109351097Y-43104947D01*
+X109589192Y-42200186D02*
+X110398716Y-42200186D01*
+X110398716Y-42200186D02*
+X110493954Y-42247805D01*
+X110493954Y-42247805D02*
+X110541573Y-42295424D01*
+X110541573Y-42295424D02*
+X110589192Y-42390662D01*
+X110589192Y-42390662D02*
+X110589192Y-42533519D01*
+X110589192Y-42533519D02*
+X110541573Y-42628757D01*
+X110208240Y-42200186D02*
+X110255859Y-42295424D01*
+X110255859Y-42295424D02*
+X110255859Y-42485900D01*
+X110255859Y-42485900D02*
+X110208240Y-42581138D01*
+X110208240Y-42581138D02*
+X110160620Y-42628757D01*
+X110160620Y-42628757D02*
+X110065382Y-42676376D01*
+X110065382Y-42676376D02*
+X109779668Y-42676376D01*
+X109779668Y-42676376D02*
+X109684430Y-42628757D01*
+X109684430Y-42628757D02*
+X109636811Y-42581138D01*
+X109636811Y-42581138D02*
+X109589192Y-42485900D01*
+X109589192Y-42485900D02*
+X109589192Y-42295424D01*
+X109589192Y-42295424D02*
+X109636811Y-42200186D01*
+X110255859Y-41723995D02*
+X109255859Y-41723995D01*
+X110255859Y-41295424D02*
+X109732049Y-41295424D01*
+X109732049Y-41295424D02*
+X109636811Y-41343043D01*
+X109636811Y-41343043D02*
+X109589192Y-41438281D01*
+X109589192Y-41438281D02*
+X109589192Y-41581138D01*
+X109589192Y-41581138D02*
+X109636811Y-41676376D01*
+X109636811Y-41676376D02*
+X109684430Y-41723995D01*
+X109589192Y-40962090D02*
+X109589192Y-40581138D01*
+X109255859Y-40819233D02*
+X110113001Y-40819233D01*
+X110113001Y-40819233D02*
+X110208240Y-40771614D01*
+X110208240Y-40771614D02*
+X110255859Y-40676376D01*
+X110255859Y-40676376D02*
+X110255859Y-40581138D01*
+X110208240Y-40295423D02*
+X110255859Y-40200185D01*
+X110255859Y-40200185D02*
+X110255859Y-40009709D01*
+X110255859Y-40009709D02*
+X110208240Y-39914471D01*
+X110208240Y-39914471D02*
+X110113001Y-39866852D01*
+X110113001Y-39866852D02*
+X110065382Y-39866852D01*
+X110065382Y-39866852D02*
+X109970144Y-39914471D01*
+X109970144Y-39914471D02*
+X109922525Y-40009709D01*
+X109922525Y-40009709D02*
+X109922525Y-40152566D01*
+X109922525Y-40152566D02*
+X109874906Y-40247804D01*
+X109874906Y-40247804D02*
+X109779668Y-40295423D01*
+X109779668Y-40295423D02*
+X109732049Y-40295423D01*
+X109732049Y-40295423D02*
+X109636811Y-40247804D01*
+X109636811Y-40247804D02*
+X109589192Y-40152566D01*
+X109589192Y-40152566D02*
+X109589192Y-40009709D01*
+X109589192Y-40009709D02*
+X109636811Y-39914471D01*
+X109589192Y-39581137D02*
+X109589192Y-39200185D01*
+X109255859Y-39438280D02*
+X110113001Y-39438280D01*
+X110113001Y-39438280D02*
+X110208240Y-39390661D01*
+X110208240Y-39390661D02*
+X110255859Y-39295423D01*
+X110255859Y-39295423D02*
+X110255859Y-39200185D01*
+X110255859Y-38866851D02*
+X109589192Y-38866851D01*
+X109255859Y-38866851D02*
+X109303478Y-38914470D01*
+X109303478Y-38914470D02*
+X109351097Y-38866851D01*
+X109351097Y-38866851D02*
+X109303478Y-38819232D01*
+X109303478Y-38819232D02*
+X109255859Y-38866851D01*
+X109255859Y-38866851D02*
+X109351097Y-38866851D01*
+X110208240Y-37962090D02*
+X110255859Y-38057328D01*
+X110255859Y-38057328D02*
+X110255859Y-38247804D01*
+X110255859Y-38247804D02*
+X110208240Y-38343042D01*
+X110208240Y-38343042D02*
+X110160620Y-38390661D01*
+X110160620Y-38390661D02*
+X110065382Y-38438280D01*
+X110065382Y-38438280D02*
+X109779668Y-38438280D01*
+X109779668Y-38438280D02*
+X109684430Y-38390661D01*
+X109684430Y-38390661D02*
+X109636811Y-38343042D01*
+X109636811Y-38343042D02*
+X109589192Y-38247804D01*
+X109589192Y-38247804D02*
+X109589192Y-38057328D01*
+X109589192Y-38057328D02*
+X109636811Y-37962090D01*
+X110255859Y-37533518D02*
+X109255859Y-37533518D01*
+X109874906Y-37438280D02*
+X110255859Y-37152566D01*
+X109589192Y-37152566D02*
+X109970144Y-37533518D01*
+X102605859Y-65716378D02*
+X101605859Y-65716378D01*
+X101605859Y-65716378D02*
+X101605859Y-65335426D01*
+X101605859Y-65335426D02*
+X101653478Y-65240188D01*
+X101653478Y-65240188D02*
+X101701097Y-65192569D01*
+X101701097Y-65192569D02*
+X101796335Y-65144950D01*
+X101796335Y-65144950D02*
+X101939192Y-65144950D01*
+X101939192Y-65144950D02*
+X102034430Y-65192569D01*
+X102034430Y-65192569D02*
+X102082049Y-65240188D01*
+X102082049Y-65240188D02*
+X102129668Y-65335426D01*
+X102129668Y-65335426D02*
+X102129668Y-65716378D01*
+X102605859Y-64573521D02*
+X102558240Y-64668759D01*
+X102558240Y-64668759D02*
+X102510620Y-64716378D01*
+X102510620Y-64716378D02*
+X102415382Y-64763997D01*
+X102415382Y-64763997D02*
+X102129668Y-64763997D01*
+X102129668Y-64763997D02*
+X102034430Y-64716378D01*
+X102034430Y-64716378D02*
+X101986811Y-64668759D01*
+X101986811Y-64668759D02*
+X101939192Y-64573521D01*
+X101939192Y-64573521D02*
+X101939192Y-64430664D01*
+X101939192Y-64430664D02*
+X101986811Y-64335426D01*
+X101986811Y-64335426D02*
+X102034430Y-64287807D01*
+X102034430Y-64287807D02*
+X102129668Y-64240188D01*
+X102129668Y-64240188D02*
+X102415382Y-64240188D01*
+X102415382Y-64240188D02*
+X102510620Y-64287807D01*
+X102510620Y-64287807D02*
+X102558240Y-64335426D01*
+X102558240Y-64335426D02*
+X102605859Y-64430664D01*
+X102605859Y-64430664D02*
+X102605859Y-64573521D01*
+X102558240Y-63383045D02*
+X102605859Y-63478283D01*
+X102605859Y-63478283D02*
+X102605859Y-63668759D01*
+X102605859Y-63668759D02*
+X102558240Y-63763997D01*
+X102558240Y-63763997D02*
+X102510620Y-63811616D01*
+X102510620Y-63811616D02*
+X102415382Y-63859235D01*
+X102415382Y-63859235D02*
+X102129668Y-63859235D01*
+X102129668Y-63859235D02*
+X102034430Y-63811616D01*
+X102034430Y-63811616D02*
+X101986811Y-63763997D01*
+X101986811Y-63763997D02*
+X101939192Y-63668759D01*
+X101939192Y-63668759D02*
+X101939192Y-63478283D01*
+X101939192Y-63478283D02*
+X101986811Y-63383045D01*
+X102605859Y-62954473D02*
+X101605859Y-62954473D01*
+X102224906Y-62859235D02*
+X102605859Y-62573521D01*
+X101939192Y-62573521D02*
+X102320144Y-62954473D01*
+X102558240Y-61763997D02*
+X102605859Y-61859235D01*
+X102605859Y-61859235D02*
+X102605859Y-62049711D01*
+X102605859Y-62049711D02*
+X102558240Y-62144949D01*
+X102558240Y-62144949D02*
+X102463001Y-62192568D01*
+X102463001Y-62192568D02*
+X102082049Y-62192568D01*
+X102082049Y-62192568D02*
+X101986811Y-62144949D01*
+X101986811Y-62144949D02*
+X101939192Y-62049711D01*
+X101939192Y-62049711D02*
+X101939192Y-61859235D01*
+X101939192Y-61859235D02*
+X101986811Y-61763997D01*
+X101986811Y-61763997D02*
+X102082049Y-61716378D01*
+X102082049Y-61716378D02*
+X102177287Y-61716378D01*
+X102177287Y-61716378D02*
+X102272525Y-62192568D01*
+X101939192Y-61430663D02*
+X101939192Y-61049711D01*
+X101605859Y-61287806D02*
+X102463001Y-61287806D01*
+X102463001Y-61287806D02*
+X102558240Y-61240187D01*
+X102558240Y-61240187D02*
+X102605859Y-61144949D01*
+X102605859Y-61144949D02*
+X102605859Y-61049711D01*
+X101939192Y-59954472D02*
+X102939192Y-59954472D01*
+X101986811Y-59954472D02*
+X101939192Y-59859234D01*
+X101939192Y-59859234D02*
+X101939192Y-59668758D01*
+X101939192Y-59668758D02*
+X101986811Y-59573520D01*
+X101986811Y-59573520D02*
+X102034430Y-59525901D01*
+X102034430Y-59525901D02*
+X102129668Y-59478282D01*
+X102129668Y-59478282D02*
+X102415382Y-59478282D01*
+X102415382Y-59478282D02*
+X102510620Y-59525901D01*
+X102510620Y-59525901D02*
+X102558240Y-59573520D01*
+X102558240Y-59573520D02*
+X102605859Y-59668758D01*
+X102605859Y-59668758D02*
+X102605859Y-59859234D01*
+X102605859Y-59859234D02*
+X102558240Y-59954472D01*
+X102605859Y-59049710D02*
+X101605859Y-59049710D01*
+X102605859Y-58621139D02*
+X102082049Y-58621139D01*
+X102082049Y-58621139D02*
+X101986811Y-58668758D01*
+X101986811Y-58668758D02*
+X101939192Y-58763996D01*
+X101939192Y-58763996D02*
+X101939192Y-58906853D01*
+X101939192Y-58906853D02*
+X101986811Y-59002091D01*
+X101986811Y-59002091D02*
+X102034430Y-59049710D01*
+X102605859Y-58002091D02*
+X102558240Y-58097329D01*
+X102558240Y-58097329D02*
+X102510620Y-58144948D01*
+X102510620Y-58144948D02*
+X102415382Y-58192567D01*
+X102415382Y-58192567D02*
+X102129668Y-58192567D01*
+X102129668Y-58192567D02*
+X102034430Y-58144948D01*
+X102034430Y-58144948D02*
+X101986811Y-58097329D01*
+X101986811Y-58097329D02*
+X101939192Y-58002091D01*
+X101939192Y-58002091D02*
+X101939192Y-57859234D01*
+X101939192Y-57859234D02*
+X101986811Y-57763996D01*
+X101986811Y-57763996D02*
+X102034430Y-57716377D01*
+X102034430Y-57716377D02*
+X102129668Y-57668758D01*
+X102129668Y-57668758D02*
+X102415382Y-57668758D01*
+X102415382Y-57668758D02*
+X102510620Y-57716377D01*
+X102510620Y-57716377D02*
+X102558240Y-57763996D01*
+X102558240Y-57763996D02*
+X102605859Y-57859234D01*
+X102605859Y-57859234D02*
+X102605859Y-58002091D01*
+X101939192Y-57383043D02*
+X101939192Y-57002091D01*
+X101605859Y-57240186D02*
+X102463001Y-57240186D01*
+X102463001Y-57240186D02*
+X102558240Y-57192567D01*
+X102558240Y-57192567D02*
+X102605859Y-57097329D01*
+X102605859Y-57097329D02*
+X102605859Y-57002091D01*
+X102605859Y-56525900D02*
+X102558240Y-56621138D01*
+X102558240Y-56621138D02*
+X102510620Y-56668757D01*
+X102510620Y-56668757D02*
+X102415382Y-56716376D01*
+X102415382Y-56716376D02*
+X102129668Y-56716376D01*
+X102129668Y-56716376D02*
+X102034430Y-56668757D01*
+X102034430Y-56668757D02*
+X101986811Y-56621138D01*
+X101986811Y-56621138D02*
+X101939192Y-56525900D01*
+X101939192Y-56525900D02*
+X101939192Y-56383043D01*
+X101939192Y-56383043D02*
+X101986811Y-56287805D01*
+X101986811Y-56287805D02*
+X102034430Y-56240186D01*
+X102034430Y-56240186D02*
+X102129668Y-56192567D01*
+X102129668Y-56192567D02*
+X102415382Y-56192567D01*
+X102415382Y-56192567D02*
+X102510620Y-56240186D01*
+X102510620Y-56240186D02*
+X102558240Y-56287805D01*
+X102558240Y-56287805D02*
+X102605859Y-56383043D01*
+X102605859Y-56383043D02*
+X102605859Y-56525900D01*
+X102224906Y-55763995D02*
+X102224906Y-55002091D01*
+X102605859Y-54383043D02*
+X102558240Y-54478281D01*
+X102558240Y-54478281D02*
+X102463001Y-54525900D01*
+X102463001Y-54525900D02*
+X101605859Y-54525900D01*
+X102605859Y-54002090D02*
+X101939192Y-54002090D01*
+X101605859Y-54002090D02*
+X101653478Y-54049709D01*
+X101653478Y-54049709D02*
+X101701097Y-54002090D01*
+X101701097Y-54002090D02*
+X101653478Y-53954471D01*
+X101653478Y-53954471D02*
+X101605859Y-54002090D01*
+X101605859Y-54002090D02*
+X101701097Y-54002090D01*
+X101939192Y-53097329D02*
+X102748716Y-53097329D01*
+X102748716Y-53097329D02*
+X102843954Y-53144948D01*
+X102843954Y-53144948D02*
+X102891573Y-53192567D01*
+X102891573Y-53192567D02*
+X102939192Y-53287805D01*
+X102939192Y-53287805D02*
+X102939192Y-53430662D01*
+X102939192Y-53430662D02*
+X102891573Y-53525900D01*
+X102558240Y-53097329D02*
+X102605859Y-53192567D01*
+X102605859Y-53192567D02*
+X102605859Y-53383043D01*
+X102605859Y-53383043D02*
+X102558240Y-53478281D01*
+X102558240Y-53478281D02*
+X102510620Y-53525900D01*
+X102510620Y-53525900D02*
+X102415382Y-53573519D01*
+X102415382Y-53573519D02*
+X102129668Y-53573519D01*
+X102129668Y-53573519D02*
+X102034430Y-53525900D01*
+X102034430Y-53525900D02*
+X101986811Y-53478281D01*
+X101986811Y-53478281D02*
+X101939192Y-53383043D01*
+X101939192Y-53383043D02*
+X101939192Y-53192567D01*
+X101939192Y-53192567D02*
+X101986811Y-53097329D01*
+X102605859Y-52621138D02*
+X101605859Y-52621138D01*
+X102605859Y-52192567D02*
+X102082049Y-52192567D01*
+X102082049Y-52192567D02*
+X101986811Y-52240186D01*
+X101986811Y-52240186D02*
+X101939192Y-52335424D01*
+X101939192Y-52335424D02*
+X101939192Y-52478281D01*
+X101939192Y-52478281D02*
+X101986811Y-52573519D01*
+X101986811Y-52573519D02*
+X102034430Y-52621138D01*
+X101939192Y-51859233D02*
+X101939192Y-51478281D01*
+X101605859Y-51716376D02*
+X102463001Y-51716376D01*
+X102463001Y-51716376D02*
+X102558240Y-51668757D01*
+X102558240Y-51668757D02*
+X102605859Y-51573519D01*
+X102605859Y-51573519D02*
+X102605859Y-51478281D01*
+X102558240Y-51192566D02*
+X102605859Y-51097328D01*
+X102605859Y-51097328D02*
+X102605859Y-50906852D01*
+X102605859Y-50906852D02*
+X102558240Y-50811614D01*
+X102558240Y-50811614D02*
+X102463001Y-50763995D01*
+X102463001Y-50763995D02*
+X102415382Y-50763995D01*
+X102415382Y-50763995D02*
+X102320144Y-50811614D01*
+X102320144Y-50811614D02*
+X102272525Y-50906852D01*
+X102272525Y-50906852D02*
+X102272525Y-51049709D01*
+X102272525Y-51049709D02*
+X102224906Y-51144947D01*
+X102224906Y-51144947D02*
+X102129668Y-51192566D01*
+X102129668Y-51192566D02*
+X102082049Y-51192566D01*
+X102082049Y-51192566D02*
+X101986811Y-51144947D01*
+X101986811Y-51144947D02*
+X101939192Y-51049709D01*
+X101939192Y-51049709D02*
+X101939192Y-50906852D01*
+X101939192Y-50906852D02*
+X101986811Y-50811614D01*
+X101939192Y-50478280D02*
+X101939192Y-50097328D01*
+X101605859Y-50335423D02*
+X102463001Y-50335423D01*
+X102463001Y-50335423D02*
+X102558240Y-50287804D01*
+X102558240Y-50287804D02*
+X102605859Y-50192566D01*
+X102605859Y-50192566D02*
+X102605859Y-50097328D01*
+X102605859Y-49763994D02*
+X101939192Y-49763994D01*
+X101605859Y-49763994D02*
+X101653478Y-49811613D01*
+X101653478Y-49811613D02*
+X101701097Y-49763994D01*
+X101701097Y-49763994D02*
+X101653478Y-49716375D01*
+X101653478Y-49716375D02*
+X101605859Y-49763994D01*
+X101605859Y-49763994D02*
+X101701097Y-49763994D01*
+X102558240Y-48859233D02*
+X102605859Y-48954471D01*
+X102605859Y-48954471D02*
+X102605859Y-49144947D01*
+X102605859Y-49144947D02*
+X102558240Y-49240185D01*
+X102558240Y-49240185D02*
+X102510620Y-49287804D01*
+X102510620Y-49287804D02*
+X102415382Y-49335423D01*
+X102415382Y-49335423D02*
+X102129668Y-49335423D01*
+X102129668Y-49335423D02*
+X102034430Y-49287804D01*
+X102034430Y-49287804D02*
+X101986811Y-49240185D01*
+X101986811Y-49240185D02*
+X101939192Y-49144947D01*
+X101939192Y-49144947D02*
+X101939192Y-48954471D01*
+X101939192Y-48954471D02*
+X101986811Y-48859233D01*
+X102605859Y-48430661D02*
+X101605859Y-48430661D01*
+X102224906Y-48335423D02*
+X102605859Y-48049709D01*
+X101939192Y-48049709D02*
+X102320144Y-48430661D01*
+X102558240Y-46478280D02*
+X102605859Y-46573518D01*
+X102605859Y-46573518D02*
+X102605859Y-46763994D01*
+X102605859Y-46763994D02*
+X102558240Y-46859232D01*
+X102558240Y-46859232D02*
+X102463001Y-46906851D01*
+X102463001Y-46906851D02*
+X102082049Y-46906851D01*
+X102082049Y-46906851D02*
+X101986811Y-46859232D01*
+X101986811Y-46859232D02*
+X101939192Y-46763994D01*
+X101939192Y-46763994D02*
+X101939192Y-46573518D01*
+X101939192Y-46573518D02*
+X101986811Y-46478280D01*
+X101986811Y-46478280D02*
+X102082049Y-46430661D01*
+X102082049Y-46430661D02*
+X102177287Y-46430661D01*
+X102177287Y-46430661D02*
+X102272525Y-46906851D01*
+X102605859Y-46097327D02*
+X101939192Y-45573518D01*
+X101939192Y-46097327D02*
+X102605859Y-45573518D01*
+X101939192Y-45335422D02*
+X101939192Y-44954470D01*
+X101605859Y-45192565D02*
+X102463001Y-45192565D01*
+X102463001Y-45192565D02*
+X102558240Y-45144946D01*
+X102558240Y-45144946D02*
+X102605859Y-45049708D01*
+X102605859Y-45049708D02*
+X102605859Y-44954470D01*
+X102558240Y-44240184D02*
+X102605859Y-44335422D01*
+X102605859Y-44335422D02*
+X102605859Y-44525898D01*
+X102605859Y-44525898D02*
+X102558240Y-44621136D01*
+X102558240Y-44621136D02*
+X102463001Y-44668755D01*
+X102463001Y-44668755D02*
+X102082049Y-44668755D01*
+X102082049Y-44668755D02*
+X101986811Y-44621136D01*
+X101986811Y-44621136D02*
+X101939192Y-44525898D01*
+X101939192Y-44525898D02*
+X101939192Y-44335422D01*
+X101939192Y-44335422D02*
+X101986811Y-44240184D01*
+X101986811Y-44240184D02*
+X102082049Y-44192565D01*
+X102082049Y-44192565D02*
+X102177287Y-44192565D01*
+X102177287Y-44192565D02*
+X102272525Y-44668755D01*
+X101939192Y-43763993D02*
+X102605859Y-43763993D01*
+X102034430Y-43763993D02*
+X101986811Y-43716374D01*
+X101986811Y-43716374D02*
+X101939192Y-43621136D01*
+X101939192Y-43621136D02*
+X101939192Y-43478279D01*
+X101939192Y-43478279D02*
+X101986811Y-43383041D01*
+X101986811Y-43383041D02*
+X102082049Y-43335422D01*
+X102082049Y-43335422D02*
+X102605859Y-43335422D01*
+X102605859Y-42430660D02*
+X101605859Y-42430660D01*
+X102558240Y-42430660D02*
+X102605859Y-42525898D01*
+X102605859Y-42525898D02*
+X102605859Y-42716374D01*
+X102605859Y-42716374D02*
+X102558240Y-42811612D01*
+X102558240Y-42811612D02*
+X102510620Y-42859231D01*
+X102510620Y-42859231D02*
+X102415382Y-42906850D01*
+X102415382Y-42906850D02*
+X102129668Y-42906850D01*
+X102129668Y-42906850D02*
+X102034430Y-42859231D01*
+X102034430Y-42859231D02*
+X101986811Y-42811612D01*
+X101986811Y-42811612D02*
+X101939192Y-42716374D01*
+X101939192Y-42716374D02*
+X101939192Y-42525898D01*
+X101939192Y-42525898D02*
+X101986811Y-42430660D01*
+X102558240Y-41573517D02*
+X102605859Y-41668755D01*
+X102605859Y-41668755D02*
+X102605859Y-41859231D01*
+X102605859Y-41859231D02*
+X102558240Y-41954469D01*
+X102558240Y-41954469D02*
+X102463001Y-42002088D01*
+X102463001Y-42002088D02*
+X102082049Y-42002088D01*
+X102082049Y-42002088D02*
+X101986811Y-41954469D01*
+X101986811Y-41954469D02*
+X101939192Y-41859231D01*
+X101939192Y-41859231D02*
+X101939192Y-41668755D01*
+X101939192Y-41668755D02*
+X101986811Y-41573517D01*
+X101986811Y-41573517D02*
+X102082049Y-41525898D01*
+X102082049Y-41525898D02*
+X102177287Y-41525898D01*
+X102177287Y-41525898D02*
+X102272525Y-42002088D01*
+X102605859Y-41097326D02*
+X101939192Y-41097326D01*
+X102129668Y-41097326D02*
+X102034430Y-41049707D01*
+X102034430Y-41049707D02*
+X101986811Y-41002088D01*
+X101986811Y-41002088D02*
+X101939192Y-40906850D01*
+X101939192Y-40906850D02*
+X101939192Y-40811612D01*
+X102605859Y-36668753D02*
+X101939192Y-36668753D01*
+X102129668Y-36668753D02*
+X102034430Y-36621134D01*
+X102034430Y-36621134D02*
+X101986811Y-36573515D01*
+X101986811Y-36573515D02*
+X101939192Y-36478277D01*
+X101939192Y-36478277D02*
+X101939192Y-36383039D01*
+X102558240Y-35668753D02*
+X102605859Y-35763991D01*
+X102605859Y-35763991D02*
+X102605859Y-35954467D01*
+X102605859Y-35954467D02*
+X102558240Y-36049705D01*
+X102558240Y-36049705D02*
+X102463001Y-36097324D01*
+X102463001Y-36097324D02*
+X102082049Y-36097324D01*
+X102082049Y-36097324D02*
+X101986811Y-36049705D01*
+X101986811Y-36049705D02*
+X101939192Y-35954467D01*
+X101939192Y-35954467D02*
+X101939192Y-35763991D01*
+X101939192Y-35763991D02*
+X101986811Y-35668753D01*
+X101986811Y-35668753D02*
+X102082049Y-35621134D01*
+X102082049Y-35621134D02*
+X102177287Y-35621134D01*
+X102177287Y-35621134D02*
+X102272525Y-36097324D01*
+X101939192Y-35287800D02*
+X102605859Y-35049705D01*
+X102605859Y-35049705D02*
+X101939192Y-34811610D01*
+X101605859Y-33478276D02*
+X101605859Y-33383038D01*
+X101605859Y-33383038D02*
+X101653478Y-33287800D01*
+X101653478Y-33287800D02*
+X101701097Y-33240181D01*
+X101701097Y-33240181D02*
+X101796335Y-33192562D01*
+X101796335Y-33192562D02*
+X101986811Y-33144943D01*
+X101986811Y-33144943D02*
+X102224906Y-33144943D01*
+X102224906Y-33144943D02*
+X102415382Y-33192562D01*
+X102415382Y-33192562D02*
+X102510620Y-33240181D01*
+X102510620Y-33240181D02*
+X102558240Y-33287800D01*
+X102558240Y-33287800D02*
+X102605859Y-33383038D01*
+X102605859Y-33383038D02*
+X102605859Y-33478276D01*
+X102605859Y-33478276D02*
+X102558240Y-33573514D01*
+X102558240Y-33573514D02*
+X102510620Y-33621133D01*
+X102510620Y-33621133D02*
+X102415382Y-33668752D01*
+X102415382Y-33668752D02*
+X102224906Y-33716371D01*
+X102224906Y-33716371D02*
+X101986811Y-33716371D01*
+X101986811Y-33716371D02*
+X101796335Y-33668752D01*
+X101796335Y-33668752D02*
+X101701097Y-33621133D01*
+X101701097Y-33621133D02*
+X101653478Y-33573514D01*
+X101653478Y-33573514D02*
+X101605859Y-33478276D01*
+X102510620Y-32716371D02*
+X102558240Y-32668752D01*
+X102558240Y-32668752D02*
+X102605859Y-32716371D01*
+X102605859Y-32716371D02*
+X102558240Y-32763990D01*
+X102558240Y-32763990D02*
+X102510620Y-32716371D01*
+X102510620Y-32716371D02*
+X102605859Y-32716371D01*
+X102605859Y-31716372D02*
+X102605859Y-32287800D01*
+X102605859Y-32002086D02*
+X101605859Y-32002086D01*
+X101605859Y-32002086D02*
+X101748716Y-32097324D01*
+X101748716Y-32097324D02*
+X101843954Y-32192562D01*
+X101843954Y-32192562D02*
+X101891573Y-32287800D01*
+X102986811Y-30240181D02*
+X102939192Y-30287800D01*
+X102939192Y-30287800D02*
+X102796335Y-30383038D01*
+X102796335Y-30383038D02*
+X102701097Y-30430657D01*
+X102701097Y-30430657D02*
+X102558240Y-30478276D01*
+X102558240Y-30478276D02*
+X102320144Y-30525895D01*
+X102320144Y-30525895D02*
+X102129668Y-30525895D01*
+X102129668Y-30525895D02*
+X101891573Y-30478276D01*
+X101891573Y-30478276D02*
+X101748716Y-30430657D01*
+X101748716Y-30430657D02*
+X101653478Y-30383038D01*
+X101653478Y-30383038D02*
+X101510620Y-30287800D01*
+X101510620Y-30287800D02*
+X101463001Y-30240181D01*
+X102605859Y-29335419D02*
+X102605859Y-29906847D01*
+X102605859Y-29621133D02*
+X101605859Y-29621133D01*
+X101605859Y-29621133D02*
+X101748716Y-29716371D01*
+X101748716Y-29716371D02*
+X101843954Y-29811609D01*
+X101843954Y-29811609D02*
+X101891573Y-29906847D01*
+X102605859Y-28383038D02*
+X102605859Y-28954466D01*
+X102605859Y-28668752D02*
+X101605859Y-28668752D01*
+X101605859Y-28668752D02*
+X101748716Y-28763990D01*
+X101748716Y-28763990D02*
+X101843954Y-28859228D01*
+X101843954Y-28859228D02*
+X101891573Y-28954466D01*
+X102605859Y-27430657D02*
+X102605859Y-28002085D01*
+X102605859Y-27716371D02*
+X101605859Y-27716371D01*
+X101605859Y-27716371D02*
+X101748716Y-27811609D01*
+X101748716Y-27811609D02*
+X101843954Y-27906847D01*
+X101843954Y-27906847D02*
+X101891573Y-28002085D01*
+X102605859Y-26954466D02*
+X102605859Y-26763990D01*
+X102605859Y-26763990D02*
+X102558240Y-26668752D01*
+X102558240Y-26668752D02*
+X102510620Y-26621133D01*
+X102510620Y-26621133D02*
+X102367763Y-26525895D01*
+X102367763Y-26525895D02*
+X102177287Y-26478276D01*
+X102177287Y-26478276D02*
+X101796335Y-26478276D01*
+X101796335Y-26478276D02*
+X101701097Y-26525895D01*
+X101701097Y-26525895D02*
+X101653478Y-26573514D01*
+X101653478Y-26573514D02*
+X101605859Y-26668752D01*
+X101605859Y-26668752D02*
+X101605859Y-26859228D01*
+X101605859Y-26859228D02*
+X101653478Y-26954466D01*
+X101653478Y-26954466D02*
+X101701097Y-27002085D01*
+X101701097Y-27002085D02*
+X101796335Y-27049704D01*
+X101796335Y-27049704D02*
+X102034430Y-27049704D01*
+X102034430Y-27049704D02*
+X102129668Y-27002085D01*
+X102129668Y-27002085D02*
+X102177287Y-26954466D01*
+X102177287Y-26954466D02*
+X102224906Y-26859228D01*
+X102224906Y-26859228D02*
+X102224906Y-26668752D01*
+X102224906Y-26668752D02*
+X102177287Y-26573514D01*
+X102177287Y-26573514D02*
+X102129668Y-26525895D01*
+X102129668Y-26525895D02*
+X102034430Y-26478276D01*
+X102986811Y-26144942D02*
+X102939192Y-26097323D01*
+X102939192Y-26097323D02*
+X102796335Y-26002085D01*
+X102796335Y-26002085D02*
+X102701097Y-25954466D01*
+X102701097Y-25954466D02*
+X102558240Y-25906847D01*
+X102558240Y-25906847D02*
+X102320144Y-25859228D01*
+X102320144Y-25859228D02*
+X102129668Y-25859228D01*
+X102129668Y-25859228D02*
+X101891573Y-25906847D01*
+X101891573Y-25906847D02*
+X101748716Y-25954466D01*
+X101748716Y-25954466D02*
+X101653478Y-26002085D01*
+X101653478Y-26002085D02*
+X101510620Y-26097323D01*
+X101510620Y-26097323D02*
+X101463001Y-26144942D01*
+D11*
+X107935000Y-98010000D02*
+X107935000Y-90850000D01*
+X104065000Y-98010000D02*
+X107935000Y-98010000D01*
+X104065000Y-90850000D02*
+X104065000Y-98010000D01*
+D12*
+X102270000Y-39450000D02*
+G75*
+G03*
+X102230000Y-39450000I-20000J0D01*
+G01*
+X102230000Y-39450000D02*
+G75*
+G03*
+X102270000Y-39450000I20000J0D01*
+G01*
+G36*
+X102282843Y-38685280D02*
+G01*
+X102350338Y-38700244D01*
+X102413748Y-38730143D01*
+X102470349Y-38774971D01*
+X102515166Y-38831571D01*
+X102545060Y-38894982D01*
+X102560026Y-38962478D01*
+X102560057Y-39031336D01*
+X102545148Y-39098832D01*
+X102515291Y-39162242D01*
+X102470482Y-39218843D01*
+X102420829Y-39240603D01*
+X102370642Y-39220229D01*
+X102350311Y-39169989D01*
+X102371954Y-39120389D01*
+X102410633Y-39062434D01*
+X102423504Y-38996853D01*
+X102410580Y-38931272D01*
+X102371874Y-38873317D01*
+X102313930Y-38834707D01*
+X102248375Y-38821797D01*
+X102182821Y-38834647D01*
+X102124878Y-38873317D01*
+X102086184Y-38931286D01*
+X102073286Y-38996896D01*
+X102086184Y-39062506D01*
+X102124878Y-39120475D01*
+X102145305Y-39169648D01*
+X102124878Y-39218821D01*
+X102075662Y-39239195D01*
+X102026435Y-39218821D01*
+X102026461Y-39219001D01*
+X101975648Y-39152243D01*
+X101945167Y-39076788D01*
+X101935012Y-38996987D01*
+X101945170Y-38917207D01*
+X101975653Y-38841758D01*
+X102026479Y-38774971D01*
+X102083079Y-38730099D01*
+X102146489Y-38700199D01*
+X102213985Y-38685262D01*
+X102282843Y-38685280D01*
+G37*
+G36*
+X102026479Y-39219024D02*
+G01*
+X102026465Y-39219024D01*
+X102026461Y-39219001D01*
+X102026479Y-39219024D01*
+G37*
+G36*
+X102117812Y-38104293D02*
+G01*
+X102188220Y-38085741D01*
+X102260486Y-38080545D01*
+X102332522Y-38088701D01*
+X102402239Y-38110207D01*
+X102467548Y-38145059D01*
+X102526362Y-38193253D01*
+X102796960Y-38463866D01*
+X102797024Y-38463803D01*
+X103057367Y-38724133D01*
+X103094901Y-38767813D01*
+X103124866Y-38815333D01*
+X103147097Y-38865453D01*
+X103161879Y-38917733D01*
+X103168826Y-38966547D01*
+X103169773Y-39015760D01*
+X103162534Y-39074848D01*
+X103146295Y-39132432D01*
+X103316755Y-39303045D01*
+X103155870Y-39463920D01*
+X103010784Y-39318672D01*
+X102874565Y-39455045D01*
+X103019664Y-39600133D01*
+X102858779Y-39761019D01*
+X102713613Y-39616005D01*
+X102568914Y-39760699D01*
+X102714013Y-39905787D01*
+X102552966Y-40066661D01*
+X102380880Y-39894416D01*
+X102380787Y-39894512D01*
+X102326015Y-39909299D01*
+X102269943Y-39915525D01*
+X102220570Y-39914459D01*
+X102169709Y-39906992D01*
+X102120593Y-39893059D01*
+X102073421Y-39872325D01*
+X102023891Y-39841699D01*
+X101978594Y-39802992D01*
+X101978530Y-39803365D01*
+X101978530Y-39803376D01*
+X101447324Y-39271995D01*
+X101397988Y-39211448D01*
+X101362759Y-39144097D01*
+X101341628Y-39072205D01*
+X101334587Y-38998032D01*
+X101334591Y-38997989D01*
+X101560228Y-38997989D01*
+X101572210Y-39057741D01*
+X101608207Y-39111077D01*
+X102139413Y-39642448D01*
+X102193813Y-39678821D01*
+X102249227Y-39690341D01*
+X102309024Y-39679568D01*
+X102365472Y-39642341D01*
+X102896438Y-39111035D01*
+X102934220Y-39053541D01*
+X102944460Y-39003088D01*
+X102929804Y-38932048D01*
+X102896481Y-38885008D01*
+X102636155Y-38624681D01*
+X102636085Y-38624752D01*
+X102365475Y-38354139D01*
+X102312140Y-38318119D01*
+X102252441Y-38306064D01*
+X102192740Y-38318025D01*
+X102139399Y-38354053D01*
+X101608207Y-38885093D01*
+X101572206Y-38938357D01*
+X101560228Y-38997989D01*
+X101334591Y-38997989D01*
+X101339967Y-38933325D01*
+X101356091Y-38870139D01*
+X101183245Y-38697136D01*
+X101344130Y-38536080D01*
+X101489723Y-38681861D01*
+X101634581Y-38537157D01*
+X101488896Y-38391312D01*
+X101649769Y-38230427D01*
+X101795548Y-38376197D01*
+X101931831Y-38239899D01*
+X101785987Y-38094213D01*
+X101946860Y-37933339D01*
+X102117812Y-38104293D01*
+G37*
+D11*
+X104065000Y-27850000D02*
+X104065000Y-35010000D01*
+X104065000Y-35010000D02*
+X107935000Y-35010000D01*
+X107935000Y-35010000D02*
+X107935000Y-27850000D01*
+X107935000Y-44010000D02*
+X107935000Y-36850000D01*
+X104065000Y-44010000D02*
+X107935000Y-44010000D01*
+X104065000Y-36850000D02*
+X104065000Y-44010000D01*
+X104065000Y-45850000D02*
+X104065000Y-53010000D01*
+X104065000Y-53010000D02*
+X107935000Y-53010000D01*
+X107935000Y-53010000D02*
+X107935000Y-45850000D01*
+X107935000Y-62010000D02*
+X107935000Y-54850000D01*
+X104065000Y-62010000D02*
+X107935000Y-62010000D01*
+X104065000Y-54850000D02*
+X104065000Y-62010000D01*
+X104065000Y-63850000D02*
+X104065000Y-71010000D01*
+X104065000Y-71010000D02*
+X107935000Y-71010000D01*
+X107935000Y-71010000D02*
+X107935000Y-63850000D01*
+X107935000Y-107010000D02*
+X107935000Y-99850000D01*
+X104065000Y-107010000D02*
+X107935000Y-107010000D01*
+X104065000Y-99850000D02*
+X104065000Y-107010000D01*
+X104065000Y-72850000D02*
+X104065000Y-80010000D01*
+X104065000Y-80010000D02*
+X107935000Y-80010000D01*
+X107935000Y-80010000D02*
+X107935000Y-72850000D01*
+X104065000Y-81850000D02*
+X104065000Y-89010000D01*
+X104065000Y-89010000D02*
+X107935000Y-89010000D01*
+X107935000Y-89010000D02*
+X107935000Y-81850000D01*
+X105738748Y-24290000D02*
+X106261252Y-24290000D01*
+X105738748Y-25710000D02*
+X106261252Y-25710000D01*
+X103940000Y-12040000D02*
+X108060000Y-12040000D01*
+X103940000Y-22160000D02*
+X108060000Y-22160000D01*
+X102685000Y-12340000D02*
+X103940000Y-12340000D01*
+X103940000Y-12040000D02*
+X103940000Y-12340000D01*
+X108060000Y-12040000D02*
+X108060000Y-12340000D01*
+X103940000Y-21860000D02*
+X103940000Y-22160000D01*
+X108060000Y-21860000D02*
+X108060000Y-22160000D01*
+X103940000Y-13860000D02*
+X103940000Y-14340000D01*
+X108060000Y-13860000D02*
+X108060000Y-14340000D01*
+X103940000Y-15860000D02*
+X103940000Y-16340000D01*
+X108060000Y-15860000D02*
+X108060000Y-16340000D01*
+X103940000Y-17860000D02*
+X103940000Y-18340000D01*
+X108060000Y-17860000D02*
+X108060000Y-18340000D01*
+X103940000Y-19860000D02*
+X103940000Y-20340000D01*
+X108060000Y-19860000D02*
+X108060000Y-20340000D01*
+M02*
diff --git a/HARDWARE/GERBER/lightsticks_extender-NPTH.drl b/HARDWARE/GERBER/lightsticks_extender-NPTH.drl
new file mode 100644 (file)
index 0000000..0c85fa4
--- /dev/null
@@ -0,0 +1,12 @@
+M48
+; DRILL file {KiCad 7.0.11-7.0.11~ubuntu20.04.1} date Fri 05 Apr 2024 05:11:46 PM CEST
+; FORMAT={-:-/ absolute / inch / decimal}
+; #@! TF.CreationDate,2024-04-05T17:11:46+02:00
+; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1
+; #@! TF.FileFunction,NonPlated,1,2,NPTH
+FMAT,2
+INCH
+%
+G90
+G05
+M30
diff --git a/HARDWARE/GERBER/lightsticks_extender-PTH.drl b/HARDWARE/GERBER/lightsticks_extender-PTH.drl
new file mode 100644 (file)
index 0000000..b6d79dc
--- /dev/null
@@ -0,0 +1,27 @@
+M48
+; DRILL file {KiCad 7.0.11-7.0.11~ubuntu20.04.1} date Fri 05 Apr 2024 05:11:46 PM CEST
+; FORMAT={-:-/ absolute / inch / decimal}
+; #@! TF.CreationDate,2024-04-05T17:11:46+02:00
+; #@! TF.GenerationSoftware,Kicad,Pcbnew,7.0.11-7.0.11~ubuntu20.04.1
+; #@! TF.FileFunction,Plated,1,2,PTH
+FMAT,2
+INCH
+; #@! TA.AperFunction,Plated,PTH,ViaDrill
+T1C0.0157
+%
+G90
+G05
+T1
+X4.1339Y-0.9055
+X4.1339Y-1.1811
+X4.1339Y-1.5354
+X4.1339Y-1.8898
+X4.1339Y-2.2441
+X4.1339Y-2.5984
+X4.1732Y-0.6299
+X4.1732Y-1.2598
+X4.1732Y-1.6142
+X4.1732Y-1.9685
+X4.1732Y-2.3228
+X4.1732Y-2.6772
+M30
diff --git a/HARDWARE/lightsticks-cache.lib b/HARDWARE/lightsticks-cache.lib
new file mode 100644 (file)
index 0000000..6a66cb1
--- /dev/null
@@ -0,0 +1,451 @@
+EESchema-LIBRARY Version 2.4
+#encoding utf-8
+#
+# Device_Battery_Cell
+#
+DEF Device_Battery_Cell BT 0 0 N N 1 F N
+F0 "BT" 100 100 50 H V L CNN
+F1 "Device_Battery_Cell" 100 0 50 H V L CNN
+F2 "" 0 60 50 V I C CNN
+F3 "" 0 60 50 V I C CNN
+DRAW
+S -90 70 90 60 0 1 0 F
+S -62 47 58 27 0 1 0 F
+P 2 0 1 0 0 30 0 0 N
+P 2 0 1 0 0 70 0 100 N
+P 2 0 1 10 20 135 60 135 N
+P 2 0 1 10 40 155 40 115 N
+X + 1 0 200 100 D 50 50 1 1 P
+X - 2 0 -100 100 U 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Device_LED
+#
+DEF Device_LED D 0 40 N N 1 F N
+F0 "D" 0 100 50 H V C CNN
+F1 "Device_LED" 0 -100 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ LED*
+ LED_SMD:*
+ LED_THT:*
+$ENDFPLIST
+DRAW
+P 2 0 1 8 -50 -50 -50 50 N
+P 2 0 1 0 -50 0 50 0 N
+P 4 0 1 8 50 -50 50 50 -50 0 50 -50 N
+P 5 0 1 0 -120 -30 -180 -90 -150 -90 -180 -90 -180 -60 N
+P 5 0 1 0 -70 -30 -130 -90 -100 -90 -130 -90 -130 -60 N
+X K 1 -150 0 100 R 50 50 1 1 P
+X A 2 150 0 100 L 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Jumper_SolderJumper_2_Bridged
+#
+DEF Jumper_SolderJumper_2_Bridged JP 0 0 Y N 1 F N
+F0 "JP" 0 80 50 H V C CNN
+F1 "Jumper_SolderJumper_2_Bridged" 0 -100 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ SolderJumper*Bridged*
+$ENDFPLIST
+DRAW
+A -10 0 40 901 -901 0 1 0 N -10 40 -10 -40
+A -10 0 40 901 -901 0 1 0 F -10 40 -10 -40
+A 10 0 40 -899 899 0 1 0 N 10 -40 10 40
+A 10 0 40 -899 899 0 1 0 F 10 -40 10 40
+S -20 20 20 -20 0 1 0 F
+P 2 0 1 0 -10 40 -10 -40 N
+P 2 0 1 0 10 40 10 -40 N
+X A 1 -150 0 100 R 50 50 1 1 P
+X B 2 150 0 100 L 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Regulator_Linear_MIC5205-3.3YM5
+#
+DEF Regulator_Linear_MIC5205-3.3YM5 U 0 10 Y Y 1 F N
+F0 "U" -150 225 50 H V C CNN
+F1 "Regulator_Linear_MIC5205-3.3YM5" 0 225 50 H V L CNN
+F2 "Package_TO_SOT_SMD:SOT-23-5" 0 325 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+ALIAS AP131-18 AP131-20 AP131-25 AP131-28 AP131-29 AP131-30 AP131-33 AP131-35 MIC5205-2.5YM5 MIC5205-2.7YM5 MIC5205-2.8YM5 MIC5205-2.85YM5 MIC5205-2.9YM5 MIC5205-3.0YM5 MIC5205-3.1YM5 MIC5205-3.2YM5 MIC5205-3.3YM5 MIC5205-3.6YM5 MIC5205-3.8YM5 MIC5205-4.0YM5 MIC5205-5.0YM5 MIC5219-2.5YM5 MIC5219-2.6YM5 MIC5219-2.7YM5 MIC5219-2.8YM5 MIC5219-2.85YM5 MIC5219-2.9YM5 MIC5219-3.0YM5 MIC5219-3.1YM5 MIC5219-3.3YM5 MIC5219-3.6YM5 MIC5219-5.0YM5 SPX3819M5-L-1-2 SPX3819M5-L-1-5 SPX3819M5-L-1-8 SPX3819M5-L-2-5 SPX3819M5-L-3-0 SPX3819M5-L-3-3 SPX3819M5-L-5-0
+$FPLIST
+ SOT?23*
+$ENDFPLIST
+DRAW
+S -200 175 200 -200 0 1 10 f
+X IN 1 -300 100 100 R 50 50 1 1 W
+X GND 2 0 -300 100 U 50 50 1 1 W
+X EN 3 -300 0 100 R 50 50 1 1 I
+X BP 4 300 0 100 L 50 50 1 1 I
+X OUT 5 300 100 100 L 50 50 1 1 w
+ENDDRAW
+ENDDEF
+#
+# Shalnoff_10UF-POLAR-0603-6.3V-20%_TANT_
+#
+DEF Shalnoff_10UF-POLAR-0603-6.3V-20%_TANT_ C 0 40 N N 1 L N
+F0 "C" 40 25 45 H V L BNN
+F1 "Shalnoff_10UF-POLAR-0603-6.3V-20%_TANT_" 40 -165 45 H V L BNN
+F2 "0603-POLAR" 0 250 20 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ *0603-POLAR*
+ *EIA3216*
+$ENDFPLIST
+DRAW
+A 0 -199 159 901 1273 1 1 0 N 0 -40 -97 -72
+A 0 -198 159 523 899 1 1 0 N 98 -73 0 -39
+S -88 26 -53 31 1 1 0 F
+S -73 11 -68 46 1 1 0 F
+P 2 1 0 0 -100 0 100 0 N
+P 2 1 0 0 0 -40 0 -100 N
+X + 1 0 100 100 D 40 40 1 1 P
+X - 2 0 -200 100 U 40 40 1 1 P
+ENDDRAW
+ENDDEF
+#
+# Shalnoff_USB_A_SMT_MALE_PCB
+#
+DEF Shalnoff_USB_A_SMT_MALE_PCB J 0 40 N Y 1 L N
+F0 "J" -150 300 45 H V L BNN
+F1 "Shalnoff_USB_A_SMT_MALE_PCB" -150 -350 45 H V L BNN
+F2 "USB-A-SMT-MALE" 0 400 20 H I C CNN
+F3 "" 0 0 50 H I C CNN
+F4 "CONN-11499" 0 450 60 H V C CNN
+$FPLIST
+ *USB-A-SMT-MALE*
+$ENDFPLIST
+DRAW
+T 900 60 15 80 0 1 0 USB Normal 0 C C
+S -150 -250 150 250 1 0 0 f
+X VBUS 1 -250 150 100 R 40 40 1 1 W
+X D- 2 -250 50 100 R 40 40 1 1 B
+X D+ 3 -250 -50 100 R 40 40 1 1 B
+X GND 4 -250 -150 100 R 40 40 1 1 W
+ENDDRAW
+ENDDEF
+#
+# SparkFun-Capacitors_2.2UF-0805-25V-_+80_-20%_
+#
+DEF SparkFun-Capacitors_2.2UF-0805-25V-_+80_-20%_ C 0 40 N N 1 L N
+F0 "C" 60 115 45 H V L BNN
+F1 "SparkFun-Capacitors_2.2UF-0805-25V-_+80_-20%_" 60 -85 45 H V L BNN
+F2 "0805" 0 250 20 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ *0805*
+$ENDFPLIST
+DRAW
+S -80 20 80 40 1 1 0 F
+S -80 60 80 80 1 1 0 F
+P 2 1 0 0 0 0 0 20 N
+P 2 1 0 0 0 100 0 80 N
+X 1 1 0 200 100 D 40 40 1 1 P
+X 2 2 0 -100 100 U 40 40 1 1 P
+ENDDRAW
+ENDDEF
+#
+# SparkFun-Connectors_CONN_05X2NO_SILK
+#
+DEF SparkFun-Connectors_CONN_05X2NO_SILK J 0 40 N Y 1 L N
+F0 "J" -150 300 45 H V L BNN
+F1 "SparkFun-Connectors_CONN_05X2NO_SILK" -150 -350 45 H V L BNN
+F2 "2X5_NOSILK" 0 400 20 H I C CNN
+F3 "" 0 0 50 H I C CNN
+F4 "XXX-00000" 0 450 60 H V C CNN
+$FPLIST
+ *2X5_NOSILK*
+$ENDFPLIST
+DRAW
+S 150 -250 -150 250 0 1 0 f
+X 1 1 -250 200 100 R 40 40 1 1 P
+X 10 10 250 -200 100 L 40 40 1 1 P
+X 2 2 250 200 100 L 40 40 1 1 P
+X 3 3 -250 100 100 R 40 40 1 1 P
+X 4 4 250 100 100 L 40 40 1 1 P
+X 5 5 -250 0 100 R 40 40 1 1 P
+X 6 6 250 0 100 L 40 40 1 1 P
+X 7 7 -250 -100 100 R 40 40 1 1 P
+X 8 8 250 -100 100 L 40 40 1 1 P
+X 9 9 -250 -200 100 R 40 40 1 1 P
+ENDDRAW
+ENDDEF
+#
+# SparkFun-DiscreteSemi_MOSFET-NCH-AO3404A
+#
+DEF SparkFun-DiscreteSemi_MOSFET-NCH-AO3404A Q 0 40 N N 1 L N
+F0 "Q" 150 150 45 H V L BNN
+F1 "SparkFun-DiscreteSemi_MOSFET-NCH-AO3404A" 150 -200 45 H V L BNN
+F2 "SOT23-3" 0 250 20 H I C CNN
+F3 "" 0 0 50 H I C CNN
+F4 "TRANS-12988" 0 300 60 H V C CNN
+$FPLIST
+ *SOT23-3*
+ *SOT23-3*
+$ENDFPLIST
+DRAW
+P 2 1 0 0 -100 -100 -100 100 N
+P 2 1 0 0 -78 -75 -78 -100 N
+P 2 1 0 0 -78 -75 0 -75 N
+P 2 1 0 0 -78 -51 -78 -75 N
+P 2 1 0 0 -78 27 -78 -33 N
+P 2 1 0 0 -78 71 -78 43 N
+P 2 1 0 0 -78 71 100 71 N
+P 2 1 0 0 -78 100 -78 71 N
+P 2 1 0 0 0 -75 0 0 N
+P 2 1 0 0 0 0 -48 0 N
+P 2 1 0 0 63 15 70 22 N
+P 2 1 0 0 100 -100 100 -75 N
+P 2 1 0 0 100 -75 0 -75 N
+P 2 1 0 0 100 -28 100 -75 N
+P 2 1 0 0 100 22 70 22 N
+P 2 1 0 0 100 22 130 22 N
+P 2 1 0 0 100 71 100 22 N
+P 2 1 0 0 100 100 100 71 N
+P 2 1 0 0 130 22 137 29 N
+P 6 1 1 0 -78 0 -48 10 -48 10 -48 -10 -48 -10 -78 0 F
+P 6 1 1 0 70 -28 100 22 100 22 130 -28 130 -28 70 -28 F
+X G 1 -200 -100 100 R 40 40 1 1 B
+X S 2 100 -200 100 U 40 40 1 1 B
+X D 3 100 200 100 D 40 40 1 1 B
+ENDDRAW
+ENDDEF
+#
+# SparkFun-IC-Power_MCP73831
+#
+DEF SparkFun-IC-Power_MCP73831 U 0 40 Y Y 1 L N
+F0 "U" -300 250 45 H V L BNN
+F1 "SparkFun-IC-Power_MCP73831" -300 -300 45 H V L BNN
+F2 "SOT23-5" 0 300 20 H I C CNN
+F3 "" 0 0 60 H I C CNN
+F4 "IC-09995" 0 350 60 H V C CNN
+$FPLIST
+ *SOT23-5*
+$ENDFPLIST
+DRAW
+P 5 1 1 0 -300 200 300 200 300 -200 -300 -200 -300 200 f
+X STAT 1 -400 -100 100 R 40 40 1 1 O
+X VSS 2 400 -100 100 L 40 40 1 1 W
+X VBAT 3 400 100 100 L 40 40 1 1 W
+X VIN 4 -400 100 100 R 40 40 1 1 W
+X PROG 5 400 0 100 L 40 40 1 1 I
+ENDDRAW
+ENDDEF
+#
+# SparkFun-Resistors_RESISTOR0805
+#
+DEF SparkFun-Resistors_RESISTOR0805 R 0 40 N N 1 L N
+F0 "R" -200 50 45 H V L BNN
+F1 "SparkFun-Resistors_RESISTOR0805" -200 -150 45 H V L BNN
+F2 "0805" 0 150 20 H I C CNN
+F3 "" 0 0 60 H I C CNN
+F4 " " 0 200 60 H V C CNN
+$FPLIST
+ *0805*
+$ENDFPLIST
+DRAW
+P 2 1 0 0 -100 0 -85 40 N
+P 2 1 0 0 -85 40 -60 -40 N
+P 2 1 0 0 -60 -40 -35 40 N
+P 2 1 0 0 -35 40 -10 -40 N
+P 2 1 0 0 -10 -40 15 40 N
+P 2 1 0 0 15 40 40 -40 N
+P 2 1 0 0 40 -40 65 40 N
+P 2 1 0 0 65 40 90 -40 N
+P 2 1 0 0 90 -40 100 0 N
+X 1 1 -200 0 100 R 40 40 1 1 P
+X 2 2 200 0 100 L 40 40 1 1 P
+ENDDRAW
+ENDDEF
+#
+# SparkFun-Switches_MOMENTARY-SWITCH-SPST-2-SMD-5.2MM
+#
+DEF SparkFun-Switches_MOMENTARY-SWITCH-SPST-2-SMD-5.2MM S 0 40 N Y 1 L N
+F0 "S" -200 50 45 H V L BNN
+F1 "SparkFun-Switches_MOMENTARY-SWITCH-SPST-2-SMD-5.2MM" -200 -200 45 H V L BNN
+F2 "TACTILE_SWITCH_SMD_5.2MM" 0 250 20 H I C CNN
+F3 "" 0 0 50 H I C CNN
+F4 "SWCH-08247" 0 300 60 H V C CNN
+$FPLIST
+ *TACTILE_SWITCH_SMD_5.2MM*
+$ENDFPLIST
+DRAW
+C -100 0 5 1 1 0 F
+C 100 0 5 1 1 0 F
+P 2 1 0 0 -100 -100 -100 0 N
+P 2 1 0 0 -100 0 75 50 N
+P 2 1 0 0 -75 175 -75 125 N
+P 2 1 0 0 0 50 0 25 N
+P 2 1 0 0 0 100 0 75 N
+P 2 1 0 0 0 175 -75 175 N
+P 2 1 0 0 0 175 0 125 N
+P 2 1 0 0 75 0 100 0 N
+P 2 1 0 0 75 175 0 175 N
+P 2 1 0 0 75 175 75 125 N
+P 2 1 0 0 100 -100 100 0 N
+X 1 1 -200 0 100 R 40 40 1 1 P
+X 2 2 -200 -100 100 R 40 40 1 1 P
+X 3 3 200 0 100 L 40 40 1 1 P
+X 4 4 200 -100 100 L 40 40 1 1 P
+ENDDRAW
+ENDDEF
+#
+# SparkFun-Switches_SWITCH-SPDT-PTH-11.6X4.0MM
+#
+DEF SparkFun-Switches_SWITCH-SPDT-PTH-11.6X4.0MM S 0 40 N N 1 L N
+F0 "S" -100 150 45 H V L BNN
+F1 "SparkFun-Switches_SWITCH-SPDT-PTH-11.6X4.0MM" -100 -200 45 H V L BNN
+F2 "SWITCH_SPDT_PTH_11.6X4.0MM" 0 250 20 H I C CNN
+F3 "" 0 0 50 H I C CNN
+F4 "SWCH-08261" 0 300 60 H V C CNN
+$FPLIST
+ *SWITCH_SPDT_PTH_11.6X4.0MM*
+ *SWITCH_SPDT_PTH_11.6X4.0MM_KIT*
+ *SWITCH_SPDT_PTH_11.6X4.0MM_LOCK*
+ *SWITCH_DPDT_SMD_AYZ0202*
+ *SWITCH_SPST_SMD_A*
+$ENDFPLIST
+DRAW
+C 0 0 14 1 1 0 N
+C 100 -100 14 1 1 0 N
+C 100 100 14 1 1 0 N
+P 2 1 0 0 0 0 100 50 N
+P 2 1 0 0 100 -100 125 -100 N
+P 2 1 0 0 100 100 125 100 N
+X O 1 200 100 100 L 40 40 1 1 P
+X P 2 -100 0 100 R 40 40 1 1 P
+X S 3 200 -100 100 L 40 40 1 1 P
+ENDDRAW
+ENDDEF
+#
+# dk_Alarms-Buzzers-and-Sirens_PS1240P02BT
+#
+DEF dk_Alarms-Buzzers-and-Sirens_PS1240P02BT BZ 0 0 Y Y 1 F N
+F0 "BZ" 0 200 60 H V L CNN
+F1 "dk_Alarms-Buzzers-and-Sirens_PS1240P02BT" -50 -150 60 H V L CNN
+F2 "digikey-footprints:Piezo_Transducer_THT_PS1240P02BT" 200 200 60 H I L CNN
+F3 "https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf" 200 300 60 H I L CNN
+F4 "445-2525-1-ND" 200 400 60 H I L CNN "Digi-Key_PN"
+F5 "PS1240P02BT" 200 500 60 H I L CNN "MPN"
+F6 "Audio Products" 200 600 60 H I L CNN "Category"
+F7 "Alarms, Buzzers, and Sirens" 200 700 60 H I L CNN "Family"
+F8 "https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf" 200 800 60 H I L CNN "DK_Datasheet_Link"
+F9 "/product-detail/en/tdk-corporation/PS1240P02BT/445-2525-1-ND/935930" 200 900 60 H I L CNN "DK_Detail_Page"
+F10 "AUDIO PIEZO TRANSDUCER 30V TH" 200 1000 60 H I L CNN "Description"
+F11 "TDK Corporation" 200 1100 60 H I L CNN "Manufacturer"
+F12 "Active" 200 1200 60 H I L CNN "Status"
+DRAW
+A 200 50 71 450 -450 0 1 0 N 250 100 250 0
+A 200 50 112 634 -634 0 1 0 N 250 150 250 -50
+S 0 150 100 -50 0 1 0 f
+P 5 0 1 0 100 100 200 150 200 -50 100 0 100 100 f
+X ~ 1 -100 100 100 R 50 50 1 1 I
+X ~ 2 -100 0 100 R 50 50 1 1 I
+ENDDRAW
+ENDDEF
+#
+# dk_Embedded-Microcontrollers_ATTINY85-20SU
+#
+DEF dk_Embedded-Microcontrollers_ATTINY85-20SU U 0 40 Y Y 1 F N
+F0 "U" -200 250 60 H V L CNN
+F1 "dk_Embedded-Microcontrollers_ATTINY85-20SU" 250 200 60 V V R CNN
+F2 "digikey-footprints:SOIC-8_W5.3mm" 200 200 60 H I L CNN
+F3 "http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894" 200 300 60 H I L CNN
+F4 "ATTINY85-20SU-ND" 200 400 60 H I L CNN "Digi-Key_PN"
+F5 "ATTINY85-20SU" 200 500 60 H I L CNN "MPN"
+F6 "Integrated Circuits (ICs)" 200 600 60 H I L CNN "Category"
+F7 "Embedded - Microcontrollers" 200 700 60 H I L CNN "Family"
+F8 "http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894" 200 800 60 H I L CNN "DK_Datasheet_Link"
+F9 "/product-detail/en/microchip-technology/ATTINY85-20SU/ATTINY85-20SU-ND/735470" 200 900 60 H I L CNN "DK_Detail_Page"
+F10 "IC MCU 8BIT 8KB FLASH 8SOIC" 200 1000 60 H I L CNN "Description"
+F11 "Microchip Technology" 200 1100 60 H I L CNN "Manufacturer"
+F12 "Active" 200 1200 60 H I L CNN "Status"
+DRAW
+S -200 200 200 -500 0 1 0 f
+X PB5 1 -300 -400 100 R 50 50 1 1 B
+X PB3 2 -300 -200 100 R 50 50 1 1 B
+X PB4 3 -300 -300 100 R 50 50 1 1 B
+X GND 4 100 -600 100 U 50 50 1 1 W
+X PB0 5 -300 100 100 R 50 50 1 1 B
+X PB1 6 -300 0 100 R 50 50 1 1 B
+X PB2 7 -300 -100 100 R 50 50 1 1 B
+X VCC 8 100 300 100 D 50 50 1 1 W
+ENDDRAW
+ENDDEF
+#
+# dk_Transistors-FETs-MOSFETs-Single_2N7002
+#
+DEF dk_Transistors-FETs-MOSFETs-Single_2N7002 Q 0 0 Y Y 1 F N
+F0 "Q" -106 143 60 H V R CNN
+F1 "dk_Transistors-FETs-MOSFETs-Single_2N7002" 136 0 60 V V C CNN
+F2 "digikey-footprints:SOT-23-3" 200 200 60 H I L CNN
+F3 "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" 200 300 60 H I L CNN
+F4 "2N7002NCT-ND" 200 400 60 H I L CNN "Digi-Key_PN"
+F5 "2N7002" 200 500 60 H I L CNN "MPN"
+F6 "Discrete Semiconductor Products" 200 600 60 H I L CNN "Category"
+F7 "Transistors - FETs, MOSFETs - Single" 200 700 60 H I L CNN "Family"
+F8 "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" 200 800 60 H I L CNN "DK_Datasheet_Link"
+F9 "/product-detail/en/on-semiconductor/2N7002/2N7002NCT-ND/244664" 200 900 60 H I L CNN "DK_Detail_Page"
+F10 "MOSFET N-CH 60V 115MA SOT-23" 200 1000 60 H I L CNN "Description"
+F11 "ON Semiconductor" 200 1100 60 H I L CNN "Manufacturer"
+F12 "Active" 200 1200 60 H I L CNN "Status"
+DRAW
+C -50 0 130 0 1 0 f
+C 0 -75 5 0 1 0 N
+C 0 -55 5 0 1 0 N
+C 0 75 5 0 1 0 N
+P 2 0 1 0 0 -55 -100 -55 N
+P 3 0 1 0 -200 -100 -120 -100 -120 55 N
+P 3 0 1 0 0 -100 0 0 -100 0 N
+P 3 0 1 0 0 100 0 55 -100 55 N
+P 5 0 1 0 -5 -75 40 -75 40 55 40 75 -5 75 N
+P 2 1 1 0 -100 -55 -100 -75 N
+P 2 1 1 0 -100 -55 -100 -35 N
+P 2 1 1 0 -100 0 -100 -20 N
+P 2 1 1 0 -100 0 -100 20 N
+P 2 1 1 0 -100 75 -100 35 N
+P 2 1 1 0 60 20 20 20 N
+P 4 1 1 0 -100 0 -70 20 -70 -20 -100 0 F
+P 4 1 1 0 40 20 20 -10 60 -10 40 20 F
+X G 1 -300 -100 100 R 50 50 1 1 B
+X S 2 0 -200 100 U 50 50 1 1 B
+X D 3 0 200 100 D 50 50 1 1 B
+ENDDRAW
+ENDDEF
+#
+# power_+3.3V
+#
+DEF power_+3.3V #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -150 50 H I C CNN
+F1 "power_+3.3V" 0 140 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+ALIAS +3.3V
+DRAW
+P 2 0 1 0 -30 50 0 100 N
+P 2 0 1 0 0 0 0 100 N
+P 2 0 1 0 0 100 30 50 N
+X +3V3 1 0 0 0 U 50 50 1 1 W N
+ENDDRAW
+ENDDEF
+#
+# power_GND
+#
+DEF power_GND #PWR 0 0 Y Y 1 F P
+F0 "#PWR" 0 -250 50 H I C CNN
+F1 "power_GND" 0 -150 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+DRAW
+P 6 0 1 0 0 0 0 -50 50 -50 0 -100 -50 -50 0 -50 N
+X GND 1 0 0 0 D 50 50 1 1 W N
+ENDDRAW
+ENDDEF
+#
+#End Library
diff --git a/HARDWARE/lightsticks.kicad_pcb b/HARDWARE/lightsticks.kicad_pcb
new file mode 100644 (file)
index 0000000..cf48c60
--- /dev/null
@@ -0,0 +1,3051 @@
+(kicad_pcb (version 20171130) (host pcbnew 5.1.4-e60b266~84~ubuntu18.04.1)
+
+  (general
+    (thickness 1.6)
+    (drawings 10)
+    (tracks 534)
+    (zones 0)
+    (modules 45)
+    (nets 30)
+  )
+
+  (page A4)
+  (layers
+    (0 F.Cu signal)
+    (31 B.Cu signal)
+    (32 B.Adhes user)
+    (33 F.Adhes user)
+    (34 B.Paste user)
+    (35 F.Paste user)
+    (36 B.SilkS user)
+    (37 F.SilkS user)
+    (38 B.Mask user)
+    (39 F.Mask user)
+    (40 Dwgs.User user)
+    (41 Cmts.User user)
+    (42 Eco1.User user)
+    (43 Eco2.User user)
+    (44 Edge.Cuts user)
+    (45 Margin user)
+    (46 B.CrtYd user)
+    (47 F.CrtYd user)
+    (48 B.Fab user)
+    (49 F.Fab user)
+  )
+
+  (setup
+    (last_trace_width 0.25)
+    (trace_clearance 0.2)
+    (zone_clearance 0.508)
+    (zone_45_only no)
+    (trace_min 0.2)
+    (via_size 0.8)
+    (via_drill 0.4)
+    (via_min_size 0.4)
+    (via_min_drill 0.3)
+    (uvia_size 0.3)
+    (uvia_drill 0.1)
+    (uvias_allowed no)
+    (uvia_min_size 0.2)
+    (uvia_min_drill 0.1)
+    (edge_width 0.05)
+    (segment_width 0.2)
+    (pcb_text_width 0.3)
+    (pcb_text_size 1.5 1.5)
+    (mod_edge_width 0.12)
+    (mod_text_size 1 1)
+    (mod_text_width 0.15)
+    (pad_size 1.524 1.524)
+    (pad_drill 0.762)
+    (pad_to_mask_clearance 0.051)
+    (solder_mask_min_width 0.25)
+    (aux_axis_origin 0 0)
+    (visible_elements FFFFFF7F)
+    (pcbplotparams
+      (layerselection 0x010fc_ffffffff)
+      (usegerberextensions false)
+      (usegerberattributes false)
+      (usegerberadvancedattributes false)
+      (creategerberjobfile false)
+      (excludeedgelayer true)
+      (linewidth 0.100000)
+      (plotframeref false)
+      (viasonmask false)
+      (mode 1)
+      (useauxorigin false)
+      (hpglpennumber 1)
+      (hpglpenspeed 20)
+      (hpglpendiameter 15.000000)
+      (psnegative false)
+      (psa4output false)
+      (plotreference true)
+      (plotvalue true)
+      (plotinvisibletext false)
+      (padsonsilk false)
+      (subtractmaskfromsilk false)
+      (outputformat 1)
+      (mirror false)
+      (drillshape 1)
+      (scaleselection 1)
+      (outputdirectory ""))
+  )
+
+  (net 0 "")
+  (net 1 +3V3)
+  (net 2 GND)
+  (net 3 "Net-(BZ1-Pad1)")
+  (net 4 "Net-(D1-Pad1)")
+  (net 5 "Net-(D2-Pad2)")
+  (net 6 "Net-(D10-Pad2)")
+  (net 7 "Net-(J1-Pad2)")
+  (net 8 "Net-(J1-Pad3)")
+  (net 9 "Net-(R6-Pad1)")
+  (net 10 "Net-(S1-Pad2)")
+  (net 11 "Net-(C4-Pad1)")
+  (net 12 "Net-(J2-Pad1)")
+  (net 13 "Net-(J2-Pad2)")
+  (net 14 "Net-(J2-Pad3)")
+  (net 15 "Net-(J2-Pad4)")
+  (net 16 "Net-(J2-Pad7)")
+  (net 17 "Net-(J2-Pad8)")
+  (net 18 "Net-(J2-Pad9)")
+  (net 19 "Net-(J2-Pad10)")
+  (net 20 "Net-(R7-Pad2)")
+  (net 21 "Net-(R10-Pad1)")
+  (net 22 "Net-(C1-Pad1)")
+  (net 23 "Net-(D1-Pad2)")
+  (net 24 /VCC)
+  (net 25 "Net-(JP1-Pad2)")
+  (net 26 "Net-(D13-Pad2)")
+  (net 27 "Net-(D13-Pad1)")
+  (net 28 /Drain)
+  (net 29 /Gate)
+
+  (net_class Default "This is the default net class."
+    (clearance 0.2)
+    (trace_width 0.25)
+    (via_dia 0.8)
+    (via_drill 0.4)
+    (uvia_dia 0.3)
+    (uvia_drill 0.1)
+    (add_net +3V3)
+    (add_net /Drain)
+    (add_net /Gate)
+    (add_net /VCC)
+    (add_net GND)
+    (add_net "Net-(BZ1-Pad1)")
+    (add_net "Net-(C1-Pad1)")
+    (add_net "Net-(C4-Pad1)")
+    (add_net "Net-(D1-Pad1)")
+    (add_net "Net-(D1-Pad2)")
+    (add_net "Net-(D10-Pad2)")
+    (add_net "Net-(D13-Pad1)")
+    (add_net "Net-(D13-Pad2)")
+    (add_net "Net-(D2-Pad2)")
+    (add_net "Net-(J1-Pad2)")
+    (add_net "Net-(J1-Pad3)")
+    (add_net "Net-(J2-Pad1)")
+    (add_net "Net-(J2-Pad10)")
+    (add_net "Net-(J2-Pad2)")
+    (add_net "Net-(J2-Pad3)")
+    (add_net "Net-(J2-Pad4)")
+    (add_net "Net-(J2-Pad7)")
+    (add_net "Net-(J2-Pad8)")
+    (add_net "Net-(J2-Pad9)")
+    (add_net "Net-(JP1-Pad2)")
+    (add_net "Net-(R10-Pad1)")
+    (add_net "Net-(R6-Pad1)")
+    (add_net "Net-(R7-Pad2)")
+    (add_net "Net-(S1-Pad2)")
+  )
+
+  (module Shalnoff:dailybeer_logo_bw_inv (layer B.Cu) (tedit 5DCFC862) (tstamp 5DC92B56)
+    (at 106.05 105 90)
+    (descr "Imported from dailybeer_logo_bw_inv.svg")
+    (tags svg2mod)
+    (attr smd)
+    (fp_text reference svg2mod (at 0 6.919062 270) (layer B.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)) (justify mirror))
+    )
+    (fp_text value G*** (at 0 -6.919062 270) (layer B.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)) (justify mirror))
+    )
+    (fp_poly (pts (xy 1.196341 0.053649) (xy 1.196341 -0.834253) (xy 1.420996 -0.773906) (xy 1.580348 -0.61495)
+      (xy 1.640907 -0.390509) (xy 1.580348 -0.16596) (xy 1.420996 -0.006805) (xy 1.196341 0.053649)) (layer B.SilkS) (width 0))
+    (fp_poly (pts (xy -0.000235 3.2) (xy -1.633016 1.624103) (xy -1.452523 1.763628) (xy -1.239451 1.853559)
+      (xy -1.002293 1.885378) (xy -0.828243 1.867768) (xy -0.660992 1.816567) (xy -0.552016 2.031651)
+      (xy -0.366164 2.176626) (xy -0.131051 2.229868) (xy 0.052892 2.197739) (xy 0.213326 2.107255)
+      (xy 0.336021 1.966486) (xy 0.525485 2.115833) (xy 0.760725 2.169264) (xy 0.966499 2.129033)
+      (xy 1.137016 2.018961) (xy 1.255977 1.854514) (xy 1.307083 1.651157) (xy 1.49951 1.534931)
+      (xy 1.627132 1.355276) (xy 1.67344 1.13533) (xy 1.636451 0.938149) (xy 1.534795 0.772181)
+      (xy 1.381594 0.652109) (xy 1.189973 0.592618) (xy 1.189973 0.492372) (xy 1.421725 0.461312)
+      (xy 1.629886 0.373629) (xy 1.806187 0.237568) (xy 1.942356 0.061375) (xy 2.030122 -0.146706)
+      (xy 2.061216 -0.378429) (xy 2.030119 -0.610151) (xy 1.942351 -0.818231) (xy 1.806183 -0.994425)
+      (xy 1.629884 -1.130486) (xy 1.421724 -1.21817) (xy 1.189973 -1.24923) (xy 1.189973 -1.574126)
+      (xy 1.156416 -1.782206) (xy 1.062944 -1.96231) (xy 0.920359 -2.103947) (xy 0.739461 -2.196624)
+      (xy 0.531051 -2.229847) (xy 0.478677 -2.229847) (xy 0.460331 -2.229847) (xy -0.709397 -2.229847)
+      (xy -0.726677 -2.229847) (xy -0.744811 -2.229847) (xy -0.953214 -2.196624) (xy -1.134103 -2.103947)
+      (xy -1.276681 -1.96231) (xy -1.370146 -1.782206) (xy -1.403701 -1.574126) (xy -1.403701 0.137754)
+      (xy -1.169035 0.067599) (xy -1.169035 -1.528557) (xy -1.106069 -1.762002) (xy -0.940427 -1.927647)
+      (xy -0.706987 -1.990613) (xy -0.67104 -1.990613) (xy 0.443605 -1.99063) (xy 0.516459 -1.99063)
+      (xy 0.749314 -1.927664) (xy 0.913861 -1.762019) (xy 0.976235 -1.528574) (xy 0.976235 0.603881)
+      (xy 0.806349 0.681712) (xy 0.669696 0.825573) (xy 0.458679 0.650715) (xy 0.226671 0.601136)
+      (xy 0.009341 0.645165) (xy -0.157643 0.751131) (xy -0.232279 0.560718) (xy -0.328811 0.414784)
+      (xy -0.328811 -0.799479) (xy -0.376619 -0.915034) (xy -0.492395 -0.962613) (xy -0.608187 -0.915022)
+      (xy -0.655979 -0.799479) (xy -0.655979 0.171115) (xy -0.821347 0.121456) (xy -0.993195 0.104597)
+      (xy -1.169077 0.122827) (xy -1.403755 0.197557) (xy -1.607149 0.338452) (xy -1.761575 0.525946)
+      (xy -1.859666 0.748147) (xy -1.894059 0.993161) (xy -1.862279 1.23035) (xy -1.772433 1.443504)
+      (xy -1.633016 1.624103) (xy -0.000235 3.2) (xy -0.262683 3.189377) (xy -0.519287 3.158086)
+      (xy -0.769223 3.106953) (xy -1.011668 3.036799) (xy -1.245799 2.94845) (xy -1.47079 2.842728)
+      (xy -1.685821 2.720458) (xy -1.890065 2.582462) (xy -2.082702 2.429565) (xy -2.262905 2.262591)
+      (xy -2.429853 2.082362) (xy -2.582722 1.889703) (xy -2.720688 1.685437) (xy -2.842928 1.470388)
+      (xy -2.948618 1.245379) (xy -3.036935 1.011235) (xy -3.107055 0.768778) (xy -3.158155 0.518833)
+      (xy -3.189411 0.262223) (xy -3.2 -0.000228) (xy -3.189378 -0.262654) (xy -3.158094 -0.519237)
+      (xy -3.10697 -0.769154) (xy -3.03683 -1.011581) (xy -2.948497 -1.245696) (xy -2.842794 -1.470674)
+      (xy -2.720546 -1.685693) (xy -2.582575 -1.889929) (xy -2.429704 -2.082558) (xy -2.262757 -2.262758)
+      (xy -2.082558 -2.429705) (xy -1.889929 -2.582576) (xy -1.685694 -2.720548) (xy -1.470675 -2.842796)
+      (xy -1.245698 -2.948498) (xy -1.011584 -3.036831) (xy -0.769158 -3.106971) (xy -0.519242 -3.158095)
+      (xy -0.26266 -3.189379) (xy -0.000235 -3.2) (xy 0.262217 -3.189411) (xy 0.518827 -3.158154)
+      (xy 0.768773 -3.107054) (xy 1.011229 -3.036934) (xy 1.245374 -2.948617) (xy 1.470383 -2.842927)
+      (xy 1.685432 -2.720688) (xy 1.889698 -2.582722) (xy 2.082358 -2.429853) (xy 2.262587 -2.262905)
+      (xy 2.429562 -2.082701) (xy 2.582459 -1.890064) (xy 2.720454 -1.685819) (xy 2.842725 -1.470789)
+      (xy 2.948447 -1.245796) (xy 3.036797 -1.011666) (xy 3.106951 -0.76922) (xy 3.158085 -0.519283)
+      (xy 3.189376 -0.262678) (xy 3.2 -0.000228) (xy 3.189409 0.262247) (xy 3.158147 0.518879)
+      (xy 3.107037 0.768844) (xy 3.036904 1.011319) (xy 2.94857 1.24548) (xy 2.842861 1.470503)
+      (xy 2.720599 1.685564) (xy 2.582609 1.889839) (xy 2.429714 2.082505) (xy 2.262739 2.262737)
+      (xy 2.082506 2.429713) (xy 1.88984 2.582608) (xy 1.685564 2.720598) (xy 1.470502 2.84286)
+      (xy 1.245479 2.948569) (xy 1.011317 3.036903) (xy 0.768841 3.107036) (xy 0.518875 3.158146)
+      (xy 0.262242 3.189409) (xy -0.000235 3.2)) (layer B.SilkS) (width 0))
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC47430)
+    (at 106 69.0125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB05D)
+    (attr smd)
+    (fp_text reference D8 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Shalnoff:JP_0805 (layer B.Cu) (tedit 59E9A18E) (tstamp 5DC8F11F)
+    (at 102 72.2 270)
+    (descr "SMD jumper")
+    (tags "SMD jumper 0805")
+    (path /5DF65FF2)
+    (attr smd)
+    (fp_text reference JP1 (at 0 1.65 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value SolderJumper_2_Bridged (at 0 -1.75 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start 1.55 -0.9) (end -1.55 -0.9) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.55 -0.9) (end 1.55 0.9) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.55 0.9) (end -1.55 -0.9) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.55 0.9) (end 1.55 0.9) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
+    (fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
+    (fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
+    )
+    (pad 1 connect rect (at 0 0 270) (size 1.524 0.2) (layers B.Cu B.Mask)
+      (net 26 "Net-(D13-Pad2)"))
+    (pad 2 smd rect (at 0.95 0 270) (size 0.7 1.3) (layers B.Cu B.Paste B.Mask)
+      (net 25 "Net-(JP1-Pad2)"))
+    (pad 1 smd rect (at -0.95 0 270) (size 0.7 1.3) (layers B.Cu B.Paste B.Mask)
+      (net 26 "Net-(D13-Pad2)"))
+    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Silicon-Standard:SOT23-3 (layer B.Cu) (tedit 200000) (tstamp 5DD012A4)
+    (at 108 83.9 270)
+    (descr SOT23-3)
+    (tags SOT23-3)
+    (path /5DD0A422)
+    (attr smd)
+    (fp_text reference Q2 (at -1.9558 0 180) (layer B.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)) (justify mirror))
+    )
+    (fp_text value MOSFET-NCH-AO3404A (at 2.032 0 180) (layer B.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)) (justify mirror))
+    )
+    (fp_line (start 1.4224 0.6604) (end 1.4224 -0.6604) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start 1.4224 -0.6604) (end -1.4224 -0.6604) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start -1.4224 -0.6604) (end -1.4224 0.6604) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start -1.4224 0.6604) (end 1.4224 0.6604) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start -0.79756 0.6985) (end -1.39954 0.6985) (layer B.SilkS) (width 0.2032))
+    (fp_line (start -1.39954 0.6985) (end -1.39954 -0.09906) (layer B.SilkS) (width 0.2032))
+    (fp_line (start 0.79756 0.6985) (end 1.39954 0.6985) (layer B.SilkS) (width 0.2032))
+    (fp_line (start 1.39954 0.6985) (end 1.39954 -0.09906) (layer B.SilkS) (width 0.2032))
+    (pad 1 smd rect (at -0.94996 -0.99822 270) (size 0.79756 0.89916) (layers B.Cu B.Paste B.Mask)
+      (net 29 /Gate) (solder_mask_margin 0.1016))
+    (pad 2 smd rect (at 0.94996 -0.99822 270) (size 0.79756 0.89916) (layers B.Cu B.Paste B.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+    (pad 3 smd rect (at 0 1.09982 270) (size 0.79756 0.89916) (layers B.Cu B.Paste B.Mask)
+      (net 28 /Drain) (solder_mask_margin 0.1016))
+  )
+
+  (module Shalnoff:CONTACT_2_10mm (layer B.Cu) (tedit 5DC7FC6C) (tstamp 5DC7C5E6)
+    (at 106 23.9)
+    (path /5DCEE429)
+    (fp_text reference LiPo1 (at 0 -2.5) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value Battery_Cell (at 0 2.3) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (pad 2 smd rect (at 4.75 0) (size 1.5 3) (layers B.Cu B.Paste B.Mask)
+      (net 2 GND))
+    (pad 1 smd rect (at -4.75 0) (size 1.5 3) (layers B.Cu B.Paste B.Mask)
+      (net 1 +3V3))
+  )
+
+  (module Switches:TACTILE_SWITCH_SMD_5.2MM (layer F.Cu) (tedit 200000) (tstamp 5DD3FE66)
+    (at 108.95 18.344 90)
+    (descr "MOMENTARY SWITCH (PUSHBUTTON) - SPST - SMD, 5.2MM SQUARE")
+    (tags "MOMENTARY SWITCH (PUSHBUTTON) - SPST - SMD, 5.2MM SQUARE")
+    (path /5DC11587)
+    (attr smd)
+    (fp_text reference S3 (at 0 -3.175 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_text value MOMENTARY-SWITCH-SPST-2-SMD-5.2MM (at 0 3.175 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_circle (center 0 0) (end 0 -1.27) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 1.905 0.2286) (end 1.905 1.11252) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.905 -0.4445) (end 2.159 0.00762) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.905 -1.27) (end 1.905 -0.4445) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.53924 2.54) (end -1.53924 2.54) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 2.54 1.53924) (end 1.53924 2.54) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start 2.54 -1.23952) (end 2.54 1.23952) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 1.53924 -2.54) (end 2.54 -1.53924) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start -1.53924 -2.54) (end 1.53924 -2.54) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -2.54 -1.53924) (end -1.53924 -2.54) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start -2.54 1.23952) (end -2.54 -1.27) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -1.53924 2.54) (end -2.54 1.53924) (layer Dwgs.User) (width 0.2032))
+    (pad 4 smd rect (at 2.794 1.905 180) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 18 "Net-(J2-Pad9)") (solder_mask_margin 0.1016))
+    (pad 3 smd rect (at -2.794 1.905 180) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 18 "Net-(J2-Pad9)") (solder_mask_margin 0.1016))
+    (pad 2 smd rect (at 2.794 -1.905 180) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+    (pad 1 smd rect (at -2.794 -1.905 180) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+  )
+
+  (module Shalnoff:ce_logo_2mm (layer F.Cu) (tedit 5DC7F32E) (tstamp 5DC945DF)
+    (at 102.25 38.4 90)
+    (descr "Imported from ce_logo.svg")
+    (tags svg2mod)
+    (attr smd)
+    (fp_text reference "copyleft electronics logo" (at 0 -4.114755 90) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_text value G*** (at 0 4.114755 90) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_circle (center -0.45 0) (end -0.43 0) (layer F.SilkS) (width 0.15))
+    (fp_poly (pts (xy -0.218821 -0.223565) (xy -0.239195 -0.174338) (xy -0.218821 -0.125122) (xy -0.169648 -0.104695)
+      (xy -0.120475 -0.125122) (xy -0.062506 -0.163816) (xy 0.003104 -0.176714) (xy 0.068714 -0.163816)
+      (xy 0.126683 -0.125122) (xy 0.165353 -0.067179) (xy 0.178203 -0.001625) (xy 0.165293 0.06393)
+      (xy 0.126683 0.121874) (xy 0.068728 0.16058) (xy 0.003147 0.173504) (xy -0.062434 0.160633)
+      (xy -0.120389 0.121954) (xy -0.169989 0.100311) (xy -0.220229 0.120642) (xy -0.240603 0.170829)
+      (xy -0.218843 0.220482) (xy -0.162242 0.265291) (xy -0.098832 0.295148) (xy -0.031336 0.310057)
+      (xy 0.037522 0.310026) (xy 0.105018 0.29506) (xy 0.168429 0.265166) (xy 0.225029 0.220349)
+      (xy 0.269857 0.163748) (xy 0.299756 0.100338) (xy 0.31472 0.032843) (xy 0.314738 -0.036015)
+      (xy 0.299801 -0.103511) (xy 0.269901 -0.166921) (xy 0.225029 -0.223521) (xy 0.158242 -0.274347)
+      (xy 0.082793 -0.30483) (xy 0.003013 -0.314988) (xy -0.076788 -0.304833) (xy -0.152243 -0.274352)
+      (xy -0.219024 -0.223521) (xy -0.219024 -0.223535) (xy -0.218821 -0.223565)) (layer F.SilkS) (width 0))
+    (fp_poly (pts (xy -0.802992 -0.271406) (xy -0.841699 -0.226109) (xy -0.872325 -0.176579) (xy -0.893059 -0.129407)
+      (xy -0.906992 -0.080291) (xy -0.914459 -0.02943) (xy -0.915525 0.019943) (xy -0.909299 0.076015)
+      (xy -0.894512 0.130787) (xy -0.894416 0.13088) (xy -1.066661 0.302966) (xy -0.905787 0.464013)
+      (xy -0.760699 0.318914) (xy -0.616005 0.463613) (xy -0.761019 0.608779) (xy -0.600133 0.769664)
+      (xy -0.455045 0.624565) (xy -0.318672 0.760784) (xy -0.46392 0.90587) (xy -0.303045 1.066755)
+      (xy -0.132432 0.896295) (xy -0.074848 0.912534) (xy -0.01576 0.919773) (xy 0.033453 0.918826)
+      (xy 0.082267 0.911879) (xy 0.134547 0.897097) (xy 0.184667 0.874866) (xy 0.232187 0.844901)
+      (xy 0.275867 0.807367) (xy 0.536197 0.547024) (xy 0.375323 0.386151) (xy 0.114992 0.646481)
+      (xy 0.067952 0.679804) (xy -0.003088 0.69446) (xy -0.053541 0.68422) (xy -0.111035 0.646438)
+      (xy -0.642341 0.115472) (xy -0.679568 0.059024) (xy -0.690341 -0.000773) (xy -0.678821 -0.056187)
+      (xy -0.642448 -0.110587) (xy -0.111077 -0.641793) (xy -0.057741 -0.67779) (xy 0.002011 -0.689772)
+      (xy 0.061643 -0.677794) (xy 0.114907 -0.641793) (xy 0.645947 -0.110601) (xy 0.681975 -0.05726)
+      (xy 0.693936 0.002441) (xy 0.681881 0.06214) (xy 0.645861 0.115475) (xy 0.375248 0.386085)
+      (xy 0.536123 0.546971) (xy 0.806747 0.276362) (xy 0.854941 0.217548) (xy 0.889793 0.152239)
+      (xy 0.911299 0.082522) (xy 0.919455 0.010486) (xy 0.914259 -0.06178) (xy 0.895707 -0.132188)
+      (xy 1.066661 -0.30314) (xy 0.905787 -0.464013) (xy 0.760101 -0.318169) (xy 0.623803 -0.454452)
+      (xy 0.769573 -0.600231) (xy 0.608688 -0.761104) (xy 0.462843 -0.615419) (xy 0.318139 -0.760277)
+      (xy 0.46392 -0.90587) (xy 0.302864 -1.066755) (xy 0.129861 -0.893909) (xy 0.066675 -0.910033)
+      (xy 0.001968 -0.915413) (xy -0.072205 -0.908372) (xy -0.144097 -0.887241) (xy -0.211448 -0.852012)
+      (xy -0.271995 -0.802676) (xy -0.803376 -0.27147) (xy -0.803365 -0.27147) (xy -0.802992 -0.271406)) (layer F.SilkS) (width 0))
+  )
+
+  (module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B4B45C9) (tstamp 5DC90B4C)
+    (at 109.7 12.3)
+    (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DFB9F90)
+    (attr smd)
+    (fp_text reference D13 (at 0 1.65) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value LED (at 0 -1.65) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.86 -0.96) (end 1 -0.96) (layer B.SilkS) (width 0.12))
+    (fp_line (start -1.86 0.96) (end -1.86 -0.96) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 0.96) (end -1.86 0.96) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.3) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.7 0.6) (end -1 0.3) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end -0.7 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 26 "Net-(D13-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 27 "Net-(D13-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC47443)
+    (at 106 35.4125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB3AD)
+    (attr smd)
+    (fp_text reference D9 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC7AD2D)
+    (at 106 26.9125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DE5D3FE)
+    (attr smd)
+    (fp_text reference D12 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD (layer B.Cu) (tedit 59FED667) (tstamp 5DC6B345)
+    (at 105.9 93.5)
+    (descr "surface-mounted straight pin header, 2x05, 2.00mm pitch, double rows")
+    (tags "Surface mounted pin header SMD 2x05 2.00mm double row")
+    (path /5E21FA62)
+    (attr smd)
+    (fp_text reference J2 (at 0 6.06) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value CONN_05X2NO_SILK (at 0 -6.06) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 -90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start 4.9 5.5) (end -4.9 5.5) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 4.9 -5.5) (end 4.9 5.5) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -4.9 -5.5) (end 4.9 -5.5) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -4.9 5.5) (end -4.9 -5.5) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 2.06 -2.76) (end 2.06 -3.24) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 -2.76) (end -2.06 -3.24) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.06 -0.76) (end 2.06 -1.24) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 -0.76) (end -2.06 -1.24) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.06 1.24) (end 2.06 0.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 1.24) (end -2.06 0.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.06 3.24) (end 2.06 2.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 3.24) (end -2.06 2.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.06 -4.76) (end 2.06 -5.06) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 -4.76) (end -2.06 -5.06) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.06 5.06) (end 2.06 4.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 5.06) (end -2.06 4.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start -3.315 4.76) (end -2.06 4.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 -5.06) (end 2.06 -5.06) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 5.06) (end 2.06 5.06) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.875 -4.25) (end 2 -4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 -3.75) (end 2.875 -4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 -3.75) (end 2.875 -3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 -4.25) (end -2 -4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 -3.75) (end -2.875 -4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 -3.75) (end -2.875 -3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 -2.25) (end 2 -2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 -1.75) (end 2.875 -2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 -1.75) (end 2.875 -1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 -2.25) (end -2 -2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 -1.75) (end -2.875 -2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 -1.75) (end -2.875 -1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 -0.25) (end 2 -0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 0.25) (end 2.875 -0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 0.25) (end 2.875 0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 -0.25) (end -2 -0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 0.25) (end -2.875 -0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 0.25) (end -2.875 0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 1.75) (end 2 1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 2.25) (end 2.875 1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 2.25) (end 2.875 2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 1.75) (end -2 1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 2.25) (end -2.875 1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 2.25) (end -2.875 2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 3.75) (end 2 3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 4.25) (end 2.875 3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 4.25) (end 2.875 4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 3.75) (end -2 3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 4.25) (end -2.875 3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 4.25) (end -2.875 4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 5) (end 2 -5) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 4.25) (end -1.25 5) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 -5) (end -2 4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.25 5) (end 2 5) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 -5) (end -2 -5) (layer B.Fab) (width 0.1))
+    (pad 10 smd rect (at 2.085 -4) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 19 "Net-(J2-Pad10)"))
+    (pad 9 smd rect (at -2.085 -4) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 18 "Net-(J2-Pad9)"))
+    (pad 8 smd rect (at 2.085 -2) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 17 "Net-(J2-Pad8)"))
+    (pad 7 smd rect (at -2.085 -2) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 16 "Net-(J2-Pad7)"))
+    (pad 6 smd rect (at 2.085 0) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 28 /Drain))
+    (pad 5 smd rect (at -2.085 0) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 1 +3V3))
+    (pad 4 smd rect (at 2.085 2) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 15 "Net-(J2-Pad4)"))
+    (pad 3 smd rect (at -2.085 2) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 14 "Net-(J2-Pad3)"))
+    (pad 2 smd rect (at 2.085 4) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 13 "Net-(J2-Pad2)"))
+    (pad 1 smd rect (at -2.085 4) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 12 "Net-(J2-Pad1)"))
+    (model ${KISYS3DMOD}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_2x05_P2.00mm_Vertical_SMD.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DC892D1)
+    (at 109.55 80.95 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5E410B16)
+    (attr smd)
+    (fp_text reference R10 (at 0 -1.65 270) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 10K (at 0 1.65 270) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 270) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 24 /VCC))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 21 "Net-(R10-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitor_Tantalum_SMD:CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder (layer F.Cu) (tedit 5B301BBE) (tstamp 5DC6D22B)
+    (at 109.95 95.75 90)
+    (descr "Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
+    (tags "capacitor tantalum")
+    (path /5DCC90B4)
+    (attr smd)
+    (fp_text reference C1 (at 0 -1.75 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 10uF (at 0 1.75 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 0.8 0.8) (thickness 0.12)))
+    )
+    (fp_line (start 2.48 1.05) (end -2.48 1.05) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 2.48 -1.05) (end 2.48 1.05) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -2.48 1.05) (end -2.48 -1.05) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -2.485 0.935) (end 1.6 0.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.485 -0.935) (end -2.485 0.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer F.Fab) (width 0.1))
+    (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.4375 0 90) (size 1.575 1.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.185185)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -1.4375 0 90) (size 1.575 1.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.185185)
+      (net 22 "Net-(C1-Pad1)"))
+    (model ${KISYS3DMOD}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-12_Kemet-S.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitor_SMD:C_1812_4532Metric (layer B.Cu) (tedit 5B301BBE) (tstamp 5DC7C8EE)
+    (at 106.2 22 180)
+    (descr "Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator")
+    (tags capacitor)
+    (path /5E3EE254)
+    (attr smd)
+    (fp_text reference BZ1 (at 0 2.65) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value PS1240P02BT (at 0 -2.65) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start 2.95 -1.95) (end -2.95 -1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 2.95 1.95) (end 2.95 -1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -2.95 1.95) (end 2.95 1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -2.95 -1.95) (end -2.95 1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.386252 -1.71) (end 1.386252 -1.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -1.386252 1.71) (end 1.386252 1.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.25 -1.6) (end -2.25 -1.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.25 1.6) (end 2.25 -1.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.25 1.6) (end 2.25 1.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.25 -1.6) (end -2.25 1.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.1375 0 180) (size 1.125 3.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.222222)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -2.1375 0 180) (size 1.125 3.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.222222)
+      (net 3 "Net-(BZ1-Pad1)"))
+    (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1812_4532Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitors_SMD:C_0805 (layer F.Cu) (tedit 58AA8463) (tstamp 5DC69547)
+    (at 110 86.5 180)
+    (descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
+    (tags "capacitor 0805")
+    (path /5E19AB03)
+    (attr smd)
+    (fp_text reference C3 (at 0 -1.5) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 4.7uF (at 0 1.75) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 -1.5) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (pad 1 smd rect (at -1 0 180) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 1 +3V3))
+    (pad 2 smd rect (at 1 0 180) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND))
+    (model Capacitors_SMD.3dshapes/C_0805.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitors_SMD:C_0805 (layer B.Cu) (tedit 58AA8463) (tstamp 5DC6D7C4)
+    (at 107.8 87.65 180)
+    (descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
+    (tags "capacitor 0805")
+    (path /5DD31F10)
+    (attr smd)
+    (fp_text reference C5 (at 0 1.5 180) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value >2.2UF (at 0 -1.75 180) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 1.5 180) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start 0.5 0.85) (end -0.5 0.85) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.5 -0.85) (end 0.5 -0.85) (layer B.SilkS) (width 0.12))
+    (fp_line (start -1.75 0.88) (end 1.75 0.88) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.75 0.88) (end -1.75 -0.87) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.75 -0.87) (end 1.75 0.88) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.75 -0.87) (end -1.75 -0.87) (layer B.CrtYd) (width 0.05))
+    (pad 1 smd rect (at -1 0 180) (size 1 1.25) (layers B.Cu B.Paste B.Mask)
+      (net 24 /VCC))
+    (pad 2 smd rect (at 1 0 180) (size 1 1.25) (layers B.Cu B.Paste B.Mask)
+      (net 2 GND))
+    (model Capacitors_SMD.3dshapes/C_0805.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitors_SMD:C_0805 (layer F.Cu) (tedit 58AA8463) (tstamp 5DC6D4E5)
+    (at 109.8 92.65)
+    (descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
+    (tags "capacitor 0805")
+    (path /5DE5BCDF)
+    (attr smd)
+    (fp_text reference C4 (at 0 -1.5 180) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value [470pF] (at 0 1.75 180) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 -1.5 180) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (pad 1 smd rect (at -1 0) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 11 "Net-(C4-Pad1)"))
+    (pad 2 smd rect (at 1 0) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND))
+    (model Capacitors_SMD.3dshapes/C_0805.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitors_SMD:C_0805 (layer F.Cu) (tedit 58AA8463) (tstamp 5DC68A65)
+    (at 102.1 93.7)
+    (descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
+    (tags "capacitor 0805")
+    (path /5DEE36ED)
+    (attr smd)
+    (fp_text reference C2 (at 0 -1.5) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 4.7uF (at 0 1.75) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 -1.5) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (pad 1 smd rect (at -1 0) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 22 "Net-(C1-Pad1)"))
+    (pad 2 smd rect (at 1 0) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND))
+    (model Capacitors_SMD.3dshapes/C_0805.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC7525B)
+    (at 102.2 84.6)
+    (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DDB0404)
+    (attr smd)
+    (fp_text reference D1 (at 0 -1.65) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 1.65) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.86 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 23 "Net-(D1-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 4 "Net-(D1-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC74546)
+    (at 102.1 76.8 180)
+    (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DFD1F99)
+    (attr smd)
+    (fp_text reference D2 (at 0 -1.65) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 1.65) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.86 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 5 "Net-(D2-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 2 GND))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC6593E)
+    (at 109.7 12.3)
+    (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5E0121D1)
+    (attr smd)
+    (fp_text reference D3 (at 0 -1.65) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 1.65) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.86 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 26 "Net-(D13-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 27 "Net-(D13-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC473E4)
+    (at 106 77.4125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBA50D)
+    (attr smd)
+    (fp_text reference D4 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC473F7)
+    (at 106 43.8 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBA842)
+    (attr smd)
+    (fp_text reference D5 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC6751A)
+    (at 106 94.2 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBAA77)
+    (attr smd)
+    (fp_text reference D6 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC4741D)
+    (at 106 85.8125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBAD6A)
+    (attr smd)
+    (fp_text reference D7 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC47456)
+    (at 106 60.6125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB570)
+    (attr smd)
+    (fp_text reference D10 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC47469)
+    (at 106 52.2125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBE1B7)
+    (attr smd)
+    (fp_text reference D11 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Shalnoff:USB_A_SMT_MALE_PCB (layer F.Cu) (tedit 5440EABD) (tstamp 5DC92FCD)
+    (at 106 109.925 90)
+    (path /5DBC8501)
+    (attr virtual)
+    (fp_text reference J1 (at 4.9 -5.2 270) (layer F.SilkS) hide
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (fp_text value USB_A_SMT_MALE_PCB (at 7.8 -5.2 90) (layer F.SilkS) hide
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (fp_line (start 0 -6.1) (end 0 6.1) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 11.5 6.1) (end 0 6.1) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 11.5 -6.1) (end 11.5 6.1) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 0 -6.1) (end 11.5 -6.1) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 0.6 -6.1) (end 0.6 6.1) (layer Dwgs.User) (width 0.01))
+    (fp_line (start 9 -6.1) (end 9 6.1) (layer Dwgs.User) (width 0.01))
+    (fp_text user "Front clearance" (at 0.4 0) (layer Cmts.User) hide
+      (effects (font (size 0.3 0.3) (thickness 0.05)))
+    )
+    (fp_text user "Insertion depth" (at 8.7 0) (layer Cmts.User) hide
+      (effects (font (size 0.3 0.3) (thickness 0.05)))
+    )
+    (fp_text user + (at 4.925 5.1 90) (layer F.SilkS)
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (fp_text user - (at 4.925 -5.2 90) (layer F.SilkS)
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (fp_text user DP (at 1.9 -2.4 90) (layer F.SilkS)
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (fp_text user DN (at 1.9 2.4 90) (layer F.SilkS)
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (pad 3 smd rect (at 5.225 -1.27 90) (size 7.75 1.1) (layers F.Cu F.Mask)
+      (net 8 "Net-(J1-Pad3)"))
+    (pad 2 smd rect (at 5.225 1.27 90) (size 7.75 1.1) (layers F.Cu F.Mask)
+      (net 7 "Net-(J1-Pad2)"))
+    (pad 1 smd rect (at 4.85 3.81 90) (size 8.5 1.5) (layers F.Cu F.Mask)
+      (net 22 "Net-(C1-Pad1)"))
+    (pad 4 smd rect (at 4.85 -3.81 90) (size 8.5 1.5) (layers F.Cu F.Mask)
+      (net 2 GND))
+  )
+
+  (module digikey-footprints:SOT-23-3 (layer B.Cu) (tedit 5D28A5E3) (tstamp 5DC7CD53)
+    (at 108.8 17.55 90)
+    (path /5E33C7DE)
+    (attr smd)
+    (fp_text reference Q1 (at 0.025 3.375 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 2N7002 (at 0.025 -3.25 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1))
+    (fp_text user %R (at -0.125 -0.15 90) (layer B.Fab) hide
+      (effects (font (size 0.25 0.25) (thickness 0.05)) (justify mirror))
+    )
+    (fp_line (start 0.825 1.65) (end 0.825 1.35) (layer B.SilkS) (width 0.1))
+    (fp_line (start 0.45 1.65) (end 0.825 1.65) (layer B.SilkS) (width 0.1))
+    (fp_line (start 0.825 -1.65) (end 0.375 -1.65) (layer B.SilkS) (width 0.1))
+    (fp_line (start 0.825 -1.35) (end 0.825 -1.65) (layer B.SilkS) (width 0.1))
+    (fp_line (start 0.825 -1.425) (end 0.825 -1.3) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.825 -1.65) (end -0.825 -1.3) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.35 -1.65) (end -0.825 -1.65) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.425 1.525) (end -0.7 1.325) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.425 1.525) (end 0.7 1.525) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.7 1.325) (end -0.7 -1.525) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.825 1.325) (end -1.6 1.325) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.825 1.375) (end -0.825 1.325) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.45 1.65) (end -0.825 1.375) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.175 1.65) (end -0.45 1.65) (layer B.SilkS) (width 0.1))
+    (fp_line (start 1.825 1.95) (end 1.825 -1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.825 -1.95) (end -1.825 -1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.825 1.95) (end -1.825 -1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.825 1.95) (end 1.825 1.95) (layer B.CrtYd) (width 0.05))
+    (pad 1 smd rect (at -1.05 0.95 90) (size 1.3 0.6) (layers B.Cu B.Paste B.Mask)
+      (net 26 "Net-(D13-Pad2)") (solder_mask_margin 0.07))
+    (pad 2 smd rect (at -1.05 -0.95 90) (size 1.3 0.6) (layers B.Cu B.Paste B.Mask)
+      (net 3 "Net-(BZ1-Pad1)") (solder_mask_margin 0.07))
+    (pad 3 smd rect (at 1.05 0 90) (size 1.3 0.6) (layers B.Cu B.Paste B.Mask)
+      (net 1 +3V3) (solder_mask_margin 0.07))
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DC6C999)
+    (at 102.85 86.65 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DE819BA)
+    (attr smd)
+    (fp_text reference R4 (at 0 1.65 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 470 (at 0 -1.65 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 23 "Net-(D1-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 22 "Net-(C1-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DC744EF)
+    (at 101.25 82.15 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DFD1897)
+    (attr smd)
+    (fp_text reference R5 (at 0 -1.65 270) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 470 (at 0 1.65 270) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 270) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 5 "Net-(D2-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 4 "Net-(D1-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DC697B7)
+    (at 101.925 96.1 180)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DE395AF)
+    (attr smd)
+    (fp_text reference R6 (at 0 -1.65 180) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value "5K (200mA)" (at 0 1.65 180) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 180) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 9 "Net-(R6-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DD023EE)
+    (at 101.75 67.7 270)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC63B88)
+    (attr smd)
+    (fp_text reference R7 (at 0 -1.65 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value RESISTOR0805 (at 0 1.65 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 20 "Net-(R7-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 1 +3V3))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DD0243F)
+    (at 101.7 71.65 270)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC67D82)
+    (attr smd)
+    (fp_text reference R8 (at 0 -1.65 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value RESISTOR0805 (at 0 1.65 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 20 "Net-(R7-Pad2)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DC669DA)
+    (at 110.8 96.6 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC80BBF)
+    (attr smd)
+    (fp_text reference R1 (at 0 1.65 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 68 (at 0 -1.65 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 17 "Net-(J2-Pad8)"))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 8 "Net-(J1-Pad3)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DC6A057)
+    (at 101.1 96.5 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DCC28CC)
+    (attr smd)
+    (fp_text reference R2 (at 0 1.65 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value "2K2 (1K5)" (at 0 -1.65 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 7 "Net-(J1-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 22 "Net-(C1-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DC7CCE1)
+    (at 109.7 14.4)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC8FBDE)
+    (attr smd)
+    (fp_text reference R9 (at 0 1.65 180) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 220R (at 0 -1.65 180) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 180) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 27 "Net-(D13-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DD04E02)
+    (at 109.1 81.3)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC9745B)
+    (attr smd)
+    (fp_text reference R11 (at 0 1.65) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 10K (at 0 -1.65) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 29 /Gate))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DC6A7E9)
+    (at 110.05 84.4)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC54CBB)
+    (attr smd)
+    (fp_text reference R12 (at 0 -1.65 180) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 1R (at 0 1.65 180) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 180) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 1 +3V3))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 6 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DC69D39)
+    (at 101.15 92.65 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC811B8)
+    (attr smd)
+    (fp_text reference R3 (at 0 1.65 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 68 (at 0 -1.65 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 16 "Net-(J2-Pad7)"))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 7 "Net-(J1-Pad2)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Switches:SWITCH_SPST_SMD_A (layer B.Cu) (tedit 200000) (tstamp 5DC7B0C3)
+    (at 101.8 15.55 270)
+    (descr "SPDT SLIDE SWITCH - SMD")
+    (tags "SPDT SLIDE SWITCH - SMD")
+    (path /5DFADD4B)
+    (attr smd)
+    (fp_text reference S1 (at 1.905 2.032 270) (layer B.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)) (justify mirror))
+    )
+    (fp_text value SWITCH-SPDT-PTH-11.6X4.0MM (at 0 -3.175 270) (layer B.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)) (justify mirror))
+    )
+    (fp_line (start 1.6256 -1.42494) (end -0.127 -1.42494) (layer B.SilkS) (width 0.2032))
+    (fp_line (start 2.69748 1.42494) (end -2.69748 1.42494) (layer B.SilkS) (width 0.2032))
+    (fp_line (start 3.47472 0.42672) (end 3.47472 -0.42672) (layer B.SilkS) (width 0.2032))
+    (fp_line (start -3.47472 0.42672) (end -3.47472 -0.42672) (layer B.SilkS) (width 0.2032))
+    (fp_line (start -1.39954 2.79908) (end -1.39954 1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -0.09906 2.79908) (end -1.39954 2.79908) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -0.09906 1.29794) (end -0.09906 2.79908) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -1.39954 1.29794) (end -3.34772 1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -0.09906 1.29794) (end -1.39954 1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 3.34772 1.29794) (end -0.09906 1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 3.34772 -1.29794) (end 3.34772 1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -3.34772 -1.29794) (end 3.34772 -1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -3.34772 1.29794) (end -3.34772 -1.29794) (layer Dwgs.User) (width 0.127))
+    (pad "" np_thru_hole circle (at 1.4986 0 270) (size 0.89916 0.89916) (drill 0.89916) (layers *.Cu *.Mask)
+      (solder_mask_margin 0.1016))
+    (pad "" np_thru_hole circle (at -1.4986 0 270) (size 0.89916 0.89916) (drill 0.89916) (layers *.Cu *.Mask)
+      (solder_mask_margin 0.1016))
+    (pad GND4 smd rect (at 3.64998 -1.09982 270) (size 0.99822 0.79756) (layers B.Cu B.Paste B.Mask)
+      (solder_mask_margin 0.1016))
+    (pad GND3 smd rect (at 3.64998 0.99822 270) (size 0.99822 0.59944) (layers B.Cu B.Paste B.Mask)
+      (solder_mask_margin 0.1016))
+    (pad GND2 smd rect (at -3.64998 -1.09982 270) (size 0.99822 0.79756) (layers B.Cu B.Paste B.Mask)
+      (solder_mask_margin 0.1016))
+    (pad GND1 smd rect (at -3.64998 0.99822 270) (size 0.99822 0.59944) (layers B.Cu B.Paste B.Mask)
+      (solder_mask_margin 0.1016))
+    (pad 3 smd rect (at 2.2479 -1.74752 90) (size 0.6985 1.4986) (layers B.Cu B.Paste B.Mask)
+      (net 1 +3V3) (solder_mask_margin 0.1016))
+    (pad 2 smd rect (at -0.7493 -1.74752 90) (size 0.6985 1.4986) (layers B.Cu B.Paste B.Mask)
+      (net 10 "Net-(S1-Pad2)") (solder_mask_margin 0.1016))
+    (pad 1 smd rect (at -2.2479 -1.74752 90) (size 0.6985 1.4986) (layers B.Cu B.Paste B.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+  )
+
+  (module Switches:TACTILE_SWITCH_SMD_5.2MM (layer F.Cu) (tedit 200000) (tstamp 5DC94CC0)
+    (at 102.945 18.344 270)
+    (descr "MOMENTARY SWITCH (PUSHBUTTON) - SPST - SMD, 5.2MM SQUARE")
+    (tags "MOMENTARY SWITCH (PUSHBUTTON) - SPST - SMD, 5.2MM SQUARE")
+    (path /5DC102D0)
+    (attr smd)
+    (fp_text reference S2 (at 0 -3.175 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_text value MOMENTARY-SWITCH-SPST-2-SMD-5.2MM (at 0 3.175 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_circle (center 0 0) (end 0 -1.27) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 1.905 0.2286) (end 1.905 1.11252) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.905 -0.4445) (end 2.159 0.00762) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.905 -1.27) (end 1.905 -0.4445) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.53924 2.54) (end -1.53924 2.54) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 2.54 1.53924) (end 1.53924 2.54) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start 2.54 -1.23952) (end 2.54 1.23952) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 1.53924 -2.54) (end 2.54 -1.53924) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start -1.53924 -2.54) (end 1.53924 -2.54) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -2.54 -1.53924) (end -1.53924 -2.54) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start -2.54 1.23952) (end -2.54 -1.27) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -1.53924 2.54) (end -2.54 1.53924) (layer Dwgs.User) (width 0.2032))
+    (pad 4 smd rect (at 2.794 1.905) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 19 "Net-(J2-Pad10)") (solder_mask_margin 0.1016))
+    (pad 3 smd rect (at -2.794 1.905) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 19 "Net-(J2-Pad10)") (solder_mask_margin 0.1016))
+    (pad 2 smd rect (at 2.794 -1.905) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+    (pad 1 smd rect (at -2.794 -1.905) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+  )
+
+  (module Silicon-Standard:SOT23-5 (layer F.Cu) (tedit 200000) (tstamp 5DC69667)
+    (at 101.7 88.6 180)
+    (descr "SMALL OUTLINE TRANSISTOR")
+    (tags "SMALL OUTLINE TRANSISTOR")
+    (path /5DC01989)
+    (attr smd)
+    (fp_text reference U1 (at -2.032 0 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_text value MCP73831 (at 2.159 0 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_line (start -1.39954 -0.79756) (end -1.39954 0.79756) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start 1.39954 -0.79756) (end 1.39954 0.79756) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start -0.2667 -0.81026) (end 0.2667 -0.81026) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -1.39954 -0.79756) (end 1.39954 -0.79756) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start -1.4224 0.42926) (end -1.4224 -0.42926) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 1.39954 0.79756) (end -1.39954 0.79756) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start 1.4224 -0.42926) (end 1.4224 0.42926) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -1.19888 -0.84836) (end -1.19888 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -1.19888 -1.4986) (end -0.6985 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -0.6985 -0.84836) (end -0.6985 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -1.19888 -0.84836) (end -0.6985 -0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 -0.84836) (end 0.6985 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 -1.4986) (end 1.19888 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 1.19888 -0.84836) (end 1.19888 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 -0.84836) (end 1.19888 -0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 1.4986) (end 0.6985 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 0.84836) (end 1.19888 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 1.19888 1.4986) (end 1.19888 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 1.4986) (end 1.19888 1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -0.24892 1.4986) (end -0.24892 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -0.24892 0.84836) (end 0.24892 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.24892 1.4986) (end 0.24892 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -0.24892 1.4986) (end 0.24892 1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -1.19888 1.4986) (end -1.19888 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -1.19888 0.84836) (end -0.6985 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -0.6985 1.4986) (end -0.6985 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -1.19888 1.4986) (end -0.6985 1.4986) (layer Dwgs.User) (width 0.06604))
+    (pad 5 smd rect (at -0.94996 -1.29794 180) (size 0.54864 1.19888) (layers F.Cu F.Paste F.Mask)
+      (net 9 "Net-(R6-Pad1)") (solder_mask_margin 0.1016))
+    (pad 4 smd rect (at 0.94996 -1.29794 180) (size 0.54864 1.19888) (layers F.Cu F.Paste F.Mask)
+      (net 22 "Net-(C1-Pad1)") (solder_mask_margin 0.1016))
+    (pad 3 smd rect (at 0.94996 1.29794 180) (size 0.54864 1.19888) (layers F.Cu F.Paste F.Mask)
+      (net 1 +3V3) (solder_mask_margin 0.1016))
+    (pad 2 smd rect (at 0 1.29794 180) (size 0.54864 1.19888) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+    (pad 1 smd rect (at -0.94996 1.29794 180) (size 0.54864 1.19888) (layers F.Cu F.Paste F.Mask)
+      (net 4 "Net-(D1-Pad1)") (solder_mask_margin 0.1016))
+  )
+
+  (module Package_TO_SOT_SMD:SOT-23-5 (layer F.Cu) (tedit 5A02FF57) (tstamp 5DC63752)
+    (at 110.05 89.15 270)
+    (descr "5-pin SOT23 package")
+    (tags SOT-23-5)
+    (path /5DC01F70)
+    (attr smd)
+    (fp_text reference U2 (at 0 -2.9 270) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value MIC5205-3.3YM5 (at 0 2.9 270) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer F.Fab) (width 0.1))
+    (fp_line (start 0.9 1.55) (end -0.9 1.55) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer F.Fab) (width 0.1))
+    (fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer F.Fab) (width 0.1))
+    (fp_line (start -1.9 1.8) (end -1.9 -1.8) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.9 1.8) (end -1.9 1.8) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.9 -1.8) (end 1.9 1.8) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.9 -1.8) (end 1.9 -1.8) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.9 1.61) (end 0.9 1.61) (layer F.SilkS) (width 0.12))
+    (fp_text user %R (at 0 0 180) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.075)))
+    )
+    (pad 5 smd rect (at 1.1 -0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
+      (net 24 /VCC))
+    (pad 4 smd rect (at 1.1 0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
+      (net 11 "Net-(C4-Pad1)"))
+    (pad 3 smd rect (at -1.1 0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
+      (net 10 "Net-(S1-Pad2)"))
+    (pad 2 smd rect (at -1.1 0 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND))
+    (pad 1 smd rect (at -1.1 -0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
+      (net 1 +3V3))
+    (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module digikey-footprints:SOIC-8_W5.3mm (layer B.Cu) (tedit 5D28A54C) (tstamp 5DC6FC8C)
+    (at 102.95 79.9 90)
+    (descr http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2586-AVR-8-bit-Microcontroller-ATtiny25-ATtiny45-ATtiny85_Datasheet-Summary.pdf)
+    (path /5DFE55A4)
+    (attr smd)
+    (fp_text reference U3 (at 0 4.25 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value ATTINY85-20SU (at 0 -4.25 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start -1.995 -2.49) (end 1.995 -2.49) (layer B.Fab) (width 0.1))
+    (fp_line (start 1.995 -2.49) (end 1.995 2.49) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 2.25) (end -1.75 2.5) (layer B.Fab) (width 0.1))
+    (fp_line (start 1.99 2.5) (end -1.75 2.5) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 -2.49) (end -2 2.25) (layer B.Fab) (width 0.1))
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.7 0.7) (thickness 0.07)) (justify mirror))
+    )
+    (fp_line (start -2.1 2.32) (end -2.8 2.32) (layer B.SilkS) (width 0.1))
+    (fp_line (start -1.8 2.62) (end -2.1 2.32) (layer B.SilkS) (width 0.1))
+    (fp_line (start 2.1 2.6) (end 2.1 2.4) (layer B.SilkS) (width 0.1))
+    (fp_line (start 1.4 2.6) (end 2.1 2.6) (layer B.SilkS) (width 0.1))
+    (fp_line (start 2.1 -2.6) (end 1.5 -2.6) (layer B.SilkS) (width 0.1))
+    (fp_line (start 2.1 -2.4) (end 2.1 -2.6) (layer B.SilkS) (width 0.1))
+    (fp_line (start -2.1 -2.6) (end -1.4 -2.6) (layer B.SilkS) (width 0.1))
+    (fp_line (start -2.1 -2.4) (end -2.1 -2.6) (layer B.SilkS) (width 0.1))
+    (fp_line (start -3.75 -2.75) (end 3.5 -2.75) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -3.75 2.75) (end -3.75 -2.75) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 3.5 2.75) (end 3.5 -2.75) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -3.75 2.75) (end 3.5 2.75) (layer B.CrtYd) (width 0.05))
+    (pad 8 smd rect (at 2.465 1.905 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 24 /VCC))
+    (pad 7 smd rect (at 2.465 0.635 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 19 "Net-(J2-Pad10)"))
+    (pad 6 smd rect (at 2.465 -0.635 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 25 "Net-(JP1-Pad2)"))
+    (pad 5 smd rect (at 2.465 -1.905 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 29 /Gate))
+    (pad 1 smd rect (at -2.465 1.905 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 21 "Net-(R10-Pad1)"))
+    (pad 4 smd rect (at -2.465 -1.905 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 2 GND))
+    (pad 2 smd rect (at -2.465 0.635 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 20 "Net-(R7-Pad2)"))
+    (pad 3 smd rect (at -2.465 -0.635 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 18 "Net-(J2-Pad9)"))
+  )
+
+  (gr_text https://dailybeer.eu/merch/lightstick (at 109.8 58.6 90) (layer F.SilkS) (tstamp 5DC9210D)
+    (effects (font (size 1 1) (thickness 0.13)) (justify left))
+  )
+  (gr_text "Pocket photo-lightstick     rev 0.1 (1119)" (at 102.15 58.55 90) (layer F.SilkS)
+    (effects (font (size 1 1) (thickness 0.13)) (justify left))
+  )
+  (gr_line (start 102 110) (end 110 110) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530DC))
+  (gr_arc (start 110 108) (end 110 110) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530D0))
+  (gr_arc (start 102 108) (end 100 108) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530CF))
+  (gr_line (start 102 10) (end 110 10) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530CA))
+  (gr_arc (start 102 12) (end 102 10) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530C5))
+  (gr_arc (start 110 12) (end 112 12) (angle -90) (layer Edge.Cuts) (width 0.12))
+  (gr_line (start 112 12) (end 112 108) (layer Edge.Cuts) (width 0.12) (tstamp 5DC53073))
+  (gr_line (start 100 12) (end 100 108) (layer Edge.Cuts) (width 0.12))
+
+  (segment (start 111 84.475) (end 111.075 84.4) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 111 86.5) (end 111 84.475) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 110.95 88.45) (end 111 88.4) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 111 88.546484) (end 111 88.05) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 110.88999 89.1) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 111 88.05) (end 111 88.98999) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 111 88.98999) (end 110.88999 89.1) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 111 88.05) (end 111 86.5) (width 0.5) (layer F.Cu) (net 1))
+  (via (at 103.5 61.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (via (at 111.30001 73.65) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 111.30001 69.70001) (end 103.5 61.9) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 111.30001 73.65) (end 111.30001 69.70001) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 101.75 63.65) (end 101.75 66.675) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 103.5 61.9) (end 101.75 63.65) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 111.30001 84.17499) (end 111.075 84.4) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 111.30001 73.65) (end 111.30001 84.17499) (width 0.5) (layer F.Cu) (net 1))
+  (via (at 105.709234 93.687947) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1) (tstamp 5DD411E6))
+  (segment (start 104.002947 93.687947) (end 103.815 93.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 105.709234 93.687947) (end 104.002947 93.687947) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 101 23.9) (end 101 25.65) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 100.85 26) (end 100.85 59.05) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 100.85 59.25) (end 103.5 61.9) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 100.85 59.05) (end 100.85 59.25) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 101 25.85) (end 100.85 26) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 101 25.65) (end 101 25.85) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 109.43999 90.55) (end 110.88999 89.1) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 106.559998 90.55) (end 109.43999 90.55) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 103.815 93.5) (end 104.5 93.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 101.75 21.4) (end 101 22.15) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 109.05 16.5) (end 104.49655 16.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 101 22.15) (end 101 23.9) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 104.49655 16.5) (end 103.6 17.39655) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 101.75 18.5) (end 101.75 21.4) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 103.6 17.39655) (end 103.6 17.9958) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 103.6 17.9958) (end 102.2542 17.9958) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 102.2542 17.9958) (end 101.75 18.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 106.559998 90.55) (end 105.754284 91.355714) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 104.605 93.5) (end 103.815 93.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 105.754284 91.355714) (end 105.754284 92.075716) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 105.754284 92.075716) (end 104.86 92.97) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 104.345 92.97) (end 103.815 93.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 104.86 92.97) (end 104.345 92.97) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 104.887947 93.687947) (end 103.4 92.2) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 103.4 92.2) (end 103.4 88.886448) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 104.887947 93.687947) (end 105.709234 93.687947) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 103.313552 88.8) (end 103.4 88.886448) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 101.39854 88.8) (end 103.313552 88.8) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 100.75004 87.30206) (end 100.75004 88.1515) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 100.75004 88.1515) (end 101.39854 88.8) (width 0.4) (layer F.Cu) (net 1))
+  (via (at 106 12.55) (size 3) (drill 2) (layers F.Cu B.Cu) (net 2) (tstamp 5DC7661D))
+  (segment (start 103.1 93.3) (end 103.1 93.425) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 102.19 100.54) (end 102.19 105.075) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 101.4 99.75) (end 102.19 100.54) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 101.025 99.375) (end 101.4 99.75) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 101.025 95.45) (end 101.025 99.375) (width 0.4) (layer F.Cu) (net 2) (tstamp 5DD40493))
+  (segment (start 109.9 94.2625) (end 109.9 94.2) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 100.85 86) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 100.85 82.37) (end 100.845 82.365) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 109.95 94.3125) (end 110.8 93.4625) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 110.8 92.125) (end 110.05 91.375) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 110.8 93.4625) (end 110.8 92.125) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 110.05 91.375) (end 110.05 88.05) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 110.05 87.55) (end 110.05 88.05) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 109 86.5) (end 110.05 87.55) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 109.899998 86.445002) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 109.054998 86.445002) (end 109 86.5) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 109.899998 86.445002) (end 109.054998 86.445002) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 101.7 86.45) (end 101.7 87.30206) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.025 78.025) (end 103.025 77.15) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 106.6 87.4) (end 106.6 87.275) (width 0.25) (layer B.Cu) (net 2))
+  (via (at 105.65 87.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106.8 87.65) (end 106.05 87.65) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 106.05 87.65) (end 105.65 87.25) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 101.7 88.1515) (end 101.7 87.30206) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.184281 88.226501) (end 101.775001 88.226501) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 101.775001 88.226501) (end 101.7 88.1515) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 104.160782 87.25) (end 103.184281 88.226501) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 105.65 87.25) (end 104.160782 87.25) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 103.1 74.6) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 103.125 73.725) (end 103.1 73.7) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.125 76.8) (end 103.125 73.725) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 101.7 72.675) (end 102.075 72.675) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 103.3 70.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2) (tstamp 5DD05B4C))
+  (segment (start 101.7 72.675) (end 102.225 72.675) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.6 13.5) (end 103.7 13.5) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 103.7 13.5) (end 104 13.2) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 104.274 14.406) (end 104.905 14.406) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 104 14.132) (end 104.274 14.406) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 109.4 72.7) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 103.55 73.25) (end 103.65 73.25) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.1 73.7) (end 103.55 73.25) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 101.415685 86) (end 101.7 86.284315) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 100.85 86) (end 101.415685 86) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 101.7 86.284315) (end 101.7 86.45) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 101.15 62.1) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 111 23.9) (end 111 24.4) (width 0.25) (layer B.Cu) (net 2))
+  (via (at 103.7 59) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 111 64.55) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 111 60.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 103.9 50.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 103.9 42.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 103.8 34.1) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 103.3 26.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 108.2 36.7) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 108.2 28.1) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 108.1 45.2) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 108.1 53.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 111 23.9) (end 110.55 23.9) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 107.95 26.5) (end 107.95 28.4) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 110.55 23.9) (end 107.95 26.5) (width 0.4) (layer B.Cu) (net 2))
+  (via (at 104.15 11.45) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 104 14.132) (end 104 11.6) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 104 11.6) (end 104.15 11.45) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 104.15 12.69962) (end 103.54752 13.3021) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 104.15 11.45) (end 104.15 12.69962) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 104.0625 22) (end 105.4 22) (width 0.25) (layer B.Cu) (net 2))
+  (via (at 105.9 22.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 105.4 22) (end 105.9 22.5) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 105.9 22.188) (end 104.85 21.138) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 105.9 22.5) (end 105.9 22.188) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 102.15 79.02) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 103.025 78.025) (end 102 79.05) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 102 79.05) (end 100.845 80.205) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 107.95 73.25) (end 103.65 73.25) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 108.5 72.7) (end 109.5 72.7) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 107.95 73.25) (end 108.5 72.7) (width 0.4) (layer F.Cu) (net 2))
+  (via (at 106.2 67.8) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 102.5 64.7) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 102.9 99.75) (end 101.4 99.75) (width 0.25) (layer B.Cu) (net 2) (status 1000000))
+  (via (at 101.4 99.75) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2) (status 1000000))
+  (segment (start 103.4 99.25) (end 102.9 99.75) (width 0.25) (layer B.Cu) (net 2) (status 1000000))
+  (segment (start 103.1 93.425) (end 103.97501 94.30001) (width 0.4) (layer F.Cu) (net 2) (status 1000000))
+  (segment (start 103.97501 94.30001) (end 103.97501 98.67499) (width 0.4) (layer F.Cu) (net 2) (status 1000000))
+  (segment (start 103.97501 98.67499) (end 103.4 99.25) (width 0.4) (layer F.Cu) (net 2) (status 1000000))
+  (via (at 103.4 99.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2) (status 1000000))
+  (segment (start 104.475 94.8) (end 107.4 94.8) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.97501 94.30001) (end 104.475 94.8) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 107.8875 94.3125) (end 109.95 94.3125) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 107.4 94.8) (end 107.8875 94.3125) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 108.1 18.6) (end 108.1 21.15) (width 0.25) (layer B.Cu) (net 3))
+  (segment (start 108.1 21.15) (end 108.2 21.25) (width 0.25) (layer B.Cu) (net 3))
+  (segment (start 101.225 84.25) (end 101.225 82.35) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 102.64996 85.67496) (end 102.64996 87.30206) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 101.225 84.25) (end 102.64996 85.67496) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 100.482694 80.057694) (end 101.3 80.875) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 100.975 77.15) (end 100.975 77.95) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 100.482694 78.442306) (end 100.482694 80.057694) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 100.975 77.95) (end 100.482694 78.442306) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 108.725 84.65) (end 109.075 84.3) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 105.4 83.425) (end 106 82.825) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.1714 90.37929) (end 108.174999 89.375691) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.83321 90.37929) (end 107.1714 90.37929) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 91.2125) (end 106.83321 90.37929) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.112081 86.958493) (end 107.112081 85.637919) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.35 84.4) (end 109.025 84.4) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.174999 88.021411) (end 107.112081 86.958493) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.112081 85.637919) (end 108.35 84.4) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.174999 89.375691) (end 108.174999 88.021411) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.799161 85.324999) (end 107.112081 85.637919) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 105.251997 85.324999) (end 106.799161 85.324999) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 104.500009 83.926989) (end 104.500009 84.573011) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 104.500009 84.573011) (end 105.251997 85.324999) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 105.601998 82.825) (end 104.500009 83.926989) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 82.825) (end 105.601998 82.825) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.83321 65.19179) (end 107.50821 65.19179) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 66.025) (end 106.83321 65.19179) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.00001 60.323103) (end 106.751908 59.075001) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.50821 65.19179) (end 108.00001 64.69999) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.00001 64.69999) (end 108.00001 60.323103) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 58.323093) (end 106.751908 59.075001) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 57.625) (end 106 58.323093) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.275153 74.425) (end 106 74.425) (width 0.25) (layer F.Cu) (net 6))
+  (via (at 109.1 73.8) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106 66.55) (end 106 66.025) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.65 72.309412) (end 109.425011 71.534401) (width 0.25) (layer B.Cu) (net 6))
+  (via (at 106.375 50.7) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106 49.225) (end 106 50.325) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 50.325) (end 106.375 50.7) (width 0.25) (layer F.Cu) (net 6))
+  (via (at 106.375 42.35) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106.375 50.7) (end 106.375 42.35) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106.375 41.1875) (end 106 40.8125) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.375 42.35) (end 106.375 41.1875) (width 0.25) (layer F.Cu) (net 6))
+  (via (at 106.375 34) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106.375 42.35) (end 106.375 34) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106.375 32.8) (end 106 32.425) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.375 34) (end 106.375 32.8) (width 0.25) (layer F.Cu) (net 6))
+  (via (at 106.075 25.6) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106.375 34) (end 106.375 25.9) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106.375 25.9) (end 106.075 25.6) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106.075 24) (end 106 23.925) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.075 25.6) (end 106.075 24) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.375 50.7) (end 106.375 58.613063) (width 0.25) (layer B.Cu) (net 6))
+  (via (at 106.761937 59) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106.375 58.613063) (end 106.761937 59) (width 0.25) (layer B.Cu) (net 6))
+  (via (at 108.786501 69.438193) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 109.425011 71.534401) (end 109.425011 70.076703) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 109.425011 70.076703) (end 108.786501 69.438193) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106 66.651692) (end 106 66.025) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.786501 69.438193) (end 106 66.651692) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.65 73.35) (end 109.1 73.8) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 108.65 72.309412) (end 108.65 73.35) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106.625 73.8) (end 106 74.425) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 109.1 73.8) (end 106.625 73.8) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.275001 79.005001) (end 106 76.73) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.275001 82.324999) (end 108.275001 79.005001) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 76.73) (end 106 74.425) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.775 82.825) (end 108.275001 82.324999) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 82.825) (end 107.775 82.825) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 101.15 95.425) (end 101.1 95.475) (width 0.25) (layer B.Cu) (net 7))
+  (segment (start 101.15 93.675) (end 101.15 95.425) (width 0.25) (layer B.Cu) (net 7))
+  (via (at 105.85 99.425) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 7))
+  (segment (start 107.27 100.279315) (end 107.27 100.575) (width 0.25) (layer F.Cu) (net 7))
+  (segment (start 106.415685 99.425) (end 107.27 100.279315) (width 0.25) (layer F.Cu) (net 7))
+  (segment (start 107.27 100.575) (end 107.27 104.7) (width 0.25) (layer F.Cu) (net 7))
+  (segment (start 105.85 99.425) (end 106.415685 99.425) (width 0.25) (layer F.Cu) (net 7))
+  (segment (start 101.1 95.475) (end 102.075 96.45) (width 0.25) (layer B.Cu) (net 7))
+  (segment (start 105.85 98.859315) (end 105.85 99.425) (width 0.25) (layer B.Cu) (net 7))
+  (segment (start 105.85 97.159998) (end 105.85 98.859315) (width 0.25) (layer B.Cu) (net 7))
+  (segment (start 105.140002 96.45) (end 105.85 97.159998) (width 0.25) (layer B.Cu) (net 7))
+  (segment (start 102.075 96.45) (end 105.140002 96.45) (width 0.25) (layer B.Cu) (net 7))
+  (via (at 104.75 100.35) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 8))
+  (segment (start 110.8 97.625) (end 108.075 100.35) (width 0.25) (layer B.Cu) (net 8))
+  (segment (start 108.075 100.35) (end 104.75 100.35) (width 0.25) (layer B.Cu) (net 8))
+  (segment (start 104.75 104.68) (end 104.73 104.7) (width 0.25) (layer F.Cu) (net 8))
+  (segment (start 104.75 100.35) (end 104.75 104.68) (width 0.25) (layer F.Cu) (net 8))
+  (segment (start 102.95 95.3) (end 102.95 96.1) (width 0.25) (layer F.Cu) (net 9))
+  (segment (start 102.274999 94.624999) (end 102.95 95.3) (width 0.25) (layer F.Cu) (net 9))
+  (segment (start 102.64996 91.14738) (end 102.274999 91.522341) (width 0.25) (layer F.Cu) (net 9))
+  (segment (start 102.274999 91.522341) (end 102.274999 94.624999) (width 0.25) (layer F.Cu) (net 9))
+  (segment (start 102.64996 89.89794) (end 102.64996 91.14738) (width 0.25) (layer F.Cu) (net 9))
+  (via (at 103.5 16.35) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 10))
+  (segment (start 103.5 15.0986) (end 103.6 14.9986) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 103.5 16.35) (end 103.5 15.0986) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 103.5 21.1) (end 103.5 16.35) (width 0.25) (layer F.Cu) (net 10))
+  (via (at 103.5 24.6) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 10))
+  (segment (start 103.5 24.6) (end 103.5 21.1) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 108.839998 88.05) (end 109.1 88.05) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 108.05 87.260002) (end 108.839998 88.05) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 104.924999 26.590684) (end 103.5 25.165685) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 104.924999 60.748001) (end 104.924999 26.590684) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 109.6 65.4) (end 109.576998 65.4) (width 0.25) (layer B.Cu) (net 10))
+  (via (at 110.6 66.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 10))
+  (segment (start 110.6 66.4) (end 109.6 65.4) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 103.5 25.165685) (end 103.5 24.6) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 110.6 66.4) (end 110.6 66.85002) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 110.6 66.85002) (end 110.57501 66.87501) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 110.57501 66.87501) (end 110.57501 82.53818) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 110.57501 82.53818) (end 110.1 83.01319) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 110.1 83.01319) (end 110.1 84.91319) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 109.576998 65.4) (end 104.924999 60.748001) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 110.1 84.91319) (end 109.58818 85.42501) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 109.58818 85.42501) (end 108.46182 85.42501) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 108.05 85.83683) (end 108.05 87.260002) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 108.46182 85.42501) (end 108.05 85.83683) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 109.1 91.95) (end 108.8 92.25) (width 0.25) (layer F.Cu) (net 11))
+  (segment (start 109.1 90.6) (end 109.1 91.95) (width 0.25) (layer F.Cu) (net 11))
+  (segment (start 103.69 91.625) (end 103.815 91.5) (width 0.25) (layer B.Cu) (net 16))
+  (segment (start 101.15 91.625) (end 103.69 91.625) (width 0.25) (layer B.Cu) (net 16))
+  (segment (start 108.775 91.5) (end 107.985 91.5) (width 0.25) (layer B.Cu) (net 17))
+  (segment (start 110.8 93.525) (end 108.775 91.5) (width 0.25) (layer B.Cu) (net 17))
+  (segment (start 110.8 95.575) (end 110.8 93.525) (width 0.25) (layer B.Cu) (net 17))
+  (segment (start 103.815 88.75) (end 103.815 89.5) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.575001 85.251999) (end 101.575001 86.338171) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.57499 85.251988) (end 101.575001 85.251999) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.575001 86.338171) (end 101.93683 86.7) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.93683 86.7) (end 103.75 86.7) (width 0.25) (layer B.Cu) (net 18) (tstamp 5DC88A83))
+  (segment (start 103.75 86.7) (end 104.2 87.15) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 104.2 88.365) (end 103.815 88.75) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 104.2 87.15) (end 104.2 88.365) (width 0.25) (layer B.Cu) (net 18))
+  (via (at 109.6 61.85) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18))
+  (via (at 109.6 26.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18))
+  (segment (start 109.6 61.85) (end 109.6 26.5) (width 0.25) (layer B.Cu) (net 18))
+  (via (at 107.3 70) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18))
+  (segment (start 110.224 21.138) (end 110.855 21.138) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 109.6 21.762) (end 110.224 21.138) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 109.6 26.5) (end 109.6 21.762) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 110.855 21.138) (end 110.855 15.55) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 107.865685 70) (end 107.3 70) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 109.134502 70.163194) (end 108.028879 70.163194) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 109.6 69.697696) (end 109.134502 70.163194) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 108.028879 70.163194) (end 107.865685 70) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 109.6 61.85) (end 109.6 69.697696) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 102.315 82.365) (end 102.315 84.085) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.57499 84.82501) (end 101.57499 85.251988) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 102.315 84.085) (end 101.57499 84.82501) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 107.3 70) (end 106.03 71.27) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 106.03 71.27) (end 106.03 78.573002) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 106.03 78.573002) (end 106.03 79.14) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 106.03 79.14) (end 106.02 79.14) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 106.02 79.14) (end 105.658499 79.501501) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 105.594999 79.575001) (end 106.03 79.14) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 102.927172 79.575001) (end 105.594999 79.575001) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 102.315 82.365) (end 102.315 81.625) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 102.315 81.625) (end 101.93 81.24) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.93 80.572173) (end 102.927172 79.575001) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.93 81.24) (end 101.93 80.572173) (width 0.25) (layer B.Cu) (net 18))
+  (via (at 103.58 80.31) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
+  (segment (start 103.385 77.885) (end 103.385 77.435) (width 0.25) (layer B.Cu) (net 19))
+  (via (at 104.04 78.93) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
+  (segment (start 101.04 20.126) (end 101.04 21.138) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 101.025419 20.111419) (end 101.04 20.126) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 101.025419 15.945581) (end 101.025419 20.111419) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 101.04 15.931) (end 101.025419 15.945581) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 101.04 15.55) (end 101.04 15.931) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 102.65 21.7) (end 102.088 21.138) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 102.088 21.138) (end 101.04 21.138) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 102.65 25.5) (end 102.65 21.7) (width 0.25) (layer B.Cu) (net 19))
+  (via (at 102.65 21.7) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
+  (segment (start 108.75 65.75) (end 101.7 58.7) (width 0.25) (layer B.Cu) (net 19))
+  (via (at 108.75 65.75) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
+  (segment (start 108.737653 68.346743) (end 108.729005 68.355391) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 108.737653 67.462347) (end 108.737653 68.346743) (width 0.25) (layer F.Cu) (net 19))
+  (via (at 108.729005 68.355391) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
+  (segment (start 108.75 65.75) (end 108.737653 67.462347) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 101.7 26.45) (end 102.65 25.5) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 101.7 58.7) (end 101.7 26.45) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 104.20499 71.429325) (end 104.20499 75.56501) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.385 76.385) (end 103.385 77.435) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 104.20499 75.56501) (end 103.385 76.385) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 108.729005 68.355391) (end 107.278924 68.355391) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 107.278924 68.355391) (end 104.20499 71.429325) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.58 79.92) (end 103.58 80.31) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 103.585 77.435) (end 103.585 78.485) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 105.3 80.31) (end 105.975001 80.985001) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.58 80.31) (end 105.3 80.31) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 106.826412 89.5) (end 107.985 89.5) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 105.975001 80.985001) (end 105.975001 84.674999) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 105.975001 84.674999) (end 104.924999 85.725001) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 104.924999 85.725001) (end 104.924999 87.598587) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 104.924999 87.598587) (end 106.826412 89.5) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.595 78.485) (end 104.04 78.93) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.585 78.485) (end 103.595 78.485) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.58 79.39) (end 104.04 78.93) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 103.58 80.31) (end 103.58 79.39) (width 0.25) (layer F.Cu) (net 19))
+  (via (at 102.74 80.83) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 20))
+  (segment (start 103.385 82.365) (end 103.385 81.915) (width 0.25) (layer B.Cu) (net 20))
+  (segment (start 101.7 68.775) (end 101.75 68.725) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.7 70.625) (end 101.7 68.775) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 100.67499 71.65001) (end 100.67499 73.82499) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 100.67499 73.82499) (end 102.1 75.25) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.7 70.625) (end 100.67499 71.65001) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 102.1 75.25) (end 102.1 77.75) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.424999 78.425001) (end 101.43 78.42) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 102.1 77.75) (end 101.43 78.42) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.43 78.42) (end 101.124999 78.725001) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.124999 78.725001) (end 101.124999 79.584999) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.124999 79.584999) (end 101.49 79.95) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 103.585 81.675) (end 102.74 80.83) (width 0.25) (layer B.Cu) (net 20))
+  (segment (start 103.585 82.365) (end 103.585 81.675) (width 0.25) (layer B.Cu) (net 20))
+  (segment (start 101.86 79.95) (end 102.74 80.83) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.49 79.95) (end 101.86 79.95) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 104.655 82.365) (end 104.655 81.999007) (width 0.25) (layer B.Cu) (net 21))
+  (segment (start 104.65 82.37) (end 104.655 82.365) (width 0.25) (layer B.Cu) (net 21))
+  (via (at 105.25 84.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 21))
+  (segment (start 104.655 83.655) (end 105.25 84.25) (width 0.25) (layer B.Cu) (net 21))
+  (segment (start 104.655 82.365) (end 104.655 83.655) (width 0.25) (layer B.Cu) (net 21))
+  (segment (start 109.28681 82.23819) (end 109.55 81.975) (width 0.25) (layer F.Cu) (net 21))
+  (segment (start 109.28681 82.55) (end 109.28681 82.23819) (width 0.25) (layer F.Cu) (net 21))
+  (segment (start 105.25 84.25) (end 107.58681 84.25) (width 0.25) (layer F.Cu) (net 21))
+  (segment (start 107.58681 84.25) (end 109.28681 82.55) (width 0.25) (layer F.Cu) (net 21))
+  (segment (start 109.81 97.2275) (end 109.9 97.1375) (width 0.25) (layer F.Cu) (net 22))
+  (segment (start 109.81 105.075) (end 109.81 97.2275) (width 0.4) (layer F.Cu) (net 22))
+  (via (at 101.9 98.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
+  (segment (start 101.49794 89.89794) (end 101.6 90) (width 0.25) (layer F.Cu) (net 22))
+  (segment (start 100.75004 89.89794) (end 101.49794 89.89794) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.6 92.8) (end 101.1 93.3) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.6 90) (end 101.6 92.8) (width 0.4) (layer F.Cu) (net 22))
+  (via (at 101.6 90) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
+  (segment (start 101.6 89.434315) (end 101.6 90) (width 0.25) (layer B.Cu) (net 22))
+  (segment (start 101.6 87.975) (end 101.6 89.434315) (width 0.25) (layer B.Cu) (net 22))
+  (segment (start 101.9 87.675) (end 101.6 87.975) (width 0.25) (layer B.Cu) (net 22))
+  (segment (start 102.7 87.675) (end 101.9 87.675) (width 0.25) (layer B.Cu) (net 22))
+  (segment (start 108.437501 98.699999) (end 109.95 97.1875) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 103.9 100) (end 105.200001 98.699999) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 105.200001 98.699999) (end 108.437501 98.699999) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 102.834315 100) (end 103.9 100) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.1 94.4) (end 101.1 93.3) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.1 97.7) (end 101.9 98.5) (width 0.4) (layer B.Cu) (net 22))
+  (segment (start 101.1 97.525) (end 101.1 97.7) (width 0.25) (layer B.Cu) (net 22))
+  (segment (start 101.9 99.065685) (end 101.9 98.5) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 102.834315 100) (end 101.9 99.065685) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.9 95.2) (end 101.1 94.4) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.9 98.5) (end 101.9 95.2) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 104.05 85.025) (end 103.275 84.25) (width 0.25) (layer F.Cu) (net 23))
+  (segment (start 104.05 85.6) (end 104.05 85.025) (width 0.25) (layer F.Cu) (net 23))
+  (segment (start 104.025 85.625) (end 102.7 85.625) (width 0.25) (layer B.Cu) (net 23))
+  (via (at 104.05 85.6) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
+  (segment (start 104.05 85.6) (end 104.025 85.625) (width 0.25) (layer B.Cu) (net 23))
+  (segment (start 108.6 87.4) (end 110.243002 87.4) (width 0.25) (layer B.Cu) (net 24))
+  (via (at 111.25 91.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
+  (segment (start 111 90.25) (end 111 91) (width 0.25) (layer F.Cu) (net 24))
+  (segment (start 111 91) (end 111.25 91.25) (width 0.25) (layer F.Cu) (net 24))
+  (segment (start 111.25 90.684315) (end 111.61499 90.319325) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 111.25 91.25) (end 111.25 90.684315) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 111.61499 88.771988) (end 110.243002 87.4) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 111.61499 90.319325) (end 111.61499 88.771988) (width 0.25) (layer B.Cu) (net 24))
+  (via (at 109.55 78.65) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
+  (segment (start 110.318002 78.65) (end 109.55 78.65) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 110.243002 87.4) (end 111.538001 86.105001) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 111.538001 79.869999) (end 110.318002 78.65) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 111.538001 86.105001) (end 111.538001 79.869999) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 109.55 78.65) (end 109.55 79.925) (width 0.25) (layer F.Cu) (net 24))
+  (via (at 109.7 76.025) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
+  (segment (start 109.7 78.5) (end 109.55 78.65) (width 0.25) (layer F.Cu) (net 24))
+  (segment (start 109.7 76.025) (end 109.7 78.5) (width 0.25) (layer F.Cu) (net 24))
+  (segment (start 106.970725 69.3) (end 106.513499 69.757226) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 108.165825 74.490825) (end 108.165825 72.157177) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 109.7 76.025) (end 108.165825 74.490825) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 108.165825 72.157177) (end 108.975001 71.348001) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 108.975001 71.348001) (end 108.975001 70.651999) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 108.975001 70.651999) (end 107.623002 69.3) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 106.513499 69.757226) (end 106.513499 69.763499) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 107.623002 69.3) (end 106.970725 69.3) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 104.855 71.415725) (end 104.855 77.435) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 106.513499 69.757226) (end 104.855 71.415725) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 102.115 73.402001) (end 102 73.287001) (width 0.25) (layer B.Cu) (net 25))
+  (segment (start 102.115 77.435) (end 102.115 73.402001) (width 0.25) (layer B.Cu) (net 25))
+  (segment (start 104.818789 59.441789) (end 106.093391 59.441789) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 104.225001 62.248001) (end 104.225001 60.035577) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 106.093391 59.441789) (end 107.125801 60.474199) (width 0.25) (layer F.Cu) (net 26))
+  (via (at 103.25 68.95) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 26))
+  (segment (start 103.2 63.273002) (end 104.225001 62.248001) (width 0.25) (layer F.Cu) (net 26))
+  (via (at 107.125801 60.474199) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 26))
+  (segment (start 103.25 68.95) (end 103.2 63.273002) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 104.225001 60.035577) (end 104.818789 59.441789) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 102 70.2) (end 102 71.25) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 103.25 68.95) (end 102 70.2) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.7 13.325) (end 110.725 12.3) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.7 17.549991) (end 109.7 13.325) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.7 18.55) (end 109.75 18.6) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.7 17.549991) (end 109.7 18.55) (width 0.25) (layer B.Cu) (net 26))
+  (via (at 109.7 17.549991) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 26))
+  (segment (start 109.7 13.325) (end 109.7 17.549991) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 110.725 12.3) (end 109.7 13.325) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 109.5 23.7) (end 109.5 19.75) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.75 19.5) (end 109.75 18.6) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.22501 23.97499) (end 109.5 23.7) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 107.125801 60.474199) (end 107.75 59.85) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 107.75 58.4) (end 107.1 57.75) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.5 19.75) (end 109.75 19.5) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 107.75 59.85) (end 107.75 58.4) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 107.1 57.75) (end 107.1 26.102304) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 107.1 26.102304) (end 109.22501 23.977294) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.22501 23.977294) (end 109.22501 23.97499) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 108.425 12.1) (end 108.425 14.05) (width 0.25) (layer B.Cu) (net 27))
+  (via (at 107.428948 14.088868) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 27))
+  (segment (start 108.675 12.3) (end 108.675 12.842816) (width 0.25) (layer F.Cu) (net 27))
+  (segment (start 108.675 12.842816) (end 107.428948 14.088868) (width 0.25) (layer F.Cu) (net 27))
+  (segment (start 108.363868 14.088868) (end 108.675 14.4) (width 0.25) (layer B.Cu) (net 27))
+  (segment (start 107.428948 14.088868) (end 108.363868 14.088868) (width 0.25) (layer B.Cu) (net 27))
+  (segment (start 105.75 88.55) (end 106 88.8) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.05 72) (end 106 72) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 106.144114 92.787456) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 107.272456 92.787456) (end 107.985 93.5) (width 0.25) (layer B.Cu) (net 28) (tstamp 5DD41273))
+  (segment (start 106.144114 92.787456) (end 107.272456 92.787456) (width 0.25) (layer B.Cu) (net 28))
+  (via (at 105.7 86.05) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 105.745 86.095) (end 105.7 86.05) (width 0.25) (layer B.Cu) (net 28))
+  (via (at 106.8 78.71) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 106 80.4) (end 106.2 80.4) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 106.8 76.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (via (at 105.65 60.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 106 63.6) (end 106 60.75) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 60.75) (end 105.65 60.4) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 105.65 53.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 105.65 60.4) (end 105.65 53.5) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 105.65 54.85) (end 106 55.2) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.65 53.5) (end 105.65 54.85) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 105.65 45.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 105.65 53.5) (end 105.65 45.25) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 105.65 46.4375) (end 106 46.7875) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.65 45.25) (end 105.65 46.4375) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 105.65 36.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 105.65 45.25) (end 105.65 36.9) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 105.65 38.05) (end 106 38.4) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.65 36.9) (end 105.65 38.05) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 105.65 28.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 105.65 36.9) (end 105.65 28.4) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 105.65 29.55) (end 106 29.9) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.65 28.4) (end 105.65 29.55) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 97.1875) (end 106 95.85) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 106 95.85) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 106 95.284315) (end 106 95.85) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 106 94.695) (end 106 95.284315) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 107.195 93.5) (end 106 94.695) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 107.985 93.5) (end 107.195 93.5) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 105.16679 89.63321) (end 104.8286 89.63321) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 88.8) (end 105.16679 89.63321) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106.144114 92.787456) (end 104.824266 92.787456) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 104.8286 89.63321) (end 103.99999 90.46182) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 103.99999 91.96318) (end 103.99999 90.46182) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 104.824266 92.787456) (end 103.99999 91.96318) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.7 86.05) (end 106.9 84.85) (width 0.4) (layer B.Cu) (net 28))
+  (segment (start 106.5 79.9) (end 106 80.4) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 72) (end 108.323002 72) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 108.323002 72) (end 109.198002 71.125) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 107.673002 76.3) (end 107.365685 76.3) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 107.365685 76.3) (end 106.8 76.3) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 110.125001 73.848001) (end 107.673002 76.3) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 110.125001 71.625001) (end 110.125001 73.848001) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 109.625 71.125) (end 110.125001 71.625001) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 109.198002 71.125) (end 109.625 71.125) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106.8 76.3) (end 106.8 78.7) (width 0.4) (layer B.Cu) (net 28))
+  (segment (start 105.7 86.05) (end 106.5 86.85) (width 0.4) (layer F.Cu) (net 28))
+  (segment (start 106.5 86.85) (end 106.5 88) (width 0.4) (layer F.Cu) (net 28))
+  (segment (start 106 88.5) (end 106.5 88) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 88.8) (end 106 88.5) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 72) (end 106 71.7) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 103.99999 69.3364) (end 106 71.33641) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 71.33641) (end 106 72) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 63.6) (end 104.225 63.6) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 103.99999 63.82501) (end 103.99999 69.3364) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 104.225 63.6) (end 103.99999 63.82501) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106.8 83.79982) (end 106.90018 83.9) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 106.8 78.71) (end 106.8 83.79982) (width 0.4) (layer B.Cu) (net 28))
+  (segment (start 106.90018 84.84982) (end 106.90018 83.9) (width 0.4) (layer B.Cu) (net 28))
+  (segment (start 106.9 84.85) (end 106.90018 84.84982) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 106.8 79.6) (end 106 80.4) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106.8 78.71) (end 106.8 79.6) (width 0.4) (layer F.Cu) (net 28))
+  (via (at 108.3 71) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 29))
+  (via (at 104.85 67.45) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 29))
+  (segment (start 108.075 80.5) (end 108.075 81.3) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 107.525001 79.950001) (end 108.075 80.5) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 107.525001 71.774999) (end 107.525001 79.950001) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 108.3 71) (end 107.525001 71.774999) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 108.99822 82.22322) (end 108.075 81.3) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 108.99822 82.95004) (end 108.99822 82.22322) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 100.845 75.18) (end 100.845 77.435) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 100.845 70.281998) (end 100.845 75.18) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 104.85 67.45) (end 103.676998 67.45) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 103.676998 67.45) (end 100.845 70.281998) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 106.625001 70.725001) (end 104.85 68.95) (width 0.25) (layer F.Cu) (net 29))
+  (segment (start 108.025001 70.725001) (end 106.625001 70.725001) (width 0.25) (layer F.Cu) (net 29))
+  (segment (start 108.3 71) (end 108.025001 70.725001) (width 0.25) (layer F.Cu) (net 29))
+  (segment (start 104.85 67.45) (end 104.85 68.95) (width 0.25) (layer F.Cu) (net 29))
+
+  (zone (net 2) (net_name GND) (layer B.Cu) (tstamp 0) (hatch edge 0.508)
+    (connect_pads (clearance 0.508))
+    (min_thickness 0.254)
+    (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
+    (polygon
+      (pts
+        (xy 98.65 8.5) (xy 113.8 8.4) (xy 114.15 112.15) (xy 98.35 111.65)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 105.090001 98.721288) (xy 105.046063 98.765226) (xy 104.932795 98.934744) (xy 104.854774 99.123102) (xy 104.816603 99.315)
+        (xy 104.648061 99.315) (xy 104.448102 99.354774) (xy 104.259744 99.432795) (xy 104.090226 99.546063) (xy 103.946063 99.690226)
+        (xy 103.832795 99.859744) (xy 103.754774 100.048102) (xy 103.715 100.248061) (xy 103.715 100.451939) (xy 103.754774 100.651898)
+        (xy 103.832795 100.840256) (xy 103.946063 101.009774) (xy 104.090226 101.153937) (xy 104.259744 101.267205) (xy 104.448102 101.345226)
+        (xy 104.648061 101.385) (xy 104.851939 101.385) (xy 105.051898 101.345226) (xy 105.240256 101.267205) (xy 105.409774 101.153937)
+        (xy 105.453711 101.11) (xy 108.037678 101.11) (xy 108.075 101.113676) (xy 108.112322 101.11) (xy 108.112333 101.11)
+        (xy 108.223986 101.099003) (xy 108.367247 101.055546) (xy 108.499276 100.984974) (xy 108.615001 100.890001) (xy 108.638804 100.860997)
+        (xy 110.66173 98.838072) (xy 111.250001 98.838072) (xy 111.305001 98.832655) (xy 111.305001 107.965998) (xy 111.276877 108.252831)
+        (xy 111.203451 108.496028) (xy 111.084185 108.720333) (xy 110.923625 108.917198) (xy 110.727881 109.079132) (xy 110.504416 109.199959)
+        (xy 110.261737 109.27508) (xy 109.97707 109.305) (xy 102.033992 109.305) (xy 101.747169 109.276877) (xy 101.503972 109.203451)
+        (xy 101.279667 109.084185) (xy 101.082802 108.923625) (xy 100.920868 108.727881) (xy 100.800041 108.504416) (xy 100.72492 108.261737)
+        (xy 100.695 107.97707) (xy 100.695 98.738072) (xy 100.892078 98.738072) (xy 100.904774 98.801898) (xy 100.982795 98.990256)
+        (xy 101.096063 99.159774) (xy 101.240226 99.303937) (xy 101.409744 99.417205) (xy 101.598102 99.495226) (xy 101.798061 99.535)
+        (xy 102.001939 99.535) (xy 102.201898 99.495226) (xy 102.390256 99.417205) (xy 102.559774 99.303937) (xy 102.703937 99.159774)
+        (xy 102.817205 98.990256) (xy 102.895226 98.801898) (xy 102.927813 98.638072) (xy 105.090001 98.638072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 101.72082 78.824502) (xy 101.840518 78.860812) (xy 101.965 78.873072) (xy 102.628158 78.873072) (xy 102.502896 78.940027)
+        (xy 102.387171 79.035) (xy 102.363373 79.063998) (xy 101.418998 80.008374) (xy 101.39 80.032172) (xy 101.366202 80.06117)
+        (xy 101.366201 80.061171) (xy 101.295026 80.147897) (xy 101.224454 80.279927) (xy 101.215332 80.31) (xy 101.180997 80.423187)
+        (xy 101.17 80.53484) (xy 101.17 80.534851) (xy 101.166324 80.572173) (xy 101.17 80.609495) (xy 101.17 81.202678)
+        (xy 101.166324 81.24) (xy 101.17 81.277322) (xy 101.17 81.277332) (xy 101.172 81.297638) (xy 101.172 82.238)
+        (xy 101.192 82.238) (xy 101.192 82.492) (xy 101.172 82.492) (xy 101.172 83.64125) (xy 101.33075 83.8)
+        (xy 101.395 83.803072) (xy 101.519482 83.790812) (xy 101.540876 83.784322) (xy 101.063992 84.261207) (xy 101.034989 84.285009)
+        (xy 101.002764 84.324276) (xy 100.940016 84.400734) (xy 100.881999 84.509276) (xy 100.869444 84.532764) (xy 100.825987 84.676025)
+        (xy 100.81499 84.787678) (xy 100.81499 84.787688) (xy 100.811314 84.82501) (xy 100.81499 84.862332) (xy 100.81499 85.214666)
+        (xy 100.811314 85.251988) (xy 100.81499 85.28931) (xy 100.81499 85.289321) (xy 100.815001 85.289433) (xy 100.815002 86.300839)
+        (xy 100.811325 86.338171) (xy 100.815002 86.375504) (xy 100.824704 86.474003) (xy 100.825999 86.487156) (xy 100.869455 86.630417)
+        (xy 100.940027 86.762447) (xy 101.000556 86.836201) (xy 101.035001 86.878172) (xy 101.063998 86.90197) (xy 101.331114 87.169085)
+        (xy 101.089003 87.411196) (xy 101.059999 87.434999) (xy 101.004871 87.502174) (xy 100.965026 87.550724) (xy 100.906908 87.659454)
+        (xy 100.894454 87.682754) (xy 100.850997 87.826015) (xy 100.84 87.937668) (xy 100.84 87.937678) (xy 100.836324 87.975)
+        (xy 100.84 88.012323) (xy 100.840001 89.296288) (xy 100.796063 89.340226) (xy 100.695 89.491478) (xy 100.695 83.803072)
+        (xy 100.75925 83.8) (xy 100.918 83.64125) (xy 100.918 82.492) (xy 100.898 82.492) (xy 100.898 82.238)
+        (xy 100.918 82.238) (xy 100.918 81.08875) (xy 100.75925 80.93) (xy 100.695 80.926928) (xy 100.695 78.873072)
+        (xy 101.395 78.873072) (xy 101.519482 78.860812) (xy 101.63918 78.824502) (xy 101.68 78.802683)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.415011 70.06659) (xy 110.41501 73.111545) (xy 110.382805 73.159744) (xy 110.304784 73.348102) (xy 110.26501 73.548061)
+        (xy 110.26501 73.751939) (xy 110.304784 73.951898) (xy 110.382805 74.140256) (xy 110.496073 74.309774) (xy 110.640236 74.453937)
+        (xy 110.809754 74.567205) (xy 110.998112 74.645226) (xy 111.198071 74.685) (xy 111.305001 74.685) (xy 111.305001 78.562197)
+        (xy 110.881806 78.139003) (xy 110.858003 78.109999) (xy 110.742278 78.015026) (xy 110.610249 77.944454) (xy 110.466988 77.900997)
+        (xy 110.355335 77.89) (xy 110.355324 77.89) (xy 110.318002 77.886324) (xy 110.28068 77.89) (xy 110.253711 77.89)
+        (xy 110.209774 77.846063) (xy 110.040256 77.732795) (xy 109.851898 77.654774) (xy 109.651939 77.615) (xy 109.448061 77.615)
+        (xy 109.248102 77.654774) (xy 109.059744 77.732795) (xy 108.890226 77.846063) (xy 108.746063 77.990226) (xy 108.632795 78.159744)
+        (xy 108.554774 78.348102) (xy 108.515 78.548061) (xy 108.515 78.751939) (xy 108.554774 78.951898) (xy 108.632795 79.140256)
+        (xy 108.746063 79.309774) (xy 108.890226 79.453937) (xy 109.059744 79.567205) (xy 109.248102 79.645226) (xy 109.448061 79.685)
+        (xy 109.651939 79.685) (xy 109.851898 79.645226) (xy 110.040256 79.567205) (xy 110.112281 79.51908) (xy 110.556651 79.96345)
+        (xy 110.41075 79.965) (xy 110.252 80.12375) (xy 110.252 81.173) (xy 110.272 81.173) (xy 110.272 81.427)
+        (xy 110.252 81.427) (xy 110.252 82.47625) (xy 110.41075 82.635) (xy 110.7 82.638072) (xy 110.778002 82.63039)
+        (xy 110.778001 85.790199) (xy 109.928201 86.64) (xy 109.805501 86.64) (xy 109.751185 86.573815) (xy 109.654494 86.494463)
+        (xy 109.54418 86.435498) (xy 109.424482 86.399188) (xy 109.3 86.386928) (xy 108.3 86.386928) (xy 108.175518 86.399188)
+        (xy 108.05582 86.435498) (xy 107.945506 86.494463) (xy 107.848815 86.573815) (xy 107.8 86.633296) (xy 107.751185 86.573815)
+        (xy 107.654494 86.494463) (xy 107.54418 86.435498) (xy 107.424482 86.399188) (xy 107.3 86.386928) (xy 107.08575 86.39)
+        (xy 106.927 86.54875) (xy 106.927 87.523) (xy 106.947 87.523) (xy 106.947 87.777) (xy 106.927 87.777)
+        (xy 106.927 87.797) (xy 106.673 87.797) (xy 106.673 87.777) (xy 106.653 87.777) (xy 106.653 87.523)
+        (xy 106.673 87.523) (xy 106.673 86.54875) (xy 106.631059 86.506809) (xy 106.695226 86.351898) (xy 106.724093 86.206775)
+        (xy 107.461608 85.46926) (xy 107.493471 85.443111) (xy 107.597816 85.315966) (xy 107.633749 85.24874) (xy 107.910568 85.24874)
+        (xy 107.922828 85.373222) (xy 107.959138 85.49292) (xy 108.018103 85.603234) (xy 108.097455 85.699925) (xy 108.194146 85.779277)
+        (xy 108.30446 85.838242) (xy 108.424158 85.874552) (xy 108.54864 85.886812) (xy 108.71247 85.88374) (xy 108.87122 85.72499)
+        (xy 108.87122 84.97696) (xy 109.12522 84.97696) (xy 109.12522 85.72499) (xy 109.28397 85.88374) (xy 109.4478 85.886812)
+        (xy 109.572282 85.874552) (xy 109.69198 85.838242) (xy 109.802294 85.779277) (xy 109.898985 85.699925) (xy 109.978337 85.603234)
+        (xy 110.037302 85.49292) (xy 110.073612 85.373222) (xy 110.085872 85.24874) (xy 110.0828 85.13571) (xy 109.92405 84.97696)
+        (xy 109.12522 84.97696) (xy 108.87122 84.97696) (xy 108.07239 84.97696) (xy 107.91364 85.13571) (xy 107.910568 85.24874)
+        (xy 107.633749 85.24874) (xy 107.675352 85.170907) (xy 107.723098 85.013509) (xy 107.73518 84.890839) (xy 107.73518 84.889182)
+        (xy 107.739039 84.850001) (xy 107.73518 84.81082) (xy 107.73518 84.803937) (xy 107.800945 84.749965) (xy 107.880297 84.653274)
+        (xy 107.922935 84.573505) (xy 108.07239 84.72296) (xy 108.87122 84.72296) (xy 108.87122 84.70296) (xy 109.12522 84.70296)
+        (xy 109.12522 84.72296) (xy 109.92405 84.72296) (xy 110.0828 84.56421) (xy 110.085872 84.45118) (xy 110.073612 84.326698)
+        (xy 110.037302 84.207) (xy 109.978337 84.096686) (xy 109.898985 83.999995) (xy 109.802294 83.920643) (xy 109.763674 83.9)
+        (xy 109.802294 83.879357) (xy 109.898985 83.800005) (xy 109.978337 83.703314) (xy 110.037302 83.593) (xy 110.073612 83.473302)
+        (xy 110.085872 83.34882) (xy 110.085872 82.55126) (xy 110.073612 82.426778) (xy 110.037302 82.30708) (xy 109.998 82.233552)
+        (xy 109.998 81.427) (xy 109.978 81.427) (xy 109.978 81.173) (xy 109.998 81.173) (xy 109.998 80.12375)
+        (xy 109.83925 79.965) (xy 109.55 79.961928) (xy 109.425518 79.974188) (xy 109.30582 80.010498) (xy 109.195506 80.069463)
+        (xy 109.098815 80.148815) (xy 109.033342 80.228594) (xy 109.027962 80.222038) (xy 108.893387 80.111595) (xy 108.739851 80.029528)
+        (xy 108.649592 80.002149) (xy 108.638799 79.988997) (xy 108.615001 79.959999) (xy 108.586003 79.936202) (xy 108.285001 79.6352)
+        (xy 108.285001 75.684802) (xy 108.665 76.064802) (xy 108.665 76.126939) (xy 108.704774 76.326898) (xy 108.782795 76.515256)
+        (xy 108.896063 76.684774) (xy 109.040226 76.828937) (xy 109.209744 76.942205) (xy 109.398102 77.020226) (xy 109.598061 77.06)
+        (xy 109.801939 77.06) (xy 110.001898 77.020226) (xy 110.190256 76.942205) (xy 110.359774 76.828937) (xy 110.503937 76.684774)
+        (xy 110.617205 76.515256) (xy 110.695226 76.326898) (xy 110.735 76.126939) (xy 110.735 75.923061) (xy 110.695226 75.723102)
+        (xy 110.617205 75.534744) (xy 110.503937 75.365226) (xy 110.359774 75.221063) (xy 110.190256 75.107795) (xy 110.001898 75.029774)
+        (xy 109.801939 74.99) (xy 109.739802 74.99) (xy 109.503106 74.753304) (xy 109.590256 74.717205) (xy 109.759774 74.603937)
+        (xy 109.903937 74.459774) (xy 110.017205 74.290256) (xy 110.095226 74.101898) (xy 110.135 73.901939) (xy 110.135 73.698061)
+        (xy 110.095226 73.498102) (xy 110.017205 73.309744) (xy 109.903937 73.140226) (xy 109.759774 72.996063) (xy 109.590256 72.882795)
+        (xy 109.41 72.80813) (xy 109.41 72.624213) (xy 109.936015 72.098199) (xy 109.965012 72.074402) (xy 110.010478 72.019002)
+        (xy 110.059985 71.958678) (xy 110.130557 71.826648) (xy 110.139123 71.79841) (xy 110.174014 71.683387) (xy 110.185011 71.571734)
+        (xy 110.185011 71.571725) (xy 110.188687 71.534402) (xy 110.185011 71.497079) (xy 110.185011 70.114036) (xy 110.188688 70.076703)
+        (xy 110.174014 69.927717) (xy 110.130557 69.784456) (xy 110.127893 69.779472)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 102.493465 62.145044) (xy 102.504774 62.201898) (xy 102.582795 62.390256) (xy 102.696063 62.559774) (xy 102.840226 62.703937)
+        (xy 103.009744 62.817205) (xy 103.198102 62.895226) (xy 103.254957 62.906535) (xy 107.943812 67.595391) (xy 107.316246 67.595391)
+        (xy 107.278923 67.591715) (xy 107.2416 67.595391) (xy 107.241591 67.595391) (xy 107.129938 67.606388) (xy 106.986677 67.649845)
+        (xy 106.854647 67.720417) (xy 106.816288 67.751898) (xy 106.738923 67.81539) (xy 106.715125 67.844388) (xy 103.693993 70.865521)
+        (xy 103.664989 70.889324) (xy 103.619917 70.944245) (xy 103.570016 71.005049) (xy 103.506714 71.123478) (xy 103.499444 71.137079)
+        (xy 103.455987 71.28034) (xy 103.44499 71.391993) (xy 103.44499 71.392003) (xy 103.441314 71.429325) (xy 103.44499 71.466648)
+        (xy 103.444991 75.250207) (xy 102.875 75.820199) (xy 102.875 74.09532) (xy 102.89418 74.089502) (xy 103.004494 74.030537)
+        (xy 103.101185 73.951185) (xy 103.180537 73.854494) (xy 103.239502 73.74418) (xy 103.275812 73.624482) (xy 103.288072 73.5)
+        (xy 103.288072 72.8) (xy 103.275812 72.675518) (xy 103.239502 72.55582) (xy 103.180537 72.445506) (xy 103.101185 72.348815)
+        (xy 103.004494 72.269463) (xy 102.89418 72.210498) (xy 102.859573 72.2) (xy 102.89418 72.189502) (xy 103.004494 72.130537)
+        (xy 103.101185 72.051185) (xy 103.180537 71.954494) (xy 103.239502 71.84418) (xy 103.275812 71.724482) (xy 103.288072 71.6)
+        (xy 103.288072 70.9) (xy 103.275812 70.775518) (xy 103.239502 70.65582) (xy 103.180537 70.545506) (xy 103.101185 70.448815)
+        (xy 103.004494 70.369463) (xy 102.939877 70.334924) (xy 103.289802 69.985) (xy 103.351939 69.985) (xy 103.551898 69.945226)
+        (xy 103.740256 69.867205) (xy 103.909774 69.753937) (xy 104.053937 69.609774) (xy 104.167205 69.440256) (xy 104.245226 69.251898)
+        (xy 104.285 69.051939) (xy 104.285 68.848061) (xy 104.245226 68.648102) (xy 104.167205 68.459744) (xy 104.053937 68.290226)
+        (xy 103.982755 68.219044) (xy 103.9918 68.21) (xy 104.146289 68.21) (xy 104.190226 68.253937) (xy 104.359744 68.367205)
+        (xy 104.548102 68.445226) (xy 104.748061 68.485) (xy 104.951939 68.485) (xy 105.151898 68.445226) (xy 105.340256 68.367205)
+        (xy 105.509774 68.253937) (xy 105.653937 68.109774) (xy 105.767205 67.940256) (xy 105.845226 67.751898) (xy 105.885 67.551939)
+        (xy 105.885 67.348061) (xy 105.845226 67.148102) (xy 105.767205 66.959744) (xy 105.653937 66.790226) (xy 105.509774 66.646063)
+        (xy 105.340256 66.532795) (xy 105.151898 66.454774) (xy 104.951939 66.415) (xy 104.748061 66.415) (xy 104.548102 66.454774)
+        (xy 104.359744 66.532795) (xy 104.190226 66.646063) (xy 104.146289 66.69) (xy 103.71432 66.69) (xy 103.676998 66.686324)
+        (xy 103.639675 66.69) (xy 103.639665 66.69) (xy 103.528012 66.700997) (xy 103.384751 66.744454) (xy 103.252721 66.815026)
+        (xy 103.169081 66.883668) (xy 103.136997 66.909999) (xy 103.113199 66.938997) (xy 100.695 69.357197) (xy 100.695 60.346578)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.852 14.273) (xy 110.872 14.273) (xy 110.872 14.527) (xy 110.852 14.527) (xy 110.852 15.57625)
+        (xy 111.01075 15.735) (xy 111.3 15.738072) (xy 111.305 15.73758) (xy 111.305 21.763218) (xy 111.03575 21.765)
+        (xy 110.877 21.92375) (xy 110.877 23.773) (xy 110.897 23.773) (xy 110.897 24.027) (xy 110.877 24.027)
+        (xy 110.877 25.87625) (xy 111.03575 26.035) (xy 111.305 26.036782) (xy 111.305001 65.64129) (xy 111.259774 65.596063)
+        (xy 111.090256 65.482795) (xy 110.901898 65.404774) (xy 110.701939 65.365) (xy 110.639802 65.365) (xy 110.163804 64.889002)
+        (xy 110.140001 64.859999) (xy 110.024276 64.765026) (xy 110.008271 64.756471) (xy 106.648619 61.396819) (xy 106.823903 61.469425)
+        (xy 107.023862 61.509199) (xy 107.22774 61.509199) (xy 107.427699 61.469425) (xy 107.616057 61.391404) (xy 107.785575 61.278136)
+        (xy 107.929738 61.133973) (xy 108.043006 60.964455) (xy 108.121027 60.776097) (xy 108.160801 60.576138) (xy 108.160801 60.514001)
+        (xy 108.261004 60.413798) (xy 108.290001 60.390001) (xy 108.384974 60.274276) (xy 108.455546 60.142247) (xy 108.499003 59.998986)
+        (xy 108.51 59.887333) (xy 108.51 59.887325) (xy 108.513676 59.85) (xy 108.51 59.812675) (xy 108.51 58.437323)
+        (xy 108.513676 58.4) (xy 108.51 58.362677) (xy 108.51 58.362667) (xy 108.499003 58.251014) (xy 108.455546 58.107753)
+        (xy 108.384974 57.975724) (xy 108.290001 57.859999) (xy 108.261002 57.8362) (xy 107.86 57.435199) (xy 107.86 26.417105)
+        (xy 109.363158 24.913948) (xy 109.361928 25.4) (xy 109.370822 25.490309) (xy 109.298102 25.504774) (xy 109.109744 25.582795)
+        (xy 108.940226 25.696063) (xy 108.796063 25.840226) (xy 108.682795 26.009744) (xy 108.604774 26.198102) (xy 108.565 26.398061)
+        (xy 108.565 26.601939) (xy 108.604774 26.801898) (xy 108.682795 26.990256) (xy 108.796063 27.159774) (xy 108.840001 27.203712)
+        (xy 108.84 61.146289) (xy 108.796063 61.190226) (xy 108.682795 61.359744) (xy 108.604774 61.548102) (xy 108.565 61.748061)
+        (xy 108.565 61.951939) (xy 108.604774 62.151898) (xy 108.682795 62.340256) (xy 108.796063 62.509774) (xy 108.940226 62.653937)
+        (xy 109.109744 62.767205) (xy 109.298102 62.845226) (xy 109.498061 62.885) (xy 109.701939 62.885) (xy 109.901898 62.845226)
+        (xy 110.090256 62.767205) (xy 110.259774 62.653937) (xy 110.403937 62.509774) (xy 110.517205 62.340256) (xy 110.595226 62.151898)
+        (xy 110.635 61.951939) (xy 110.635 61.748061) (xy 110.595226 61.548102) (xy 110.517205 61.359744) (xy 110.403937 61.190226)
+        (xy 110.36 61.146289) (xy 110.36 27.203711) (xy 110.403937 27.159774) (xy 110.517205 26.990256) (xy 110.595226 26.801898)
+        (xy 110.635 26.601939) (xy 110.635 26.398061) (xy 110.595226 26.198102) (xy 110.517205 26.009744) (xy 110.50611 25.99314)
+        (xy 110.623 25.87625) (xy 110.623 24.027) (xy 110.603 24.027) (xy 110.603 23.773) (xy 110.623 23.773)
+        (xy 110.623 21.92375) (xy 110.46425 21.765) (xy 110.26 21.763648) (xy 110.26 20.064802) (xy 110.261003 20.063799)
+        (xy 110.290001 20.040001) (xy 110.384974 19.924276) (xy 110.455546 19.792247) (xy 110.477197 19.720871) (xy 110.501185 19.701185)
+        (xy 110.580537 19.604494) (xy 110.639502 19.49418) (xy 110.675812 19.374482) (xy 110.688072 19.25) (xy 110.688072 17.95)
+        (xy 110.68164 17.884689) (xy 110.695226 17.851889) (xy 110.735 17.65193) (xy 110.735 17.448052) (xy 110.695226 17.248093)
+        (xy 110.617205 17.059735) (xy 110.503937 16.890217) (xy 110.46 16.84628) (xy 110.46 15.71425) (xy 110.598 15.57625)
+        (xy 110.598 14.527) (xy 110.578 14.527) (xy 110.578 14.273) (xy 110.598 14.273) (xy 110.598 14.253)
+        (xy 110.852 14.253)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 104.165 26.905487) (xy 104.164999 60.090198) (xy 102.46 58.385199) (xy 102.46 26.764801) (xy 103.161004 26.063798)
+        (xy 103.190001 26.040001) (xy 103.230779 25.990313) (xy 103.239365 25.979851)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.874188 17.274482) (xy 107.885547 17.311928) (xy 107.55 17.311928) (xy 107.425518 17.324188) (xy 107.30582 17.360498)
+        (xy 107.195506 17.419463) (xy 107.098815 17.498815) (xy 107.019463 17.595506) (xy 106.960498 17.70582) (xy 106.924188 17.825518)
+        (xy 106.911928 17.95) (xy 106.911928 19.25) (xy 106.924188 19.374482) (xy 106.960498 19.49418) (xy 107.019463 19.604494)
+        (xy 107.098815 19.701185) (xy 107.195506 19.780537) (xy 107.30582 19.839502) (xy 107.34 19.849871) (xy 107.340001 19.991538)
+        (xy 107.286595 20.056613) (xy 107.204528 20.210149) (xy 107.153992 20.376745) (xy 107.136928 20.549999) (xy 107.136928 23.450001)
+        (xy 107.153992 23.623255) (xy 107.204528 23.789851) (xy 107.286595 23.943387) (xy 107.397038 24.077962) (xy 107.531613 24.188405)
+        (xy 107.685149 24.270472) (xy 107.817026 24.310476) (xy 106.99969 25.127813) (xy 106.992205 25.109744) (xy 106.878937 24.940226)
+        (xy 106.734774 24.796063) (xy 106.565256 24.682795) (xy 106.376898 24.604774) (xy 106.176939 24.565) (xy 105.973061 24.565)
+        (xy 105.773102 24.604774) (xy 105.584744 24.682795) (xy 105.415226 24.796063) (xy 105.271063 24.940226) (xy 105.157795 25.109744)
+        (xy 105.079774 25.298102) (xy 105.04 25.498061) (xy 105.04 25.630883) (xy 104.441271 25.032155) (xy 104.495226 24.901898)
+        (xy 104.535 24.701939) (xy 104.535 24.498061) (xy 104.502907 24.336717) (xy 104.625 24.338072) (xy 104.749482 24.325812)
+        (xy 104.86918 24.289502) (xy 104.979494 24.230537) (xy 105.076185 24.151185) (xy 105.155537 24.054494) (xy 105.214502 23.94418)
+        (xy 105.250812 23.824482) (xy 105.263072 23.7) (xy 105.26 22.28575) (xy 105.10125 22.127) (xy 104.1895 22.127)
+        (xy 104.1895 22.147) (xy 103.9355 22.147) (xy 103.9355 22.127) (xy 103.9155 22.127) (xy 103.9155 21.873)
+        (xy 103.9355 21.873) (xy 103.9355 19.82375) (xy 104.1895 19.82375) (xy 104.1895 21.873) (xy 105.10125 21.873)
+        (xy 105.26 21.71425) (xy 105.263072 20.3) (xy 105.250812 20.175518) (xy 105.214502 20.05582) (xy 105.155537 19.945506)
+        (xy 105.076185 19.848815) (xy 104.979494 19.769463) (xy 104.86918 19.710498) (xy 104.749482 19.674188) (xy 104.625 19.661928)
+        (xy 104.34825 19.665) (xy 104.1895 19.82375) (xy 103.9355 19.82375) (xy 103.92539 19.81364) (xy 103.936672 19.69909)
+        (xy 103.936672 18.785222) (xy 104.29682 18.785222) (xy 104.421302 18.772962) (xy 104.541 18.736652) (xy 104.651314 18.677687)
+        (xy 104.748005 18.598335) (xy 104.827357 18.501644) (xy 104.886322 18.39133) (xy 104.922632 18.271632) (xy 104.934892 18.14715)
+        (xy 104.934892 17.44865) (xy 104.922632 17.324168) (xy 104.903167 17.26) (xy 107.872762 17.26)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.252829 10.723123) (xy 110.496026 10.796549) (xy 110.720331 10.915814) (xy 110.776872 10.961928) (xy 110.399999 10.961928)
+        (xy 110.226745 10.978992) (xy 110.060149 11.029528) (xy 109.906613 11.111595) (xy 109.772038 11.222038) (xy 109.7 11.309816)
+        (xy 109.627962 11.222038) (xy 109.493387 11.111595) (xy 109.339851 11.029528) (xy 109.173255 10.978992) (xy 109.000001 10.961928)
+        (xy 108.349999 10.961928) (xy 108.176745 10.978992) (xy 108.010149 11.029528) (xy 107.856613 11.111595) (xy 107.722038 11.222038)
+        (xy 107.611595 11.356613) (xy 107.529528 11.510149) (xy 107.478992 11.676745) (xy 107.461928 11.849999) (xy 107.461928 12.750001)
+        (xy 107.478992 12.923255) (xy 107.518613 13.053868) (xy 107.327009 13.053868) (xy 107.12705 13.093642) (xy 106.938692 13.171663)
+        (xy 106.769174 13.284931) (xy 106.625011 13.429094) (xy 106.511743 13.598612) (xy 106.433722 13.78697) (xy 106.393948 13.986929)
+        (xy 106.393948 14.190807) (xy 106.433722 14.390766) (xy 106.511743 14.579124) (xy 106.625011 14.748642) (xy 106.769174 14.892805)
+        (xy 106.938692 15.006073) (xy 107.12705 15.084094) (xy 107.327009 15.123868) (xy 107.509512 15.123868) (xy 107.529528 15.189851)
+        (xy 107.611595 15.343387) (xy 107.722038 15.477962) (xy 107.856613 15.588405) (xy 107.907526 15.615618) (xy 107.874188 15.725518)
+        (xy 107.872762 15.74) (xy 104.539193 15.74) (xy 104.541 15.739452) (xy 104.651314 15.680487) (xy 104.748005 15.601135)
+        (xy 104.827357 15.504444) (xy 104.886322 15.39413) (xy 104.922632 15.274432) (xy 104.934892 15.14995) (xy 104.934892 14.45145)
+        (xy 104.922632 14.326968) (xy 104.886322 14.20727) (xy 104.827357 14.096956) (xy 104.78997 14.0514) (xy 104.827357 14.005844)
+        (xy 104.886322 13.89553) (xy 104.922632 13.775832) (xy 104.934892 13.65135) (xy 104.93182 13.58785) (xy 104.77307 13.4291)
+        (xy 103.67452 13.4291) (xy 103.67452 13.4491) (xy 103.42052 13.4491) (xy 103.42052 13.4291) (xy 103.40052 13.4291)
+        (xy 103.40052 13.1751) (xy 103.42052 13.1751) (xy 103.42052 13.1551) (xy 103.67452 13.1551) (xy 103.67452 13.1751)
+        (xy 104.77307 13.1751) (xy 104.93182 13.01635) (xy 104.934892 12.95285) (xy 104.922632 12.828368) (xy 104.886322 12.70867)
+        (xy 104.827357 12.598356) (xy 104.748005 12.501665) (xy 104.651314 12.422313) (xy 104.541 12.363348) (xy 104.421302 12.327038)
+        (xy 104.29682 12.314778) (xy 103.936672 12.317165) (xy 103.936672 11.40091) (xy 103.924412 11.276428) (xy 103.888102 11.15673)
+        (xy 103.829137 11.046416) (xy 103.749785 10.949725) (xy 103.653094 10.870373) (xy 103.54278 10.811408) (xy 103.423082 10.775098)
+        (xy 103.2986 10.762838) (xy 102.50104 10.762838) (xy 102.376558 10.775098) (xy 102.25686 10.811408) (xy 102.146546 10.870373)
+        (xy 102.049855 10.949725) (xy 101.970503 11.046416) (xy 101.911538 11.15673) (xy 101.875228 11.276428) (xy 101.862968 11.40091)
+        (xy 101.862968 12.39913) (xy 101.875228 12.523612) (xy 101.911538 12.64331) (xy 101.970503 12.753624) (xy 102.049855 12.850315)
+        (xy 102.146546 12.929667) (xy 102.161637 12.937733) (xy 102.160148 12.95285) (xy 102.16322 13.01635) (xy 102.182954 13.036084)
+        (xy 102.11636 13.0085) (xy 101.906822 12.96682) (xy 101.693178 12.96682) (xy 101.48364 13.0085) (xy 101.286259 13.090258)
+        (xy 101.10862 13.208952) (xy 100.957552 13.36002) (xy 100.838858 13.537659) (xy 100.7571 13.73504) (xy 100.71542 13.944578)
+        (xy 100.71542 14.158222) (xy 100.7571 14.36776) (xy 100.838858 14.565141) (xy 100.957552 14.74278) (xy 101.10862 14.893848)
+        (xy 101.286259 15.012542) (xy 101.48364 15.0943) (xy 101.693178 15.13598) (xy 101.906822 15.13598) (xy 102.11636 15.0943)
+        (xy 102.160148 15.076162) (xy 102.160148 15.14995) (xy 102.172408 15.274432) (xy 102.208718 15.39413) (xy 102.267683 15.504444)
+        (xy 102.347035 15.601135) (xy 102.443726 15.680487) (xy 102.55404 15.739452) (xy 102.644779 15.766978) (xy 102.582795 15.859744)
+        (xy 102.504774 16.048102) (xy 102.475453 16.19551) (xy 102.313741 16.087458) (xy 102.11636 16.0057) (xy 101.906822 15.96402)
+        (xy 101.693178 15.96402) (xy 101.48364 16.0057) (xy 101.286259 16.087458) (xy 101.10862 16.206152) (xy 100.957552 16.35722)
+        (xy 100.838858 16.534859) (xy 100.7571 16.73224) (xy 100.71542 16.941778) (xy 100.71542 17.155422) (xy 100.7571 17.36496)
+        (xy 100.838858 17.562341) (xy 100.957552 17.73998) (xy 101.10862 17.891048) (xy 101.210813 17.959331) (xy 101.209999 17.959999)
+        (xy 101.154871 18.027174) (xy 101.123829 18.064997) (xy 101.1015 18.062798) (xy 100.695 18.062798) (xy 100.695 13.037202)
+        (xy 101.1015 13.037202) (xy 101.225982 13.024942) (xy 101.34568 12.988632) (xy 101.455994 12.929667) (xy 101.552685 12.850315)
+        (xy 101.632037 12.753624) (xy 101.691002 12.64331) (xy 101.727312 12.523612) (xy 101.739572 12.39913) (xy 101.739572 11.40091)
+        (xy 101.727312 11.276428) (xy 101.691002 11.15673) (xy 101.632037 11.046416) (xy 101.552685 10.949725) (xy 101.455994 10.870373)
+        (xy 101.410491 10.846051) (xy 101.49558 10.800043) (xy 101.738264 10.72492) (xy 102.022929 10.695) (xy 109.966008 10.695)
+      )
+    )
+  )
+  (zone (net 2) (net_name GND) (layer F.Cu) (tstamp 5DD408B1) (hatch edge 0.508)
+    (connect_pads (clearance 0.508))
+    (min_thickness 0.254)
+    (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
+    (polygon
+      (pts
+        (xy 99.2 9.3) (xy 113.2 9.45) (xy 113.15 98.55) (xy 98.9 98.55)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 101.027 95.973) (xy 101.047 95.973) (xy 101.047 96.227) (xy 101.027 96.227) (xy 101.027 97.27625)
+        (xy 101.065 97.31425) (xy 101.065 97.886715) (xy 100.982795 98.009744) (xy 100.904774 98.198102) (xy 100.865 98.398061)
+        (xy 100.865 98.423) (xy 100.695 98.423) (xy 100.695 97.35425) (xy 100.773 97.27625) (xy 100.773 96.227)
+        (xy 100.753 96.227) (xy 100.753 95.973) (xy 100.773 95.973) (xy 100.773 95.953) (xy 101.027 95.953)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.661928 93.275) (xy 107.674188 93.399482) (xy 107.710498 93.51918) (xy 107.769463 93.629494) (xy 107.848815 93.726185)
+        (xy 107.945506 93.805537) (xy 108.05582 93.864502) (xy 108.175518 93.900812) (xy 108.3 93.913072) (xy 108.639304 93.913072)
+        (xy 108.64 94.02675) (xy 108.79875 94.1855) (xy 109.823 94.1855) (xy 109.823 94.1655) (xy 110.077 94.1655)
+        (xy 110.077 94.1855) (xy 111.10125 94.1855) (xy 111.26 94.02675) (xy 111.260699 93.912508) (xy 111.3 93.913072)
+        (xy 111.305001 93.912579) (xy 111.305001 98.423) (xy 110.917621 98.423) (xy 111.002962 98.352962) (xy 111.113405 98.218387)
+        (xy 111.195472 98.064851) (xy 111.246008 97.898255) (xy 111.263072 97.725001) (xy 111.263072 96.649999) (xy 111.246008 96.476745)
+        (xy 111.195472 96.310149) (xy 111.113405 96.156613) (xy 111.002962 96.022038) (xy 110.868387 95.911595) (xy 110.714851 95.829528)
+        (xy 110.548255 95.778992) (xy 110.375001 95.761928) (xy 109.524999 95.761928) (xy 109.351745 95.778992) (xy 109.185149 95.829528)
+        (xy 109.031613 95.911595) (xy 108.897038 96.022038) (xy 108.786595 96.156613) (xy 108.704528 96.310149) (xy 108.653992 96.476745)
+        (xy 108.636928 96.649999) (xy 108.636928 97.319704) (xy 108.313072 97.64356) (xy 108.313072 96.674999) (xy 108.296008 96.501745)
+        (xy 108.245472 96.335149) (xy 108.163405 96.181613) (xy 108.052962 96.047038) (xy 107.918387 95.936595) (xy 107.764851 95.854528)
+        (xy 107.598255 95.803992) (xy 107.425001 95.786928) (xy 107.035 95.786928) (xy 107.035 95.748061) (xy 106.995226 95.548102)
+        (xy 106.917205 95.359744) (xy 106.803937 95.190226) (xy 106.713711 95.1) (xy 108.636928 95.1) (xy 108.649188 95.224482)
+        (xy 108.685498 95.34418) (xy 108.744463 95.454494) (xy 108.823815 95.551185) (xy 108.920506 95.630537) (xy 109.03082 95.689502)
+        (xy 109.150518 95.725812) (xy 109.275 95.738072) (xy 109.66425 95.735) (xy 109.823 95.57625) (xy 109.823 94.4395)
+        (xy 110.077 94.4395) (xy 110.077 95.57625) (xy 110.23575 95.735) (xy 110.625 95.738072) (xy 110.749482 95.725812)
+        (xy 110.86918 95.689502) (xy 110.979494 95.630537) (xy 111.076185 95.551185) (xy 111.155537 95.454494) (xy 111.214502 95.34418)
+        (xy 111.250812 95.224482) (xy 111.263072 95.1) (xy 111.26 94.59825) (xy 111.10125 94.4395) (xy 110.077 94.4395)
+        (xy 109.823 94.4395) (xy 108.79875 94.4395) (xy 108.64 94.59825) (xy 108.636928 95.1) (xy 106.713711 95.1)
+        (xy 106.659774 95.046063) (xy 106.490256 94.932795) (xy 106.301898 94.854774) (xy 106.101939 94.815) (xy 105.898061 94.815)
+        (xy 105.698102 94.854774) (xy 105.509744 94.932795) (xy 105.340226 95.046063) (xy 105.196063 95.190226) (xy 105.082795 95.359744)
+        (xy 105.004774 95.548102) (xy 104.965 95.748061) (xy 104.965 95.786928) (xy 104.574999 95.786928) (xy 104.401745 95.803992)
+        (xy 104.235149 95.854528) (xy 104.163072 95.893054) (xy 104.163072 95.649999) (xy 104.146008 95.476745) (xy 104.095472 95.310149)
+        (xy 104.013405 95.156613) (xy 103.902962 95.022038) (xy 103.791428 94.930504) (xy 103.84418 94.914502) (xy 103.954494 94.855537)
+        (xy 104.051185 94.776185) (xy 104.130537 94.679494) (xy 104.189502 94.56918) (xy 104.225812 94.449482) (xy 104.238072 94.325)
+        (xy 104.237103 94.217972) (xy 104.26851 94.249379) (xy 104.294656 94.281238) (xy 104.326515 94.307384) (xy 104.326517 94.307386)
+        (xy 104.421801 94.385583) (xy 104.56686 94.463119) (xy 104.724258 94.510865) (xy 104.887947 94.526987) (xy 104.928965 94.522947)
+        (xy 105.095949 94.522947) (xy 105.218978 94.605152) (xy 105.407336 94.683173) (xy 105.607295 94.722947) (xy 105.811173 94.722947)
+        (xy 106.011132 94.683173) (xy 106.19949 94.605152) (xy 106.369008 94.491884) (xy 106.513171 94.347721) (xy 106.626439 94.178203)
+        (xy 106.70446 93.989845) (xy 106.744234 93.789886) (xy 106.744234 93.631252) (xy 106.803888 93.591393) (xy 106.948051 93.44723)
+        (xy 107.061319 93.277712) (xy 107.13934 93.089354) (xy 107.179114 92.889395) (xy 107.179114 92.685517) (xy 107.164704 92.613072)
+        (xy 107.425001 92.613072) (xy 107.598255 92.596008) (xy 107.661928 92.576693)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 103.227 93.573) (xy 103.247 93.573) (xy 103.247 93.827) (xy 103.227 93.827) (xy 103.227 93.847)
+        (xy 103.034999 93.847) (xy 103.034999 93.553) (xy 103.227 93.553)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.927 92.523) (xy 110.947 92.523) (xy 110.947 92.777) (xy 110.927 92.777) (xy 110.927 92.797)
+        (xy 110.673 92.797) (xy 110.673 92.777) (xy 110.653 92.777) (xy 110.653 92.523) (xy 110.673 92.523)
+        (xy 110.673 92.503) (xy 110.927 92.503)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.085498 91.02418) (xy 110.144463 91.134494) (xy 110.215 91.220444) (xy 110.215 91.351939) (xy 110.223459 91.394466)
+        (xy 110.175518 91.399188) (xy 110.05582 91.435498) (xy 109.945506 91.494463) (xy 109.86 91.564636) (xy 109.86 91.244468)
+        (xy 109.876185 91.231185) (xy 109.955537 91.134494) (xy 110.014502 91.02418) (xy 110.05 90.907159)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 104.782795 86.540256) (xy 104.896063 86.709774) (xy 105.040226 86.853937) (xy 105.209744 86.967205) (xy 105.398102 87.045226)
+        (xy 105.543224 87.074092) (xy 105.665 87.195869) (xy 105.665 87.399428) (xy 104.574999 87.399428) (xy 104.401745 87.416492)
+        (xy 104.235149 87.467028) (xy 104.081613 87.549095) (xy 103.947038 87.659538) (xy 103.836595 87.794113) (xy 103.754528 87.947649)
+        (xy 103.717656 88.069202) (xy 103.634639 88.024828) (xy 103.552655 87.999959) (xy 103.562352 87.9015) (xy 103.562352 86.70262)
+        (xy 103.550092 86.578138) (xy 103.524456 86.493626) (xy 103.559744 86.517205) (xy 103.748102 86.595226) (xy 103.948061 86.635)
+        (xy 104.151939 86.635) (xy 104.351898 86.595226) (xy 104.540256 86.517205) (xy 104.709774 86.403937) (xy 104.72148 86.392231)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 101.88996 85.989762) (xy 101.88996 86.16341) (xy 101.827 86.22637) (xy 101.827 86.381994) (xy 101.786138 86.45844)
+        (xy 101.749828 86.578138) (xy 101.737568 86.70262) (xy 101.737568 87.44906) (xy 101.662432 87.44906) (xy 101.662432 86.70262)
+        (xy 101.650172 86.578138) (xy 101.613862 86.45844) (xy 101.573 86.381994) (xy 101.573 86.22637) (xy 101.41425 86.06762)
+        (xy 101.2973 86.077596) (xy 101.225181 86.099965) (xy 101.148842 86.076808) (xy 101.02436 86.064548) (xy 100.695 86.064548)
+        (xy 100.695 85.922806) (xy 100.849999 85.938072) (xy 101.500001 85.938072) (xy 101.673255 85.921008) (xy 101.786772 85.886573)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 109.127 86.373) (xy 109.147 86.373) (xy 109.147 86.627) (xy 109.127 86.627) (xy 109.127 86.647)
+        (xy 108.873 86.647) (xy 108.873 86.627) (xy 108.853 86.627) (xy 108.853 86.373) (xy 108.873 86.373)
+        (xy 108.873 86.353) (xy 109.127 86.353)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 104.251006 70.662218) (xy 104.235149 70.667028) (xy 104.081613 70.749095) (xy 103.947038 70.859538) (xy 103.836595 70.994113)
+        (xy 103.754528 71.147649) (xy 103.703992 71.314245) (xy 103.686928 71.487499) (xy 103.686928 72.512501) (xy 103.703992 72.685755)
+        (xy 103.754528 72.852351) (xy 103.836595 73.005887) (xy 103.947038 73.140462) (xy 104.034816 73.2125) (xy 103.947038 73.284538)
+        (xy 103.836595 73.419113) (xy 103.754528 73.572649) (xy 103.703992 73.739245) (xy 103.686928 73.912499) (xy 103.686928 74.937501)
+        (xy 103.703992 75.110755) (xy 103.754528 75.277351) (xy 103.836595 75.430887) (xy 103.887926 75.493433) (xy 103.824482 75.474188)
+        (xy 103.7 75.461928) (xy 103.41075 75.465) (xy 103.252 75.62375) (xy 103.252 76.673) (xy 104.17625 76.673)
+        (xy 104.335 76.51425) (xy 104.338072 76.1) (xy 104.325812 75.975518) (xy 104.289502 75.85582) (xy 104.237597 75.758715)
+        (xy 104.401745 75.808508) (xy 104.574999 75.825572) (xy 105.24 75.825572) (xy 105.24 76.692677) (xy 105.236324 76.73)
+        (xy 105.24 76.767322) (xy 105.24 76.767332) (xy 105.250997 76.878985) (xy 105.288014 77.001015) (xy 105.294454 77.022246)
+        (xy 105.365026 77.154276) (xy 105.40337 77.200998) (xy 105.459999 77.270001) (xy 105.489003 77.293804) (xy 106.120744 77.925545)
+        (xy 105.996063 78.050226) (xy 105.882795 78.219744) (xy 105.804774 78.408102) (xy 105.765 78.608061) (xy 105.765 78.811939)
+        (xy 105.802294 78.999428) (xy 105.075 78.999428) (xy 105.075 78.828061) (xy 105.035226 78.628102) (xy 104.957205 78.439744)
+        (xy 104.843937 78.270226) (xy 104.699774 78.126063) (xy 104.530256 78.012795) (xy 104.341898 77.934774) (xy 104.189526 77.904466)
+        (xy 104.230537 77.854494) (xy 104.289502 77.74418) (xy 104.325812 77.624482) (xy 104.338072 77.5) (xy 104.335 77.08575)
+        (xy 104.17625 76.927) (xy 103.252 76.927) (xy 103.252 77.97625) (xy 103.393166 78.117416) (xy 103.380226 78.126063)
+        (xy 103.236063 78.270226) (xy 103.122795 78.439744) (xy 103.044774 78.628102) (xy 103.005 78.828061) (xy 103.005 78.892646)
+        (xy 102.945026 78.965724) (xy 102.874454 79.097754) (xy 102.852842 79.169002) (xy 102.830998 79.241014) (xy 102.824425 79.307754)
+        (xy 102.816324 79.39) (xy 102.820001 79.427332) (xy 102.820001 79.606288) (xy 102.776063 79.650226) (xy 102.719572 79.734771)
+        (xy 102.423803 79.439002) (xy 102.400001 79.409999) (xy 102.284276 79.315026) (xy 102.152247 79.244454) (xy 102.008986 79.200997)
+        (xy 101.897333 79.19) (xy 101.897322 79.19) (xy 101.884999 79.188786) (xy 101.884999 79.039802) (xy 101.9648 78.960001)
+        (xy 101.993799 78.931003) (xy 101.993803 78.930998) (xy 102.611002 78.3138) (xy 102.640001 78.290001) (xy 102.693794 78.224454)
+        (xy 102.734974 78.174277) (xy 102.755493 78.13589) (xy 102.83925 78.135) (xy 102.998 77.97625) (xy 102.998 76.927)
+        (xy 102.978 76.927) (xy 102.978 76.673) (xy 102.998 76.673) (xy 102.998 75.62375) (xy 102.86 75.48575)
+        (xy 102.86 75.287322) (xy 102.863676 75.249999) (xy 102.86 75.212676) (xy 102.86 75.212667) (xy 102.849003 75.101014)
+        (xy 102.805546 74.957753) (xy 102.734974 74.825724) (xy 102.709945 74.795226) (xy 102.663799 74.738996) (xy 102.663795 74.738992)
+        (xy 102.640001 74.709999) (xy 102.611009 74.686206) (xy 101.809802 73.885) (xy 101.827002 73.885) (xy 101.827002 73.726252)
+        (xy 101.98575 73.885) (xy 102.4 73.888072) (xy 102.524482 73.875812) (xy 102.64418 73.839502) (xy 102.754494 73.780537)
+        (xy 102.851185 73.701185) (xy 102.930537 73.604494) (xy 102.989502 73.49418) (xy 103.025812 73.374482) (xy 103.038072 73.25)
+        (xy 103.035 72.96075) (xy 102.87625 72.802) (xy 101.827 72.802) (xy 101.827 72.822) (xy 101.573 72.822)
+        (xy 101.573 72.802) (xy 101.553 72.802) (xy 101.553 72.548) (xy 101.573 72.548) (xy 101.573 72.528)
+        (xy 101.827 72.528) (xy 101.827 72.548) (xy 102.87625 72.548) (xy 103.035 72.38925) (xy 103.038072 72.1)
+        (xy 103.025812 71.975518) (xy 102.989502 71.85582) (xy 102.930537 71.745506) (xy 102.851185 71.648815) (xy 102.771406 71.583342)
+        (xy 102.777962 71.577962) (xy 102.888405 71.443387) (xy 102.970472 71.289851) (xy 103.021008 71.123255) (xy 103.038072 70.950001)
+        (xy 103.038072 70.299999) (xy 103.021008 70.126745) (xy 102.970472 69.960149) (xy 102.964208 69.94843) (xy 103.148061 69.985)
+        (xy 103.351939 69.985) (xy 103.536982 69.948193)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 109.365002 72.797435) (xy 109.201939 72.765) (xy 108.998061 72.765) (xy 108.798102 72.804774) (xy 108.609744 72.882795)
+        (xy 108.440226 72.996063) (xy 108.396289 73.04) (xy 108.135409 73.04) (xy 108.163405 73.005887) (xy 108.245472 72.852351)
+        (xy 108.273486 72.76) (xy 108.28568 72.76) (xy 108.323002 72.763676) (xy 108.360324 72.76) (xy 108.360335 72.76)
+        (xy 108.471988 72.749003) (xy 108.615249 72.705546) (xy 108.747278 72.634974) (xy 108.863003 72.540001) (xy 108.886805 72.510998)
+        (xy 109.365001 72.032802)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.238506 68.965) (xy 107.198061 68.965) (xy 106.998102 69.004774) (xy 106.809744 69.082795) (xy 106.640226 69.196063)
+        (xy 106.496063 69.340226) (xy 106.423551 69.448749) (xy 105.61 68.635199) (xy 105.61 68.153711) (xy 105.653937 68.109774)
+        (xy 105.767205 67.940256) (xy 105.845226 67.751898) (xy 105.875119 67.601613)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.252829 10.723123) (xy 110.496026 10.796549) (xy 110.720331 10.915814) (xy 110.776872 10.961928) (xy 110.399999 10.961928)
+        (xy 110.226745 10.978992) (xy 110.060149 11.029528) (xy 109.906613 11.111595) (xy 109.772038 11.222038) (xy 109.7 11.309816)
+        (xy 109.627962 11.222038) (xy 109.493387 11.111595) (xy 109.339851 11.029528) (xy 109.173255 10.978992) (xy 109.000001 10.961928)
+        (xy 108.349999 10.961928) (xy 108.176745 10.978992) (xy 108.010149 11.029528) (xy 107.856613 11.111595) (xy 107.722038 11.222038)
+        (xy 107.611595 11.356613) (xy 107.529528 11.510149) (xy 107.478992 11.676745) (xy 107.461928 11.849999) (xy 107.461928 12.750001)
+        (xy 107.478992 12.923255) (xy 107.48848 12.954534) (xy 107.389147 13.053868) (xy 107.327009 13.053868) (xy 107.12705 13.093642)
+        (xy 106.938692 13.171663) (xy 106.769174 13.284931) (xy 106.625011 13.429094) (xy 106.511743 13.598612) (xy 106.433722 13.78697)
+        (xy 106.393948 13.986929) (xy 106.393948 14.190807) (xy 106.397817 14.210259) (xy 106.309506 14.257463) (xy 106.212815 14.336815)
+        (xy 106.133463 14.433506) (xy 106.074498 14.54382) (xy 106.038188 14.663518) (xy 106.025928 14.788) (xy 106.029 15.26425)
+        (xy 106.18775 15.423) (xy 106.918 15.423) (xy 106.918 15.403) (xy 107.172 15.403) (xy 107.172 15.423)
+        (xy 107.90225 15.423) (xy 108.061 15.26425) (xy 108.063286 14.909801) (xy 108.088722 14.892805) (xy 108.232885 14.748642)
+        (xy 108.346153 14.579124) (xy 108.424174 14.390766) (xy 108.463948 14.190807) (xy 108.463948 14.128669) (xy 108.94 13.652618)
+        (xy 108.940001 16.846279) (xy 108.896063 16.890217) (xy 108.782795 17.059735) (xy 108.704774 17.248093) (xy 108.665 17.448052)
+        (xy 108.665 17.65193) (xy 108.704774 17.851889) (xy 108.782795 18.040247) (xy 108.896063 18.209765) (xy 109.040226 18.353928)
+        (xy 109.209744 18.467196) (xy 109.398102 18.545217) (xy 109.598061 18.584991) (xy 109.801939 18.584991) (xy 110.001898 18.545217)
+        (xy 110.095 18.506652) (xy 110.095 19.865574) (xy 110.022815 19.924815) (xy 109.943463 20.021506) (xy 109.884498 20.13182)
+        (xy 109.848188 20.251518) (xy 109.835928 20.376) (xy 109.835928 20.483674) (xy 109.799724 20.503026) (xy 109.683999 20.597999)
+        (xy 109.6602 20.626998) (xy 109.088998 21.198201) (xy 109.06 21.221999) (xy 109.036202 21.250997) (xy 109.036201 21.250998)
+        (xy 108.965026 21.337724) (xy 108.894454 21.469754) (xy 108.877916 21.524275) (xy 108.850998 21.613014) (xy 108.847453 21.649003)
+        (xy 108.836324 21.762) (xy 108.840001 21.799332) (xy 108.84 25.796289) (xy 108.796063 25.840226) (xy 108.682795 26.009744)
+        (xy 108.604774 26.198102) (xy 108.565 26.398061) (xy 108.565 26.601939) (xy 108.604774 26.801898) (xy 108.682795 26.990256)
+        (xy 108.796063 27.159774) (xy 108.940226 27.303937) (xy 109.109744 27.417205) (xy 109.298102 27.495226) (xy 109.498061 27.535)
+        (xy 109.701939 27.535) (xy 109.901898 27.495226) (xy 110.090256 27.417205) (xy 110.259774 27.303937) (xy 110.403937 27.159774)
+        (xy 110.517205 26.990256) (xy 110.595226 26.801898) (xy 110.635 26.601939) (xy 110.635 26.398061) (xy 110.595226 26.198102)
+        (xy 110.517205 26.009744) (xy 110.403937 25.840226) (xy 110.36 25.796289) (xy 110.36 22.526844) (xy 110.474 22.538072)
+        (xy 111.236 22.538072) (xy 111.305 22.531276) (xy 111.305001 65.64129) (xy 111.259774 65.596063) (xy 111.090256 65.482795)
+        (xy 110.901898 65.404774) (xy 110.701939 65.365) (xy 110.498061 65.365) (xy 110.36 65.392462) (xy 110.36 62.553711)
+        (xy 110.403937 62.509774) (xy 110.517205 62.340256) (xy 110.595226 62.151898) (xy 110.635 61.951939) (xy 110.635 61.748061)
+        (xy 110.595226 61.548102) (xy 110.517205 61.359744) (xy 110.403937 61.190226) (xy 110.259774 61.046063) (xy 110.090256 60.932795)
+        (xy 109.901898 60.854774) (xy 109.701939 60.815) (xy 109.498061 60.815) (xy 109.298102 60.854774) (xy 109.109744 60.932795)
+        (xy 108.940226 61.046063) (xy 108.796063 61.190226) (xy 108.76001 61.244183) (xy 108.76001 60.360428) (xy 108.763686 60.323103)
+        (xy 108.76001 60.285778) (xy 108.76001 60.28577) (xy 108.749013 60.174117) (xy 108.705556 60.030856) (xy 108.634984 59.898827)
+        (xy 108.540011 59.783102) (xy 108.511013 59.759304) (xy 107.796937 59.045229) (xy 107.796937 58.940822) (xy 107.918387 58.875905)
+        (xy 108.052962 58.765462) (xy 108.163405 58.630887) (xy 108.245472 58.477351) (xy 108.296008 58.310755) (xy 108.313072 58.137501)
+        (xy 108.313072 57.112499) (xy 108.296008 56.939245) (xy 108.245472 56.772649) (xy 108.163405 56.619113) (xy 108.052962 56.484538)
+        (xy 107.965184 56.4125) (xy 108.052962 56.340462) (xy 108.163405 56.205887) (xy 108.245472 56.052351) (xy 108.296008 55.885755)
+        (xy 108.313072 55.712501) (xy 108.313072 54.687499) (xy 108.296008 54.514245) (xy 108.245472 54.347649) (xy 108.163405 54.194113)
+        (xy 108.052962 54.059538) (xy 107.918387 53.949095) (xy 107.764851 53.867028) (xy 107.598255 53.816492) (xy 107.425001 53.799428)
+        (xy 106.645717 53.799428) (xy 106.685 53.601939) (xy 106.685 53.398061) (xy 106.645226 53.198102) (xy 106.567205 53.009744)
+        (xy 106.453937 52.840226) (xy 106.309774 52.696063) (xy 106.140256 52.582795) (xy 105.951898 52.504774) (xy 105.751939 52.465)
+        (xy 105.548061 52.465) (xy 105.348102 52.504774) (xy 105.159744 52.582795) (xy 104.990226 52.696063) (xy 104.846063 52.840226)
+        (xy 104.732795 53.009744) (xy 104.654774 53.198102) (xy 104.615 53.398061) (xy 104.615 53.601939) (xy 104.654283 53.799428)
+        (xy 104.574999 53.799428) (xy 104.401745 53.816492) (xy 104.235149 53.867028) (xy 104.081613 53.949095) (xy 103.947038 54.059538)
+        (xy 103.836595 54.194113) (xy 103.754528 54.347649) (xy 103.703992 54.514245) (xy 103.686928 54.687499) (xy 103.686928 55.712501)
+        (xy 103.703992 55.885755) (xy 103.754528 56.052351) (xy 103.836595 56.205887) (xy 103.947038 56.340462) (xy 104.034816 56.4125)
+        (xy 103.947038 56.484538) (xy 103.836595 56.619113) (xy 103.754528 56.772649) (xy 103.703992 56.939245) (xy 103.686928 57.112499)
+        (xy 103.686928 58.137501) (xy 103.703992 58.310755) (xy 103.754528 58.477351) (xy 103.836595 58.630887) (xy 103.947038 58.765462)
+        (xy 104.081613 58.875905) (xy 104.230363 58.955414) (xy 103.713999 59.471778) (xy 103.685001 59.495576) (xy 103.661203 59.524574)
+        (xy 103.661202 59.524575) (xy 103.590027 59.611301) (xy 103.519455 59.743331) (xy 103.491284 59.836201) (xy 103.482226 59.866065)
+        (xy 103.475999 59.886592) (xy 103.461325 60.035577) (xy 103.465002 60.072909) (xy 103.465002 60.865) (xy 103.398061 60.865)
+        (xy 103.198102 60.904774) (xy 103.009744 60.982795) (xy 102.840226 61.096063) (xy 102.696063 61.240226) (xy 102.582795 61.409744)
+        (xy 102.504774 61.598102) (xy 102.465 61.798061) (xy 102.465 61.860198) (xy 101.239003 63.086196) (xy 101.209999 63.109999)
+        (xy 101.15606 63.175724) (xy 101.115026 63.225724) (xy 101.07118 63.307753) (xy 101.044454 63.357754) (xy 101.000997 63.501015)
+        (xy 100.99 63.612668) (xy 100.99 63.612678) (xy 100.986324 63.65) (xy 100.99 63.687323) (xy 100.990001 65.520473)
+        (xy 100.960149 65.529528) (xy 100.806613 65.611595) (xy 100.695 65.703194) (xy 100.695 46.274999) (xy 103.686928 46.274999)
+        (xy 103.686928 47.300001) (xy 103.703992 47.473255) (xy 103.754528 47.639851) (xy 103.836595 47.793387) (xy 103.947038 47.927962)
+        (xy 104.042432 48.00625) (xy 103.947038 48.084538) (xy 103.836595 48.219113) (xy 103.754528 48.372649) (xy 103.703992 48.539245)
+        (xy 103.686928 48.712499) (xy 103.686928 49.737501) (xy 103.703992 49.910755) (xy 103.754528 50.077351) (xy 103.836595 50.230887)
+        (xy 103.947038 50.365462) (xy 104.081613 50.475905) (xy 104.235149 50.557972) (xy 104.401745 50.608508) (xy 104.574999 50.625572)
+        (xy 105.298904 50.625572) (xy 105.34 50.702456) (xy 105.34 50.801939) (xy 105.379774 51.001898) (xy 105.457795 51.190256)
+        (xy 105.571063 51.359774) (xy 105.715226 51.503937) (xy 105.884744 51.617205) (xy 106.073102 51.695226) (xy 106.273061 51.735)
+        (xy 106.476939 51.735) (xy 106.676898 51.695226) (xy 106.865256 51.617205) (xy 107.034774 51.503937) (xy 107.178937 51.359774)
+        (xy 107.292205 51.190256) (xy 107.370226 51.001898) (xy 107.41 50.801939) (xy 107.41 50.625572) (xy 107.425001 50.625572)
+        (xy 107.598255 50.608508) (xy 107.764851 50.557972) (xy 107.918387 50.475905) (xy 108.052962 50.365462) (xy 108.163405 50.230887)
+        (xy 108.245472 50.077351) (xy 108.296008 49.910755) (xy 108.313072 49.737501) (xy 108.313072 48.712499) (xy 108.296008 48.539245)
+        (xy 108.245472 48.372649) (xy 108.163405 48.219113) (xy 108.052962 48.084538) (xy 107.957568 48.00625) (xy 108.052962 47.927962)
+        (xy 108.163405 47.793387) (xy 108.245472 47.639851) (xy 108.296008 47.473255) (xy 108.313072 47.300001) (xy 108.313072 46.274999)
+        (xy 108.296008 46.101745) (xy 108.245472 45.935149) (xy 108.163405 45.781613) (xy 108.052962 45.647038) (xy 107.918387 45.536595)
+        (xy 107.764851 45.454528) (xy 107.598255 45.403992) (xy 107.425001 45.386928) (xy 106.67804 45.386928) (xy 106.685 45.351939)
+        (xy 106.685 45.148061) (xy 106.645226 44.948102) (xy 106.567205 44.759744) (xy 106.453937 44.590226) (xy 106.309774 44.446063)
+        (xy 106.140256 44.332795) (xy 105.951898 44.254774) (xy 105.751939 44.215) (xy 105.548061 44.215) (xy 105.348102 44.254774)
+        (xy 105.159744 44.332795) (xy 104.990226 44.446063) (xy 104.846063 44.590226) (xy 104.732795 44.759744) (xy 104.654774 44.948102)
+        (xy 104.615 45.148061) (xy 104.615 45.351939) (xy 104.62196 45.386928) (xy 104.574999 45.386928) (xy 104.401745 45.403992)
+        (xy 104.235149 45.454528) (xy 104.081613 45.536595) (xy 103.947038 45.647038) (xy 103.836595 45.781613) (xy 103.754528 45.935149)
+        (xy 103.703992 46.101745) (xy 103.686928 46.274999) (xy 100.695 46.274999) (xy 100.695 37.887499) (xy 103.686928 37.887499)
+        (xy 103.686928 38.912501) (xy 103.703992 39.085755) (xy 103.754528 39.252351) (xy 103.836595 39.405887) (xy 103.947038 39.540462)
+        (xy 104.027201 39.60625) (xy 103.947038 39.672038) (xy 103.836595 39.806613) (xy 103.754528 39.960149) (xy 103.703992 40.126745)
+        (xy 103.686928 40.299999) (xy 103.686928 41.325001) (xy 103.703992 41.498255) (xy 103.754528 41.664851) (xy 103.836595 41.818387)
+        (xy 103.947038 41.952962) (xy 104.081613 42.063405) (xy 104.235149 42.145472) (xy 104.401745 42.196008) (xy 104.574999 42.213072)
+        (xy 105.34696 42.213072) (xy 105.34 42.248061) (xy 105.34 42.451939) (xy 105.379774 42.651898) (xy 105.457795 42.840256)
+        (xy 105.571063 43.009774) (xy 105.715226 43.153937) (xy 105.884744 43.267205) (xy 106.073102 43.345226) (xy 106.273061 43.385)
+        (xy 106.476939 43.385) (xy 106.676898 43.345226) (xy 106.865256 43.267205) (xy 107.034774 43.153937) (xy 107.178937 43.009774)
+        (xy 107.292205 42.840256) (xy 107.370226 42.651898) (xy 107.41 42.451939) (xy 107.41 42.248061) (xy 107.40304 42.213072)
+        (xy 107.425001 42.213072) (xy 107.598255 42.196008) (xy 107.764851 42.145472) (xy 107.918387 42.063405) (xy 108.052962 41.952962)
+        (xy 108.163405 41.818387) (xy 108.245472 41.664851) (xy 108.296008 41.498255) (xy 108.313072 41.325001) (xy 108.313072 40.299999)
+        (xy 108.296008 40.126745) (xy 108.245472 39.960149) (xy 108.163405 39.806613) (xy 108.052962 39.672038) (xy 107.972799 39.60625)
+        (xy 108.052962 39.540462) (xy 108.163405 39.405887) (xy 108.245472 39.252351) (xy 108.296008 39.085755) (xy 108.313072 38.912501)
+        (xy 108.313072 37.887499) (xy 108.296008 37.714245) (xy 108.245472 37.547649) (xy 108.163405 37.394113) (xy 108.052962 37.259538)
+        (xy 107.918387 37.149095) (xy 107.764851 37.067028) (xy 107.598255 37.016492) (xy 107.425001 36.999428) (xy 106.685 36.999428)
+        (xy 106.685 36.798061) (xy 106.645226 36.598102) (xy 106.567205 36.409744) (xy 106.453937 36.240226) (xy 106.309774 36.096063)
+        (xy 106.140256 35.982795) (xy 105.951898 35.904774) (xy 105.751939 35.865) (xy 105.548061 35.865) (xy 105.348102 35.904774)
+        (xy 105.159744 35.982795) (xy 104.990226 36.096063) (xy 104.846063 36.240226) (xy 104.732795 36.409744) (xy 104.654774 36.598102)
+        (xy 104.615 36.798061) (xy 104.615 36.999428) (xy 104.574999 36.999428) (xy 104.401745 37.016492) (xy 104.235149 37.067028)
+        (xy 104.081613 37.149095) (xy 103.947038 37.259538) (xy 103.836595 37.394113) (xy 103.754528 37.547649) (xy 103.703992 37.714245)
+        (xy 103.686928 37.887499) (xy 100.695 37.887499) (xy 100.695 29.387499) (xy 103.686928 29.387499) (xy 103.686928 30.412501)
+        (xy 103.703992 30.585755) (xy 103.754528 30.752351) (xy 103.836595 30.905887) (xy 103.947038 31.040462) (xy 104.081613 31.150905)
+        (xy 104.103306 31.1625) (xy 104.081613 31.174095) (xy 103.947038 31.284538) (xy 103.836595 31.419113) (xy 103.754528 31.572649)
+        (xy 103.703992 31.739245) (xy 103.686928 31.912499) (xy 103.686928 32.937501) (xy 103.703992 33.110755) (xy 103.754528 33.277351)
+        (xy 103.836595 33.430887) (xy 103.947038 33.565462) (xy 104.081613 33.675905) (xy 104.235149 33.757972) (xy 104.401745 33.808508)
+        (xy 104.574999 33.825572) (xy 105.354419 33.825572) (xy 105.34 33.898061) (xy 105.34 34.101939) (xy 105.379774 34.301898)
+        (xy 105.457795 34.490256) (xy 105.571063 34.659774) (xy 105.715226 34.803937) (xy 105.884744 34.917205) (xy 106.073102 34.995226)
+        (xy 106.273061 35.035) (xy 106.476939 35.035) (xy 106.676898 34.995226) (xy 106.865256 34.917205) (xy 107.034774 34.803937)
+        (xy 107.178937 34.659774) (xy 107.292205 34.490256) (xy 107.370226 34.301898) (xy 107.41 34.101939) (xy 107.41 33.898061)
+        (xy 107.395581 33.825572) (xy 107.425001 33.825572) (xy 107.598255 33.808508) (xy 107.764851 33.757972) (xy 107.918387 33.675905)
+        (xy 108.052962 33.565462) (xy 108.163405 33.430887) (xy 108.245472 33.277351) (xy 108.296008 33.110755) (xy 108.313072 32.937501)
+        (xy 108.313072 31.912499) (xy 108.296008 31.739245) (xy 108.245472 31.572649) (xy 108.163405 31.419113) (xy 108.052962 31.284538)
+        (xy 107.918387 31.174095) (xy 107.896694 31.1625) (xy 107.918387 31.150905) (xy 108.052962 31.040462) (xy 108.163405 30.905887)
+        (xy 108.245472 30.752351) (xy 108.296008 30.585755) (xy 108.313072 30.412501) (xy 108.313072 29.387499) (xy 108.296008 29.214245)
+        (xy 108.245472 29.047649) (xy 108.163405 28.894113) (xy 108.052962 28.759538) (xy 107.918387 28.649095) (xy 107.764851 28.567028)
+        (xy 107.598255 28.516492) (xy 107.425001 28.499428) (xy 106.685 28.499428) (xy 106.685 28.298061) (xy 106.645226 28.098102)
+        (xy 106.567205 27.909744) (xy 106.453937 27.740226) (xy 106.309774 27.596063) (xy 106.140256 27.482795) (xy 105.951898 27.404774)
+        (xy 105.751939 27.365) (xy 105.548061 27.365) (xy 105.348102 27.404774) (xy 105.159744 27.482795) (xy 104.990226 27.596063)
+        (xy 104.846063 27.740226) (xy 104.732795 27.909744) (xy 104.654774 28.098102) (xy 104.615 28.298061) (xy 104.615 28.499428)
+        (xy 104.574999 28.499428) (xy 104.401745 28.516492) (xy 104.235149 28.567028) (xy 104.081613 28.649095) (xy 103.947038 28.759538)
+        (xy 103.836595 28.894113) (xy 103.754528 29.047649) (xy 103.703992 29.214245) (xy 103.686928 29.387499) (xy 100.695 29.387499)
+        (xy 100.695 22.538072) (xy 101.421 22.538072) (xy 101.545482 22.525812) (xy 101.66518 22.489502) (xy 101.775494 22.430537)
+        (xy 101.85312 22.366831) (xy 101.990226 22.503937) (xy 102.159744 22.617205) (xy 102.348102 22.695226) (xy 102.548061 22.735)
+        (xy 102.740001 22.735) (xy 102.74 23.896289) (xy 102.696063 23.940226) (xy 102.582795 24.109744) (xy 102.504774 24.298102)
+        (xy 102.465 24.498061) (xy 102.465 24.701939) (xy 102.504774 24.901898) (xy 102.582795 25.090256) (xy 102.696063 25.259774)
+        (xy 102.840226 25.403937) (xy 103.009744 25.517205) (xy 103.198102 25.595226) (xy 103.398061 25.635) (xy 103.601939 25.635)
+        (xy 103.801898 25.595226) (xy 103.990256 25.517205) (xy 104.159774 25.403937) (xy 104.28931 25.274401) (xy 104.401745 25.308508)
+        (xy 104.574999 25.325572) (xy 105.07431 25.325572) (xy 105.04 25.498061) (xy 105.04 25.701939) (xy 105.079774 25.901898)
+        (xy 105.157795 26.090256) (xy 105.271063 26.259774) (xy 105.415226 26.403937) (xy 105.584744 26.517205) (xy 105.773102 26.595226)
+        (xy 105.973061 26.635) (xy 106.176939 26.635) (xy 106.376898 26.595226) (xy 106.565256 26.517205) (xy 106.734774 26.403937)
+        (xy 106.878937 26.259774) (xy 106.992205 26.090256) (xy 107.070226 25.901898) (xy 107.11 25.701939) (xy 107.11 25.498061)
+        (xy 107.07569 25.325572) (xy 107.425001 25.325572) (xy 107.598255 25.308508) (xy 107.764851 25.257972) (xy 107.918387 25.175905)
+        (xy 108.052962 25.065462) (xy 108.163405 24.930887) (xy 108.245472 24.777351) (xy 108.296008 24.610755) (xy 108.313072 24.437501)
+        (xy 108.313072 23.412499) (xy 108.296008 23.239245) (xy 108.245472 23.072649) (xy 108.163405 22.919113) (xy 108.052962 22.784538)
+        (xy 107.918387 22.674095) (xy 107.764851 22.592028) (xy 107.598255 22.541492) (xy 107.494767 22.531299) (xy 107.550482 22.525812)
+        (xy 107.67018 22.489502) (xy 107.780494 22.430537) (xy 107.877185 22.351185) (xy 107.956537 22.254494) (xy 108.015502 22.14418)
+        (xy 108.051812 22.024482) (xy 108.064072 21.9) (xy 108.061 21.42375) (xy 107.90225 21.265) (xy 107.172 21.265)
+        (xy 107.172 21.285) (xy 106.918 21.285) (xy 106.918 21.265) (xy 106.18775 21.265) (xy 106.029 21.42375)
+        (xy 106.025928 21.9) (xy 106.038188 22.024482) (xy 106.074498 22.14418) (xy 106.133463 22.254494) (xy 106.212815 22.351185)
+        (xy 106.309506 22.430537) (xy 106.41982 22.489502) (xy 106.534956 22.524428) (xy 105.360044 22.524428) (xy 105.47518 22.489502)
+        (xy 105.585494 22.430537) (xy 105.682185 22.351185) (xy 105.761537 22.254494) (xy 105.820502 22.14418) (xy 105.856812 22.024482)
+        (xy 105.869072 21.9) (xy 105.866 21.42375) (xy 105.70725 21.265) (xy 104.977 21.265) (xy 104.977 21.285)
+        (xy 104.723 21.285) (xy 104.723 21.265) (xy 104.703 21.265) (xy 104.703 21.011) (xy 104.723 21.011)
+        (xy 104.723 19.89975) (xy 104.977 19.89975) (xy 104.977 21.011) (xy 105.70725 21.011) (xy 105.866 20.85225)
+        (xy 105.869072 20.376) (xy 106.025928 20.376) (xy 106.029 20.85225) (xy 106.18775 21.011) (xy 106.918 21.011)
+        (xy 106.918 19.89975) (xy 107.172 19.89975) (xy 107.172 21.011) (xy 107.90225 21.011) (xy 108.061 20.85225)
+        (xy 108.064072 20.376) (xy 108.051812 20.251518) (xy 108.015502 20.13182) (xy 107.956537 20.021506) (xy 107.877185 19.924815)
+        (xy 107.780494 19.845463) (xy 107.67018 19.786498) (xy 107.550482 19.750188) (xy 107.426 19.737928) (xy 107.33075 19.741)
+        (xy 107.172 19.89975) (xy 106.918 19.89975) (xy 106.75925 19.741) (xy 106.664 19.737928) (xy 106.539518 19.750188)
+        (xy 106.41982 19.786498) (xy 106.309506 19.845463) (xy 106.212815 19.924815) (xy 106.133463 20.021506) (xy 106.074498 20.13182)
+        (xy 106.038188 20.251518) (xy 106.025928 20.376) (xy 105.869072 20.376) (xy 105.856812 20.251518) (xy 105.820502 20.13182)
+        (xy 105.761537 20.021506) (xy 105.682185 19.924815) (xy 105.585494 19.845463) (xy 105.47518 19.786498) (xy 105.355482 19.750188)
+        (xy 105.231 19.737928) (xy 105.13575 19.741) (xy 104.977 19.89975) (xy 104.723 19.89975) (xy 104.56425 19.741)
+        (xy 104.469 19.737928) (xy 104.344518 19.750188) (xy 104.26 19.775826) (xy 104.26 17.053711) (xy 104.303937 17.009774)
+        (xy 104.351557 16.938505) (xy 104.469 16.950072) (xy 104.56425 16.947) (xy 104.723 16.78825) (xy 104.723 15.677)
+        (xy 104.977 15.677) (xy 104.977 16.78825) (xy 105.13575 16.947) (xy 105.231 16.950072) (xy 105.355482 16.937812)
+        (xy 105.47518 16.901502) (xy 105.585494 16.842537) (xy 105.682185 16.763185) (xy 105.761537 16.666494) (xy 105.820502 16.55618)
+        (xy 105.856812 16.436482) (xy 105.869072 16.312) (xy 106.025928 16.312) (xy 106.038188 16.436482) (xy 106.074498 16.55618)
+        (xy 106.133463 16.666494) (xy 106.212815 16.763185) (xy 106.309506 16.842537) (xy 106.41982 16.901502) (xy 106.539518 16.937812)
+        (xy 106.664 16.950072) (xy 106.75925 16.947) (xy 106.918 16.78825) (xy 106.918 15.677) (xy 107.172 15.677)
+        (xy 107.172 16.78825) (xy 107.33075 16.947) (xy 107.426 16.950072) (xy 107.550482 16.937812) (xy 107.67018 16.901502)
+        (xy 107.780494 16.842537) (xy 107.877185 16.763185) (xy 107.956537 16.666494) (xy 108.015502 16.55618) (xy 108.051812 16.436482)
+        (xy 108.064072 16.312) (xy 108.061 15.83575) (xy 107.90225 15.677) (xy 107.172 15.677) (xy 106.918 15.677)
+        (xy 106.18775 15.677) (xy 106.029 15.83575) (xy 106.025928 16.312) (xy 105.869072 16.312) (xy 105.866 15.83575)
+        (xy 105.70725 15.677) (xy 104.977 15.677) (xy 104.723 15.677) (xy 104.703 15.677) (xy 104.703 15.423)
+        (xy 104.723 15.423) (xy 104.723 14.31175) (xy 104.977 14.31175) (xy 104.977 15.423) (xy 105.70725 15.423)
+        (xy 105.866 15.26425) (xy 105.869072 14.788) (xy 105.856812 14.663518) (xy 105.820502 14.54382) (xy 105.761537 14.433506)
+        (xy 105.682185 14.336815) (xy 105.585494 14.257463) (xy 105.47518 14.198498) (xy 105.355482 14.162188) (xy 105.231 14.149928)
+        (xy 105.13575 14.153) (xy 104.977 14.31175) (xy 104.723 14.31175) (xy 104.56425 14.153) (xy 104.469 14.149928)
+        (xy 104.344518 14.162188) (xy 104.22482 14.198498) (xy 104.114506 14.257463) (xy 104.017815 14.336815) (xy 103.938463 14.433506)
+        (xy 103.879498 14.54382) (xy 103.843188 14.663518) (xy 103.830928 14.788) (xy 103.834 15.26425) (xy 103.992748 15.422998)
+        (xy 103.966604 15.422998) (xy 103.801898 15.354774) (xy 103.601939 15.315) (xy 103.398061 15.315) (xy 103.198102 15.354774)
+        (xy 103.009744 15.432795) (xy 102.840226 15.546063) (xy 102.696063 15.690226) (xy 102.582795 15.859744) (xy 102.504774 16.048102)
+        (xy 102.475453 16.19551) (xy 102.313741 16.087458) (xy 102.11636 16.0057) (xy 102.059072 15.994305) (xy 102.059072 15.105695)
+        (xy 102.11636 15.0943) (xy 102.313741 15.012542) (xy 102.49138 14.893848) (xy 102.642448 14.74278) (xy 102.761142 14.565141)
+        (xy 102.8429 14.36776) (xy 102.88458 14.158222) (xy 102.88458 13.944578) (xy 102.8429 13.73504) (xy 102.761142 13.537659)
+        (xy 102.642448 13.36002) (xy 102.49138 13.208952) (xy 102.313741 13.090258) (xy 102.11636 13.0085) (xy 101.906822 12.96682)
+        (xy 101.693178 12.96682) (xy 101.48364 13.0085) (xy 101.286259 13.090258) (xy 101.10862 13.208952) (xy 100.957552 13.36002)
+        (xy 100.838858 13.537659) (xy 100.7571 13.73504) (xy 100.71542 13.944578) (xy 100.71542 14.149928) (xy 100.695 14.149928)
+        (xy 100.695 12.033992) (xy 100.723123 11.747171) (xy 100.796549 11.503974) (xy 100.915814 11.279669) (xy 101.076375 11.082801)
+        (xy 101.272117 10.920869) (xy 101.49558 10.800043) (xy 101.738264 10.72492) (xy 102.022929 10.695) (xy 109.966008 10.695)
+      )
+    )
+  )
+)
diff --git a/HARDWARE/lightsticks.kicad_pcb-bak b/HARDWARE/lightsticks.kicad_pcb-bak
new file mode 100644 (file)
index 0000000..3509d05
--- /dev/null
@@ -0,0 +1,3047 @@
+(kicad_pcb (version 20171130) (host pcbnew 5.1.4-e60b266~84~ubuntu18.04.1)
+
+  (general
+    (thickness 1.6)
+    (drawings 10)
+    (tracks 530)
+    (zones 0)
+    (modules 45)
+    (nets 30)
+  )
+
+  (page A4)
+  (layers
+    (0 F.Cu signal)
+    (31 B.Cu signal)
+    (32 B.Adhes user)
+    (33 F.Adhes user)
+    (34 B.Paste user)
+    (35 F.Paste user)
+    (36 B.SilkS user)
+    (37 F.SilkS user)
+    (38 B.Mask user)
+    (39 F.Mask user)
+    (40 Dwgs.User user)
+    (41 Cmts.User user)
+    (42 Eco1.User user)
+    (43 Eco2.User user)
+    (44 Edge.Cuts user)
+    (45 Margin user)
+    (46 B.CrtYd user)
+    (47 F.CrtYd user)
+    (48 B.Fab user)
+    (49 F.Fab user)
+  )
+
+  (setup
+    (last_trace_width 0.25)
+    (trace_clearance 0.2)
+    (zone_clearance 0.508)
+    (zone_45_only no)
+    (trace_min 0.2)
+    (via_size 0.8)
+    (via_drill 0.4)
+    (via_min_size 0.4)
+    (via_min_drill 0.3)
+    (uvia_size 0.3)
+    (uvia_drill 0.1)
+    (uvias_allowed no)
+    (uvia_min_size 0.2)
+    (uvia_min_drill 0.1)
+    (edge_width 0.05)
+    (segment_width 0.2)
+    (pcb_text_width 0.3)
+    (pcb_text_size 1.5 1.5)
+    (mod_edge_width 0.12)
+    (mod_text_size 1 1)
+    (mod_text_width 0.15)
+    (pad_size 1.524 1.524)
+    (pad_drill 0.762)
+    (pad_to_mask_clearance 0.051)
+    (solder_mask_min_width 0.25)
+    (aux_axis_origin 0 0)
+    (visible_elements FFFFFF7F)
+    (pcbplotparams
+      (layerselection 0x010fc_ffffffff)
+      (usegerberextensions false)
+      (usegerberattributes false)
+      (usegerberadvancedattributes false)
+      (creategerberjobfile false)
+      (excludeedgelayer true)
+      (linewidth 0.100000)
+      (plotframeref false)
+      (viasonmask false)
+      (mode 1)
+      (useauxorigin false)
+      (hpglpennumber 1)
+      (hpglpenspeed 20)
+      (hpglpendiameter 15.000000)
+      (psnegative false)
+      (psa4output false)
+      (plotreference true)
+      (plotvalue true)
+      (plotinvisibletext false)
+      (padsonsilk false)
+      (subtractmaskfromsilk false)
+      (outputformat 1)
+      (mirror false)
+      (drillshape 1)
+      (scaleselection 1)
+      (outputdirectory ""))
+  )
+
+  (net 0 "")
+  (net 1 +3V3)
+  (net 2 GND)
+  (net 3 "Net-(BZ1-Pad1)")
+  (net 4 "Net-(D1-Pad1)")
+  (net 5 "Net-(D2-Pad2)")
+  (net 6 "Net-(D10-Pad2)")
+  (net 7 "Net-(J1-Pad2)")
+  (net 8 "Net-(J1-Pad3)")
+  (net 9 "Net-(R6-Pad1)")
+  (net 10 "Net-(S1-Pad2)")
+  (net 11 "Net-(C4-Pad1)")
+  (net 12 "Net-(J2-Pad1)")
+  (net 13 "Net-(J2-Pad2)")
+  (net 14 "Net-(J2-Pad3)")
+  (net 15 "Net-(J2-Pad4)")
+  (net 16 "Net-(J2-Pad7)")
+  (net 17 "Net-(J2-Pad8)")
+  (net 18 "Net-(J2-Pad9)")
+  (net 19 "Net-(J2-Pad10)")
+  (net 20 "Net-(R7-Pad2)")
+  (net 21 "Net-(R10-Pad1)")
+  (net 22 "Net-(C1-Pad1)")
+  (net 23 "Net-(D1-Pad2)")
+  (net 24 /VCC)
+  (net 25 "Net-(JP1-Pad2)")
+  (net 26 "Net-(D13-Pad2)")
+  (net 27 "Net-(D13-Pad1)")
+  (net 28 /Drain)
+  (net 29 /Gate)
+
+  (net_class Default "This is the default net class."
+    (clearance 0.2)
+    (trace_width 0.25)
+    (via_dia 0.8)
+    (via_drill 0.4)
+    (uvia_dia 0.3)
+    (uvia_drill 0.1)
+    (add_net +3V3)
+    (add_net /Drain)
+    (add_net /Gate)
+    (add_net /VCC)
+    (add_net GND)
+    (add_net "Net-(BZ1-Pad1)")
+    (add_net "Net-(C1-Pad1)")
+    (add_net "Net-(C4-Pad1)")
+    (add_net "Net-(D1-Pad1)")
+    (add_net "Net-(D1-Pad2)")
+    (add_net "Net-(D10-Pad2)")
+    (add_net "Net-(D13-Pad1)")
+    (add_net "Net-(D13-Pad2)")
+    (add_net "Net-(D2-Pad2)")
+    (add_net "Net-(J1-Pad2)")
+    (add_net "Net-(J1-Pad3)")
+    (add_net "Net-(J2-Pad1)")
+    (add_net "Net-(J2-Pad10)")
+    (add_net "Net-(J2-Pad2)")
+    (add_net "Net-(J2-Pad3)")
+    (add_net "Net-(J2-Pad4)")
+    (add_net "Net-(J2-Pad7)")
+    (add_net "Net-(J2-Pad8)")
+    (add_net "Net-(J2-Pad9)")
+    (add_net "Net-(JP1-Pad2)")
+    (add_net "Net-(R10-Pad1)")
+    (add_net "Net-(R6-Pad1)")
+    (add_net "Net-(R7-Pad2)")
+    (add_net "Net-(S1-Pad2)")
+  )
+
+  (module Shalnoff:dailybeer_logo_bw_inv (layer B.Cu) (tedit 5DCFC862) (tstamp 5DC92B56)
+    (at 106.05 105 90)
+    (descr "Imported from dailybeer_logo_bw_inv.svg")
+    (tags svg2mod)
+    (attr smd)
+    (fp_text reference svg2mod (at 0 6.919062 270) (layer B.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)) (justify mirror))
+    )
+    (fp_text value G*** (at 0 -6.919062 270) (layer B.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)) (justify mirror))
+    )
+    (fp_poly (pts (xy 1.196341 0.053649) (xy 1.196341 -0.834253) (xy 1.420996 -0.773906) (xy 1.580348 -0.61495)
+      (xy 1.640907 -0.390509) (xy 1.580348 -0.16596) (xy 1.420996 -0.006805) (xy 1.196341 0.053649)) (layer B.SilkS) (width 0))
+    (fp_poly (pts (xy -0.000235 3.2) (xy -1.633016 1.624103) (xy -1.452523 1.763628) (xy -1.239451 1.853559)
+      (xy -1.002293 1.885378) (xy -0.828243 1.867768) (xy -0.660992 1.816567) (xy -0.552016 2.031651)
+      (xy -0.366164 2.176626) (xy -0.131051 2.229868) (xy 0.052892 2.197739) (xy 0.213326 2.107255)
+      (xy 0.336021 1.966486) (xy 0.525485 2.115833) (xy 0.760725 2.169264) (xy 0.966499 2.129033)
+      (xy 1.137016 2.018961) (xy 1.255977 1.854514) (xy 1.307083 1.651157) (xy 1.49951 1.534931)
+      (xy 1.627132 1.355276) (xy 1.67344 1.13533) (xy 1.636451 0.938149) (xy 1.534795 0.772181)
+      (xy 1.381594 0.652109) (xy 1.189973 0.592618) (xy 1.189973 0.492372) (xy 1.421725 0.461312)
+      (xy 1.629886 0.373629) (xy 1.806187 0.237568) (xy 1.942356 0.061375) (xy 2.030122 -0.146706)
+      (xy 2.061216 -0.378429) (xy 2.030119 -0.610151) (xy 1.942351 -0.818231) (xy 1.806183 -0.994425)
+      (xy 1.629884 -1.130486) (xy 1.421724 -1.21817) (xy 1.189973 -1.24923) (xy 1.189973 -1.574126)
+      (xy 1.156416 -1.782206) (xy 1.062944 -1.96231) (xy 0.920359 -2.103947) (xy 0.739461 -2.196624)
+      (xy 0.531051 -2.229847) (xy 0.478677 -2.229847) (xy 0.460331 -2.229847) (xy -0.709397 -2.229847)
+      (xy -0.726677 -2.229847) (xy -0.744811 -2.229847) (xy -0.953214 -2.196624) (xy -1.134103 -2.103947)
+      (xy -1.276681 -1.96231) (xy -1.370146 -1.782206) (xy -1.403701 -1.574126) (xy -1.403701 0.137754)
+      (xy -1.169035 0.067599) (xy -1.169035 -1.528557) (xy -1.106069 -1.762002) (xy -0.940427 -1.927647)
+      (xy -0.706987 -1.990613) (xy -0.67104 -1.990613) (xy 0.443605 -1.99063) (xy 0.516459 -1.99063)
+      (xy 0.749314 -1.927664) (xy 0.913861 -1.762019) (xy 0.976235 -1.528574) (xy 0.976235 0.603881)
+      (xy 0.806349 0.681712) (xy 0.669696 0.825573) (xy 0.458679 0.650715) (xy 0.226671 0.601136)
+      (xy 0.009341 0.645165) (xy -0.157643 0.751131) (xy -0.232279 0.560718) (xy -0.328811 0.414784)
+      (xy -0.328811 -0.799479) (xy -0.376619 -0.915034) (xy -0.492395 -0.962613) (xy -0.608187 -0.915022)
+      (xy -0.655979 -0.799479) (xy -0.655979 0.171115) (xy -0.821347 0.121456) (xy -0.993195 0.104597)
+      (xy -1.169077 0.122827) (xy -1.403755 0.197557) (xy -1.607149 0.338452) (xy -1.761575 0.525946)
+      (xy -1.859666 0.748147) (xy -1.894059 0.993161) (xy -1.862279 1.23035) (xy -1.772433 1.443504)
+      (xy -1.633016 1.624103) (xy -0.000235 3.2) (xy -0.262683 3.189377) (xy -0.519287 3.158086)
+      (xy -0.769223 3.106953) (xy -1.011668 3.036799) (xy -1.245799 2.94845) (xy -1.47079 2.842728)
+      (xy -1.685821 2.720458) (xy -1.890065 2.582462) (xy -2.082702 2.429565) (xy -2.262905 2.262591)
+      (xy -2.429853 2.082362) (xy -2.582722 1.889703) (xy -2.720688 1.685437) (xy -2.842928 1.470388)
+      (xy -2.948618 1.245379) (xy -3.036935 1.011235) (xy -3.107055 0.768778) (xy -3.158155 0.518833)
+      (xy -3.189411 0.262223) (xy -3.2 -0.000228) (xy -3.189378 -0.262654) (xy -3.158094 -0.519237)
+      (xy -3.10697 -0.769154) (xy -3.03683 -1.011581) (xy -2.948497 -1.245696) (xy -2.842794 -1.470674)
+      (xy -2.720546 -1.685693) (xy -2.582575 -1.889929) (xy -2.429704 -2.082558) (xy -2.262757 -2.262758)
+      (xy -2.082558 -2.429705) (xy -1.889929 -2.582576) (xy -1.685694 -2.720548) (xy -1.470675 -2.842796)
+      (xy -1.245698 -2.948498) (xy -1.011584 -3.036831) (xy -0.769158 -3.106971) (xy -0.519242 -3.158095)
+      (xy -0.26266 -3.189379) (xy -0.000235 -3.2) (xy 0.262217 -3.189411) (xy 0.518827 -3.158154)
+      (xy 0.768773 -3.107054) (xy 1.011229 -3.036934) (xy 1.245374 -2.948617) (xy 1.470383 -2.842927)
+      (xy 1.685432 -2.720688) (xy 1.889698 -2.582722) (xy 2.082358 -2.429853) (xy 2.262587 -2.262905)
+      (xy 2.429562 -2.082701) (xy 2.582459 -1.890064) (xy 2.720454 -1.685819) (xy 2.842725 -1.470789)
+      (xy 2.948447 -1.245796) (xy 3.036797 -1.011666) (xy 3.106951 -0.76922) (xy 3.158085 -0.519283)
+      (xy 3.189376 -0.262678) (xy 3.2 -0.000228) (xy 3.189409 0.262247) (xy 3.158147 0.518879)
+      (xy 3.107037 0.768844) (xy 3.036904 1.011319) (xy 2.94857 1.24548) (xy 2.842861 1.470503)
+      (xy 2.720599 1.685564) (xy 2.582609 1.889839) (xy 2.429714 2.082505) (xy 2.262739 2.262737)
+      (xy 2.082506 2.429713) (xy 1.88984 2.582608) (xy 1.685564 2.720598) (xy 1.470502 2.84286)
+      (xy 1.245479 2.948569) (xy 1.011317 3.036903) (xy 0.768841 3.107036) (xy 0.518875 3.158146)
+      (xy 0.262242 3.189409) (xy -0.000235 3.2)) (layer B.SilkS) (width 0))
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC47430)
+    (at 106 69.0125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB05D)
+    (attr smd)
+    (fp_text reference D8 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Shalnoff:JP_0805 (layer B.Cu) (tedit 59E9A18E) (tstamp 5DC8F11F)
+    (at 102 72.2 270)
+    (descr "SMD jumper")
+    (tags "SMD jumper 0805")
+    (path /5DF65FF2)
+    (attr smd)
+    (fp_text reference JP1 (at 0 1.65 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value SolderJumper_2_Bridged (at 0 -1.75 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start 1.55 -0.9) (end -1.55 -0.9) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.55 -0.9) (end 1.55 0.9) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.55 0.9) (end -1.55 -0.9) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.55 0.9) (end 1.55 0.9) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.6 0.88) (end 0.6 0.88) (layer B.SilkS) (width 0.12))
+    (fp_line (start 0.6 -0.88) (end -0.6 -0.88) (layer B.SilkS) (width 0.12))
+    (fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.075)) (justify mirror))
+    )
+    (pad 1 connect rect (at 0 0 270) (size 1.524 0.2) (layers B.Cu B.Mask)
+      (net 26 "Net-(D13-Pad2)"))
+    (pad 2 smd rect (at 0.95 0 270) (size 0.7 1.3) (layers B.Cu B.Paste B.Mask)
+      (net 25 "Net-(JP1-Pad2)"))
+    (pad 1 smd rect (at -0.95 0 270) (size 0.7 1.3) (layers B.Cu B.Paste B.Mask)
+      (net 26 "Net-(D13-Pad2)"))
+    (model ${KISYS3DMOD}/Resistors_SMD.3dshapes/R_0805.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Silicon-Standard:SOT23-3 (layer B.Cu) (tedit 200000) (tstamp 5DD012A4)
+    (at 108 83.9 270)
+    (descr SOT23-3)
+    (tags SOT23-3)
+    (path /5DD0A422)
+    (attr smd)
+    (fp_text reference Q2 (at -1.9558 0 180) (layer B.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)) (justify mirror))
+    )
+    (fp_text value MOSFET-NCH-AO3404A (at 2.032 0 180) (layer B.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)) (justify mirror))
+    )
+    (fp_line (start 1.4224 0.6604) (end 1.4224 -0.6604) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start 1.4224 -0.6604) (end -1.4224 -0.6604) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start -1.4224 -0.6604) (end -1.4224 0.6604) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start -1.4224 0.6604) (end 1.4224 0.6604) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start -0.79756 0.6985) (end -1.39954 0.6985) (layer B.SilkS) (width 0.2032))
+    (fp_line (start -1.39954 0.6985) (end -1.39954 -0.09906) (layer B.SilkS) (width 0.2032))
+    (fp_line (start 0.79756 0.6985) (end 1.39954 0.6985) (layer B.SilkS) (width 0.2032))
+    (fp_line (start 1.39954 0.6985) (end 1.39954 -0.09906) (layer B.SilkS) (width 0.2032))
+    (pad 1 smd rect (at -0.94996 -0.99822 270) (size 0.79756 0.89916) (layers B.Cu B.Paste B.Mask)
+      (net 29 /Gate) (solder_mask_margin 0.1016))
+    (pad 2 smd rect (at 0.94996 -0.99822 270) (size 0.79756 0.89916) (layers B.Cu B.Paste B.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+    (pad 3 smd rect (at 0 1.09982 270) (size 0.79756 0.89916) (layers B.Cu B.Paste B.Mask)
+      (net 28 /Drain) (solder_mask_margin 0.1016))
+  )
+
+  (module Shalnoff:CONTACT_2_10mm (layer B.Cu) (tedit 5DC7FC6C) (tstamp 5DC7C5E6)
+    (at 106 23.9)
+    (path /5DCEE429)
+    (fp_text reference LiPo1 (at 0 -2.5) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value Battery_Cell (at 0 2.3) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (pad 2 smd rect (at 4.75 0) (size 1.5 3) (layers B.Cu B.Paste B.Mask)
+      (net 2 GND))
+    (pad 1 smd rect (at -4.75 0) (size 1.5 3) (layers B.Cu B.Paste B.Mask)
+      (net 1 +3V3))
+  )
+
+  (module Switches:TACTILE_SWITCH_SMD_5.2MM (layer F.Cu) (tedit 200000) (tstamp 5DD3FE66)
+    (at 108.95 18.344 90)
+    (descr "MOMENTARY SWITCH (PUSHBUTTON) - SPST - SMD, 5.2MM SQUARE")
+    (tags "MOMENTARY SWITCH (PUSHBUTTON) - SPST - SMD, 5.2MM SQUARE")
+    (path /5DC11587)
+    (attr smd)
+    (fp_text reference S3 (at 0 -3.175 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_text value MOMENTARY-SWITCH-SPST-2-SMD-5.2MM (at 0 3.175 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_circle (center 0 0) (end 0 -1.27) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 1.905 0.2286) (end 1.905 1.11252) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.905 -0.4445) (end 2.159 0.00762) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.905 -1.27) (end 1.905 -0.4445) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.53924 2.54) (end -1.53924 2.54) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 2.54 1.53924) (end 1.53924 2.54) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start 2.54 -1.23952) (end 2.54 1.23952) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 1.53924 -2.54) (end 2.54 -1.53924) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start -1.53924 -2.54) (end 1.53924 -2.54) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -2.54 -1.53924) (end -1.53924 -2.54) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start -2.54 1.23952) (end -2.54 -1.27) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -1.53924 2.54) (end -2.54 1.53924) (layer Dwgs.User) (width 0.2032))
+    (pad 4 smd rect (at 2.794 1.905 180) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 18 "Net-(J2-Pad9)") (solder_mask_margin 0.1016))
+    (pad 3 smd rect (at -2.794 1.905 180) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 18 "Net-(J2-Pad9)") (solder_mask_margin 0.1016))
+    (pad 2 smd rect (at 2.794 -1.905 180) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+    (pad 1 smd rect (at -2.794 -1.905 180) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+  )
+
+  (module Shalnoff:ce_logo_2mm (layer F.Cu) (tedit 5DC7F32E) (tstamp 5DC945DF)
+    (at 102.25 38.4 90)
+    (descr "Imported from ce_logo.svg")
+    (tags svg2mod)
+    (attr smd)
+    (fp_text reference "copyleft electronics logo" (at 0 -4.114755 90) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_text value G*** (at 0 4.114755 90) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_circle (center -0.45 0) (end -0.43 0) (layer F.SilkS) (width 0.15))
+    (fp_poly (pts (xy -0.218821 -0.223565) (xy -0.239195 -0.174338) (xy -0.218821 -0.125122) (xy -0.169648 -0.104695)
+      (xy -0.120475 -0.125122) (xy -0.062506 -0.163816) (xy 0.003104 -0.176714) (xy 0.068714 -0.163816)
+      (xy 0.126683 -0.125122) (xy 0.165353 -0.067179) (xy 0.178203 -0.001625) (xy 0.165293 0.06393)
+      (xy 0.126683 0.121874) (xy 0.068728 0.16058) (xy 0.003147 0.173504) (xy -0.062434 0.160633)
+      (xy -0.120389 0.121954) (xy -0.169989 0.100311) (xy -0.220229 0.120642) (xy -0.240603 0.170829)
+      (xy -0.218843 0.220482) (xy -0.162242 0.265291) (xy -0.098832 0.295148) (xy -0.031336 0.310057)
+      (xy 0.037522 0.310026) (xy 0.105018 0.29506) (xy 0.168429 0.265166) (xy 0.225029 0.220349)
+      (xy 0.269857 0.163748) (xy 0.299756 0.100338) (xy 0.31472 0.032843) (xy 0.314738 -0.036015)
+      (xy 0.299801 -0.103511) (xy 0.269901 -0.166921) (xy 0.225029 -0.223521) (xy 0.158242 -0.274347)
+      (xy 0.082793 -0.30483) (xy 0.003013 -0.314988) (xy -0.076788 -0.304833) (xy -0.152243 -0.274352)
+      (xy -0.219024 -0.223521) (xy -0.219024 -0.223535) (xy -0.218821 -0.223565)) (layer F.SilkS) (width 0))
+    (fp_poly (pts (xy -0.802992 -0.271406) (xy -0.841699 -0.226109) (xy -0.872325 -0.176579) (xy -0.893059 -0.129407)
+      (xy -0.906992 -0.080291) (xy -0.914459 -0.02943) (xy -0.915525 0.019943) (xy -0.909299 0.076015)
+      (xy -0.894512 0.130787) (xy -0.894416 0.13088) (xy -1.066661 0.302966) (xy -0.905787 0.464013)
+      (xy -0.760699 0.318914) (xy -0.616005 0.463613) (xy -0.761019 0.608779) (xy -0.600133 0.769664)
+      (xy -0.455045 0.624565) (xy -0.318672 0.760784) (xy -0.46392 0.90587) (xy -0.303045 1.066755)
+      (xy -0.132432 0.896295) (xy -0.074848 0.912534) (xy -0.01576 0.919773) (xy 0.033453 0.918826)
+      (xy 0.082267 0.911879) (xy 0.134547 0.897097) (xy 0.184667 0.874866) (xy 0.232187 0.844901)
+      (xy 0.275867 0.807367) (xy 0.536197 0.547024) (xy 0.375323 0.386151) (xy 0.114992 0.646481)
+      (xy 0.067952 0.679804) (xy -0.003088 0.69446) (xy -0.053541 0.68422) (xy -0.111035 0.646438)
+      (xy -0.642341 0.115472) (xy -0.679568 0.059024) (xy -0.690341 -0.000773) (xy -0.678821 -0.056187)
+      (xy -0.642448 -0.110587) (xy -0.111077 -0.641793) (xy -0.057741 -0.67779) (xy 0.002011 -0.689772)
+      (xy 0.061643 -0.677794) (xy 0.114907 -0.641793) (xy 0.645947 -0.110601) (xy 0.681975 -0.05726)
+      (xy 0.693936 0.002441) (xy 0.681881 0.06214) (xy 0.645861 0.115475) (xy 0.375248 0.386085)
+      (xy 0.536123 0.546971) (xy 0.806747 0.276362) (xy 0.854941 0.217548) (xy 0.889793 0.152239)
+      (xy 0.911299 0.082522) (xy 0.919455 0.010486) (xy 0.914259 -0.06178) (xy 0.895707 -0.132188)
+      (xy 1.066661 -0.30314) (xy 0.905787 -0.464013) (xy 0.760101 -0.318169) (xy 0.623803 -0.454452)
+      (xy 0.769573 -0.600231) (xy 0.608688 -0.761104) (xy 0.462843 -0.615419) (xy 0.318139 -0.760277)
+      (xy 0.46392 -0.90587) (xy 0.302864 -1.066755) (xy 0.129861 -0.893909) (xy 0.066675 -0.910033)
+      (xy 0.001968 -0.915413) (xy -0.072205 -0.908372) (xy -0.144097 -0.887241) (xy -0.211448 -0.852012)
+      (xy -0.271995 -0.802676) (xy -0.803376 -0.27147) (xy -0.803365 -0.27147) (xy -0.802992 -0.271406)) (layer F.SilkS) (width 0))
+  )
+
+  (module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B4B45C9) (tstamp 5DC90B4C)
+    (at 109.7 12.3)
+    (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DFB9F90)
+    (attr smd)
+    (fp_text reference D13 (at 0 1.65) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value LED (at 0 -1.65) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.86 -0.96) (end 1 -0.96) (layer B.SilkS) (width 0.12))
+    (fp_line (start -1.86 0.96) (end -1.86 -0.96) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 0.96) (end -1.86 0.96) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.3) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.7 0.6) (end -1 0.3) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end -0.7 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 26 "Net-(D13-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 27 "Net-(D13-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC47443)
+    (at 106 35.4125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB3AD)
+    (attr smd)
+    (fp_text reference D9 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC7AD2D)
+    (at 106 26.9125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DE5D3FE)
+    (attr smd)
+    (fp_text reference D12 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD (layer B.Cu) (tedit 59FED667) (tstamp 5DC6B345)
+    (at 105.9 93.5)
+    (descr "surface-mounted straight pin header, 2x05, 2.00mm pitch, double rows")
+    (tags "Surface mounted pin header SMD 2x05 2.00mm double row")
+    (path /5E21FA62)
+    (attr smd)
+    (fp_text reference J2 (at 0 6.06) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value CONN_05X2NO_SILK (at 0 -6.06) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 -90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start 4.9 5.5) (end -4.9 5.5) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 4.9 -5.5) (end 4.9 5.5) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -4.9 -5.5) (end 4.9 -5.5) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -4.9 5.5) (end -4.9 -5.5) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 2.06 -2.76) (end 2.06 -3.24) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 -2.76) (end -2.06 -3.24) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.06 -0.76) (end 2.06 -1.24) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 -0.76) (end -2.06 -1.24) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.06 1.24) (end 2.06 0.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 1.24) (end -2.06 0.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.06 3.24) (end 2.06 2.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 3.24) (end -2.06 2.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.06 -4.76) (end 2.06 -5.06) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 -4.76) (end -2.06 -5.06) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.06 5.06) (end 2.06 4.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 5.06) (end -2.06 4.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start -3.315 4.76) (end -2.06 4.76) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 -5.06) (end 2.06 -5.06) (layer B.SilkS) (width 0.12))
+    (fp_line (start -2.06 5.06) (end 2.06 5.06) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.875 -4.25) (end 2 -4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 -3.75) (end 2.875 -4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 -3.75) (end 2.875 -3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 -4.25) (end -2 -4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 -3.75) (end -2.875 -4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 -3.75) (end -2.875 -3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 -2.25) (end 2 -2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 -1.75) (end 2.875 -2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 -1.75) (end 2.875 -1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 -2.25) (end -2 -2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 -1.75) (end -2.875 -2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 -1.75) (end -2.875 -1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 -0.25) (end 2 -0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 0.25) (end 2.875 -0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 0.25) (end 2.875 0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 -0.25) (end -2 -0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 0.25) (end -2.875 -0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 0.25) (end -2.875 0.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 1.75) (end 2 1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 2.25) (end 2.875 1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 2.25) (end 2.875 2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 1.75) (end -2 1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 2.25) (end -2.875 1.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 2.25) (end -2.875 2.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 3.75) (end 2 3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.875 4.25) (end 2.875 3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 4.25) (end 2.875 4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 3.75) (end -2 3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.875 4.25) (end -2.875 3.75) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 4.25) (end -2.875 4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 5) (end 2 -5) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 4.25) (end -1.25 5) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 -5) (end -2 4.25) (layer B.Fab) (width 0.1))
+    (fp_line (start -1.25 5) (end 2 5) (layer B.Fab) (width 0.1))
+    (fp_line (start 2 -5) (end -2 -5) (layer B.Fab) (width 0.1))
+    (pad 10 smd rect (at 2.085 -4) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 19 "Net-(J2-Pad10)"))
+    (pad 9 smd rect (at -2.085 -4) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 18 "Net-(J2-Pad9)"))
+    (pad 8 smd rect (at 2.085 -2) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 17 "Net-(J2-Pad8)"))
+    (pad 7 smd rect (at -2.085 -2) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 16 "Net-(J2-Pad7)"))
+    (pad 6 smd rect (at 2.085 0) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 28 /Drain))
+    (pad 5 smd rect (at -2.085 0) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 1 +3V3))
+    (pad 4 smd rect (at 2.085 2) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 15 "Net-(J2-Pad4)"))
+    (pad 3 smd rect (at -2.085 2) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 14 "Net-(J2-Pad3)"))
+    (pad 2 smd rect (at 2.085 4) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 13 "Net-(J2-Pad2)"))
+    (pad 1 smd rect (at -2.085 4) (size 2.58 1) (layers B.Cu B.Paste B.Mask)
+      (net 12 "Net-(J2-Pad1)"))
+    (model ${KISYS3DMOD}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_2x05_P2.00mm_Vertical_SMD.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DC892D1)
+    (at 109.55 80.95 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5E410B16)
+    (attr smd)
+    (fp_text reference R10 (at 0 -1.65 270) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 10K (at 0 1.65 270) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 270) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 24 /VCC))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 21 "Net-(R10-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitor_Tantalum_SMD:CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder (layer F.Cu) (tedit 5B301BBE) (tstamp 5DC6D22B)
+    (at 109.95 95.75 90)
+    (descr "Tantalum Capacitor SMD Kemet-S (3216-12 Metric), IPC_7351 nominal, (Body size from: http://www.kemet.com/Lists/ProductCatalog/Attachments/253/KEM_TC101_STD.pdf), generated with kicad-footprint-generator")
+    (tags "capacitor tantalum")
+    (path /5DCC90B4)
+    (attr smd)
+    (fp_text reference C1 (at 0 -1.75 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 10uF (at 0 1.75 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 0.8 0.8) (thickness 0.12)))
+    )
+    (fp_line (start 2.48 1.05) (end -2.48 1.05) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 2.48 -1.05) (end 2.48 1.05) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -2.48 -1.05) (end 2.48 -1.05) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -2.48 1.05) (end -2.48 -1.05) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -2.485 0.935) (end 1.6 0.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.485 -0.935) (end -2.485 0.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1.6 -0.935) (end -2.485 -0.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1.6 0.8) (end 1.6 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -1.6 0.8) (end 1.6 0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -1.6 -0.4) (end -1.6 0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -1.2 -0.8) (end -1.6 -0.4) (layer F.Fab) (width 0.1))
+    (fp_line (start 1.6 -0.8) (end -1.2 -0.8) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.4375 0 90) (size 1.575 1.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.185185)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -1.4375 0 90) (size 1.575 1.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.185185)
+      (net 22 "Net-(C1-Pad1)"))
+    (model ${KISYS3DMOD}/Capacitor_Tantalum_SMD.3dshapes/CP_EIA-3216-12_Kemet-S.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitor_SMD:C_1812_4532Metric (layer B.Cu) (tedit 5B301BBE) (tstamp 5DC7C8EE)
+    (at 106.2 22 180)
+    (descr "Capacitor SMD 1812 (4532 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://www.nikhef.nl/pub/departments/mt/projects/detectorR_D/dtddice/ERJ2G.pdf), generated with kicad-footprint-generator")
+    (tags capacitor)
+    (path /5E3EE254)
+    (attr smd)
+    (fp_text reference BZ1 (at 0 2.65) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value PS1240P02BT (at 0 -2.65) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start 2.95 -1.95) (end -2.95 -1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 2.95 1.95) (end 2.95 -1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -2.95 1.95) (end 2.95 1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -2.95 -1.95) (end -2.95 1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.386252 -1.71) (end 1.386252 -1.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -1.386252 1.71) (end 1.386252 1.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 2.25 -1.6) (end -2.25 -1.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 2.25 1.6) (end 2.25 -1.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.25 1.6) (end 2.25 1.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -2.25 -1.6) (end -2.25 1.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.1375 0 180) (size 1.125 3.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.222222)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -2.1375 0 180) (size 1.125 3.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.222222)
+      (net 3 "Net-(BZ1-Pad1)"))
+    (model ${KISYS3DMOD}/Capacitor_SMD.3dshapes/C_1812_4532Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitors_SMD:C_0805 (layer F.Cu) (tedit 58AA8463) (tstamp 5DC69547)
+    (at 110 86.5 180)
+    (descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
+    (tags "capacitor 0805")
+    (path /5E19AB03)
+    (attr smd)
+    (fp_text reference C3 (at 0 -1.5) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 4.7uF (at 0 1.75) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 -1.5) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (pad 1 smd rect (at -1 0 180) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 1 +3V3))
+    (pad 2 smd rect (at 1 0 180) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND))
+    (model Capacitors_SMD.3dshapes/C_0805.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitors_SMD:C_0805 (layer B.Cu) (tedit 58AA8463) (tstamp 5DC6D7C4)
+    (at 107.8 87.65 180)
+    (descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
+    (tags "capacitor 0805")
+    (path /5DD31F10)
+    (attr smd)
+    (fp_text reference C5 (at 0 1.5 180) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value >2.2UF (at 0 -1.75 180) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 1.5 180) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start -1 -0.62) (end -1 0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 -0.62) (end -1 -0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.62) (end 1 -0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.62) (end 1 0.62) (layer B.Fab) (width 0.1))
+    (fp_line (start 0.5 0.85) (end -0.5 0.85) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.5 -0.85) (end 0.5 -0.85) (layer B.SilkS) (width 0.12))
+    (fp_line (start -1.75 0.88) (end 1.75 0.88) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.75 0.88) (end -1.75 -0.87) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.75 -0.87) (end 1.75 0.88) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.75 -0.87) (end -1.75 -0.87) (layer B.CrtYd) (width 0.05))
+    (pad 1 smd rect (at -1 0 180) (size 1 1.25) (layers B.Cu B.Paste B.Mask)
+      (net 24 /VCC))
+    (pad 2 smd rect (at 1 0 180) (size 1 1.25) (layers B.Cu B.Paste B.Mask)
+      (net 2 GND))
+    (model Capacitors_SMD.3dshapes/C_0805.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitors_SMD:C_0805 (layer F.Cu) (tedit 58AA8463) (tstamp 5DC6D4E5)
+    (at 109.8 92.65)
+    (descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
+    (tags "capacitor 0805")
+    (path /5DE5BCDF)
+    (attr smd)
+    (fp_text reference C4 (at 0 -1.5 180) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value [470pF] (at 0 1.75 180) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 -1.5 180) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (pad 1 smd rect (at -1 0) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 11 "Net-(C4-Pad1)"))
+    (pad 2 smd rect (at 1 0) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND))
+    (model Capacitors_SMD.3dshapes/C_0805.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Capacitors_SMD:C_0805 (layer F.Cu) (tedit 58AA8463) (tstamp 5DC68A65)
+    (at 102.1 93.7)
+    (descr "Capacitor SMD 0805, reflow soldering, AVX (see smccp.pdf)")
+    (tags "capacitor 0805")
+    (path /5DEE36ED)
+    (attr smd)
+    (fp_text reference C2 (at 0 -1.5) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 4.7uF (at 0 1.75) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 -1.5) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start -1 0.62) (end -1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 0.62) (end -1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.62) (end 1 0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.62) (end 1 -0.62) (layer F.Fab) (width 0.1))
+    (fp_line (start 0.5 -0.85) (end -0.5 -0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.5 0.85) (end 0.5 0.85) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.75 -0.88) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.75 -0.88) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end 1.75 -0.88) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.75 0.87) (end -1.75 0.87) (layer F.CrtYd) (width 0.05))
+    (pad 1 smd rect (at -1 0) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 22 "Net-(C1-Pad1)"))
+    (pad 2 smd rect (at 1 0) (size 1 1.25) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND))
+    (model Capacitors_SMD.3dshapes/C_0805.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC7525B)
+    (at 102.2 84.6)
+    (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DDB0404)
+    (attr smd)
+    (fp_text reference D1 (at 0 -1.65) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 1.65) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.86 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 23 "Net-(D1-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 4 "Net-(D1-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC74546)
+    (at 102.1 76.8 180)
+    (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DFD1F99)
+    (attr smd)
+    (fp_text reference D2 (at 0 -1.65) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 1.65) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.86 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 5 "Net-(D2-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 2 GND))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC6593E)
+    (at 109.7 12.3)
+    (descr "LED SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5E0121D1)
+    (attr smd)
+    (fp_text reference D3 (at 0 -1.65) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 1.65) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.86 0.96) (end 1 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.86 -0.96) (end -1.86 0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 -0.96) (end -1.86 -0.96) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.3) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.7 -0.6) (end -1 -0.3) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end -0.7 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 26 "Net-(D13-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 27 "Net-(D13-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC473E4)
+    (at 106 77.4125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBA50D)
+    (attr smd)
+    (fp_text reference D4 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC473F7)
+    (at 106 43.8 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBA842)
+    (attr smd)
+    (fp_text reference D5 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC6751A)
+    (at 106 94.2 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBAA77)
+    (attr smd)
+    (fp_text reference D6 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC4741D)
+    (at 106 85.8125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBAD6A)
+    (attr smd)
+    (fp_text reference D7 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC47456)
+    (at 106 60.6125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB570)
+    (attr smd)
+    (fp_text reference D10 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC47469)
+    (at 106 52.2125 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBE1B7)
+    (attr smd)
+    (fp_text reference D11 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 6 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 28 /Drain))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Shalnoff:USB_A_SMT_MALE_PCB (layer F.Cu) (tedit 5440EABD) (tstamp 5DC92FCD)
+    (at 106 109.925 90)
+    (path /5DBC8501)
+    (attr virtual)
+    (fp_text reference J1 (at 4.9 -5.2 270) (layer F.SilkS) hide
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (fp_text value USB_A_SMT_MALE_PCB (at 7.8 -5.2 90) (layer F.SilkS) hide
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (fp_line (start 0 -6.1) (end 0 6.1) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 11.5 6.1) (end 0 6.1) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 11.5 -6.1) (end 11.5 6.1) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 0 -6.1) (end 11.5 -6.1) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 0.6 -6.1) (end 0.6 6.1) (layer Dwgs.User) (width 0.01))
+    (fp_line (start 9 -6.1) (end 9 6.1) (layer Dwgs.User) (width 0.01))
+    (fp_text user "Front clearance" (at 0.4 0) (layer Cmts.User) hide
+      (effects (font (size 0.3 0.3) (thickness 0.05)))
+    )
+    (fp_text user "Insertion depth" (at 8.7 0) (layer Cmts.User) hide
+      (effects (font (size 0.3 0.3) (thickness 0.05)))
+    )
+    (fp_text user + (at 4.925 5.1 90) (layer F.SilkS)
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (fp_text user - (at 4.925 -5.2 90) (layer F.SilkS)
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (fp_text user DP (at 1.9 -2.4 90) (layer F.SilkS)
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (fp_text user DN (at 1.9 2.4 90) (layer F.SilkS)
+      (effects (font (size 0.6 0.6) (thickness 0.127)))
+    )
+    (pad 3 smd rect (at 5.225 -1.27 90) (size 7.75 1.1) (layers F.Cu F.Mask)
+      (net 8 "Net-(J1-Pad3)"))
+    (pad 2 smd rect (at 5.225 1.27 90) (size 7.75 1.1) (layers F.Cu F.Mask)
+      (net 7 "Net-(J1-Pad2)"))
+    (pad 1 smd rect (at 4.85 3.81 90) (size 8.5 1.5) (layers F.Cu F.Mask)
+      (net 22 "Net-(C1-Pad1)"))
+    (pad 4 smd rect (at 4.85 -3.81 90) (size 8.5 1.5) (layers F.Cu F.Mask)
+      (net 2 GND))
+  )
+
+  (module digikey-footprints:SOT-23-3 (layer B.Cu) (tedit 5D28A5E3) (tstamp 5DC7CD53)
+    (at 108.8 17.55 90)
+    (path /5E33C7DE)
+    (attr smd)
+    (fp_text reference Q1 (at 0.025 3.375 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 2N7002 (at 0.025 -3.25 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start 0.7 -1.52) (end 0.7 1.52) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.7 -1.52) (end 0.7 -1.52) (layer B.Fab) (width 0.1))
+    (fp_text user %R (at -0.125 -0.15 90) (layer B.Fab) hide
+      (effects (font (size 0.25 0.25) (thickness 0.05)) (justify mirror))
+    )
+    (fp_line (start 0.825 1.65) (end 0.825 1.35) (layer B.SilkS) (width 0.1))
+    (fp_line (start 0.45 1.65) (end 0.825 1.65) (layer B.SilkS) (width 0.1))
+    (fp_line (start 0.825 -1.65) (end 0.375 -1.65) (layer B.SilkS) (width 0.1))
+    (fp_line (start 0.825 -1.35) (end 0.825 -1.65) (layer B.SilkS) (width 0.1))
+    (fp_line (start 0.825 -1.425) (end 0.825 -1.3) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.825 -1.65) (end -0.825 -1.3) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.35 -1.65) (end -0.825 -1.65) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.425 1.525) (end -0.7 1.325) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.425 1.525) (end 0.7 1.525) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.7 1.325) (end -0.7 -1.525) (layer B.Fab) (width 0.1))
+    (fp_line (start -0.825 1.325) (end -1.6 1.325) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.825 1.375) (end -0.825 1.325) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.45 1.65) (end -0.825 1.375) (layer B.SilkS) (width 0.1))
+    (fp_line (start -0.175 1.65) (end -0.45 1.65) (layer B.SilkS) (width 0.1))
+    (fp_line (start 1.825 1.95) (end 1.825 -1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.825 -1.95) (end -1.825 -1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.825 1.95) (end -1.825 -1.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.825 1.95) (end 1.825 1.95) (layer B.CrtYd) (width 0.05))
+    (pad 1 smd rect (at -1.05 0.95 90) (size 1.3 0.6) (layers B.Cu B.Paste B.Mask)
+      (net 26 "Net-(D13-Pad2)") (solder_mask_margin 0.07))
+    (pad 2 smd rect (at -1.05 -0.95 90) (size 1.3 0.6) (layers B.Cu B.Paste B.Mask)
+      (net 3 "Net-(BZ1-Pad1)") (solder_mask_margin 0.07))
+    (pad 3 smd rect (at 1.05 0 90) (size 1.3 0.6) (layers B.Cu B.Paste B.Mask)
+      (net 1 +3V3) (solder_mask_margin 0.07))
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DC6C999)
+    (at 102.85 86.65 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DE819BA)
+    (attr smd)
+    (fp_text reference R4 (at 0 1.65 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 470 (at 0 -1.65 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 23 "Net-(D1-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 22 "Net-(C1-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DC744EF)
+    (at 101.25 82.15 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DFD1897)
+    (attr smd)
+    (fp_text reference R5 (at 0 -1.65 270) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 470 (at 0 1.65 270) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 270) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 5 "Net-(D2-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 4 "Net-(D1-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DC697B7)
+    (at 101.925 96.1 180)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DE395AF)
+    (attr smd)
+    (fp_text reference R6 (at 0 -1.65 180) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value "5K (200mA)" (at 0 1.65 180) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 180) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 180) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -1.025 0 180) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 9 "Net-(R6-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DD023EE)
+    (at 101.75 67.7 270)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC63B88)
+    (attr smd)
+    (fp_text reference R7 (at 0 -1.65 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value RESISTOR0805 (at 0 1.65 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 20 "Net-(R7-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 1 +3V3))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DD0243F)
+    (at 101.7 71.65 270)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC67D82)
+    (attr smd)
+    (fp_text reference R8 (at 0 -1.65 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value RESISTOR0805 (at 0 1.65 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -1.025 0 270) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 20 "Net-(R7-Pad2)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DC669DA)
+    (at 110.8 96.6 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC80BBF)
+    (attr smd)
+    (fp_text reference R1 (at 0 1.65 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 68 (at 0 -1.65 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 17 "Net-(J2-Pad8)"))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 8 "Net-(J1-Pad3)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DC6A057)
+    (at 101.1 96.5 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DCC28CC)
+    (attr smd)
+    (fp_text reference R2 (at 0 1.65 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value "2K2 (1K5)" (at 0 -1.65 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 7 "Net-(J1-Pad2)"))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 22 "Net-(C1-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DC7CCE1)
+    (at 109.7 14.4)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC8FBDE)
+    (attr smd)
+    (fp_text reference R9 (at 0 1.65 180) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 220R (at 0 -1.65 180) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 180) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 27 "Net-(D13-Pad1)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DD04E02)
+    (at 109.1 81.3)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC9745B)
+    (attr smd)
+    (fp_text reference R11 (at 0 1.65) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 10K (at 0 -1.65) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 2 GND))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 29 /Gate))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DC6A7E9)
+    (at 110.05 84.4)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC54CBB)
+    (attr smd)
+    (fp_text reference R12 (at 0 -1.65 180) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 1R (at 0 1.65 180) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 180) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 1 +3V3))
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 6 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer B.Cu) (tedit 5B36C52B) (tstamp 5DC69D39)
+    (at 101.15 92.65 90)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC811B8)
+    (attr smd)
+    (fp_text reference R3 (at 0 1.65 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value 68 (at 0 -1.65 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)) (justify mirror))
+    )
+    (fp_line (start 1.85 -0.95) (end -1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end 1.85 -0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 0.95) (end 1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end -1.85 0.95) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer B.SilkS) (width 0.12))
+    (fp_line (start 1 -0.6) (end -1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end 1 -0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 0.6) (end 1 0.6) (layer B.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end -1 0.6) (layer B.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 16 "Net-(J2-Pad7)"))
+    (pad 1 smd roundrect (at -1.025 0 90) (size 1.15 1.4) (layers B.Cu B.Paste B.Mask) (roundrect_rratio 0.217391)
+      (net 7 "Net-(J1-Pad2)"))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Switches:SWITCH_SPST_SMD_A (layer B.Cu) (tedit 200000) (tstamp 5DC7B0C3)
+    (at 101.8 15.55 270)
+    (descr "SPDT SLIDE SWITCH - SMD")
+    (tags "SPDT SLIDE SWITCH - SMD")
+    (path /5DFADD4B)
+    (attr smd)
+    (fp_text reference S1 (at 1.905 2.032 270) (layer B.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)) (justify mirror))
+    )
+    (fp_text value SWITCH-SPDT-PTH-11.6X4.0MM (at 0 -3.175 270) (layer B.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)) (justify mirror))
+    )
+    (fp_line (start 1.6256 -1.42494) (end -0.127 -1.42494) (layer B.SilkS) (width 0.2032))
+    (fp_line (start 2.69748 1.42494) (end -2.69748 1.42494) (layer B.SilkS) (width 0.2032))
+    (fp_line (start 3.47472 0.42672) (end 3.47472 -0.42672) (layer B.SilkS) (width 0.2032))
+    (fp_line (start -3.47472 0.42672) (end -3.47472 -0.42672) (layer B.SilkS) (width 0.2032))
+    (fp_line (start -1.39954 2.79908) (end -1.39954 1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -0.09906 2.79908) (end -1.39954 2.79908) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -0.09906 1.29794) (end -0.09906 2.79908) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -1.39954 1.29794) (end -3.34772 1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -0.09906 1.29794) (end -1.39954 1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 3.34772 1.29794) (end -0.09906 1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 3.34772 -1.29794) (end 3.34772 1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -3.34772 -1.29794) (end 3.34772 -1.29794) (layer Dwgs.User) (width 0.127))
+    (fp_line (start -3.34772 1.29794) (end -3.34772 -1.29794) (layer Dwgs.User) (width 0.127))
+    (pad "" np_thru_hole circle (at 1.4986 0 270) (size 0.89916 0.89916) (drill 0.89916) (layers *.Cu *.Mask)
+      (solder_mask_margin 0.1016))
+    (pad "" np_thru_hole circle (at -1.4986 0 270) (size 0.89916 0.89916) (drill 0.89916) (layers *.Cu *.Mask)
+      (solder_mask_margin 0.1016))
+    (pad GND4 smd rect (at 3.64998 -1.09982 270) (size 0.99822 0.79756) (layers B.Cu B.Paste B.Mask)
+      (solder_mask_margin 0.1016))
+    (pad GND3 smd rect (at 3.64998 0.99822 270) (size 0.99822 0.59944) (layers B.Cu B.Paste B.Mask)
+      (solder_mask_margin 0.1016))
+    (pad GND2 smd rect (at -3.64998 -1.09982 270) (size 0.99822 0.79756) (layers B.Cu B.Paste B.Mask)
+      (solder_mask_margin 0.1016))
+    (pad GND1 smd rect (at -3.64998 0.99822 270) (size 0.99822 0.59944) (layers B.Cu B.Paste B.Mask)
+      (solder_mask_margin 0.1016))
+    (pad 3 smd rect (at 2.2479 -1.74752 90) (size 0.6985 1.4986) (layers B.Cu B.Paste B.Mask)
+      (net 1 +3V3) (solder_mask_margin 0.1016))
+    (pad 2 smd rect (at -0.7493 -1.74752 90) (size 0.6985 1.4986) (layers B.Cu B.Paste B.Mask)
+      (net 10 "Net-(S1-Pad2)") (solder_mask_margin 0.1016))
+    (pad 1 smd rect (at -2.2479 -1.74752 90) (size 0.6985 1.4986) (layers B.Cu B.Paste B.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+  )
+
+  (module Switches:TACTILE_SWITCH_SMD_5.2MM (layer F.Cu) (tedit 200000) (tstamp 5DC94CC0)
+    (at 102.945 18.344 270)
+    (descr "MOMENTARY SWITCH (PUSHBUTTON) - SPST - SMD, 5.2MM SQUARE")
+    (tags "MOMENTARY SWITCH (PUSHBUTTON) - SPST - SMD, 5.2MM SQUARE")
+    (path /5DC102D0)
+    (attr smd)
+    (fp_text reference S2 (at 0 -3.175 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_text value MOMENTARY-SWITCH-SPST-2-SMD-5.2MM (at 0 3.175 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_circle (center 0 0) (end 0 -1.27) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 1.905 0.2286) (end 1.905 1.11252) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.905 -0.4445) (end 2.159 0.00762) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.905 -1.27) (end 1.905 -0.4445) (layer Dwgs.User) (width 0.127))
+    (fp_line (start 1.53924 2.54) (end -1.53924 2.54) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 2.54 1.53924) (end 1.53924 2.54) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start 2.54 -1.23952) (end 2.54 1.23952) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 1.53924 -2.54) (end 2.54 -1.53924) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start -1.53924 -2.54) (end 1.53924 -2.54) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -2.54 -1.53924) (end -1.53924 -2.54) (layer Dwgs.User) (width 0.2032))
+    (fp_line (start -2.54 1.23952) (end -2.54 -1.27) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -1.53924 2.54) (end -2.54 1.53924) (layer Dwgs.User) (width 0.2032))
+    (pad 4 smd rect (at 2.794 1.905) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 19 "Net-(J2-Pad10)") (solder_mask_margin 0.1016))
+    (pad 3 smd rect (at -2.794 1.905) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 19 "Net-(J2-Pad10)") (solder_mask_margin 0.1016))
+    (pad 2 smd rect (at 2.794 -1.905) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+    (pad 1 smd rect (at -2.794 -1.905) (size 0.762 1.524) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+  )
+
+  (module Silicon-Standard:SOT23-5 (layer F.Cu) (tedit 200000) (tstamp 5DC69667)
+    (at 101.7 88.6 180)
+    (descr "SMALL OUTLINE TRANSISTOR")
+    (tags "SMALL OUTLINE TRANSISTOR")
+    (path /5DC01989)
+    (attr smd)
+    (fp_text reference U1 (at -2.032 0 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_text value MCP73831 (at 2.159 0 90) (layer F.SilkS) hide
+      (effects (font (size 0.6096 0.6096) (thickness 0.127)))
+    )
+    (fp_line (start -1.39954 -0.79756) (end -1.39954 0.79756) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start 1.39954 -0.79756) (end 1.39954 0.79756) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start -0.2667 -0.81026) (end 0.2667 -0.81026) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -1.39954 -0.79756) (end 1.39954 -0.79756) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start -1.4224 0.42926) (end -1.4224 -0.42926) (layer F.SilkS) (width 0.2032))
+    (fp_line (start 1.39954 0.79756) (end -1.39954 0.79756) (layer Dwgs.User) (width 0.1524))
+    (fp_line (start 1.4224 -0.42926) (end 1.4224 0.42926) (layer F.SilkS) (width 0.2032))
+    (fp_line (start -1.19888 -0.84836) (end -1.19888 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -1.19888 -1.4986) (end -0.6985 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -0.6985 -0.84836) (end -0.6985 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -1.19888 -0.84836) (end -0.6985 -0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 -0.84836) (end 0.6985 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 -1.4986) (end 1.19888 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 1.19888 -0.84836) (end 1.19888 -1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 -0.84836) (end 1.19888 -0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 1.4986) (end 0.6985 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 0.84836) (end 1.19888 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 1.19888 1.4986) (end 1.19888 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.6985 1.4986) (end 1.19888 1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -0.24892 1.4986) (end -0.24892 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -0.24892 0.84836) (end 0.24892 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start 0.24892 1.4986) (end 0.24892 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -0.24892 1.4986) (end 0.24892 1.4986) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -1.19888 1.4986) (end -1.19888 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -1.19888 0.84836) (end -0.6985 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -0.6985 1.4986) (end -0.6985 0.84836) (layer Dwgs.User) (width 0.06604))
+    (fp_line (start -1.19888 1.4986) (end -0.6985 1.4986) (layer Dwgs.User) (width 0.06604))
+    (pad 5 smd rect (at -0.94996 -1.29794 180) (size 0.54864 1.19888) (layers F.Cu F.Paste F.Mask)
+      (net 9 "Net-(R6-Pad1)") (solder_mask_margin 0.1016))
+    (pad 4 smd rect (at 0.94996 -1.29794 180) (size 0.54864 1.19888) (layers F.Cu F.Paste F.Mask)
+      (net 22 "Net-(C1-Pad1)") (solder_mask_margin 0.1016))
+    (pad 3 smd rect (at 0.94996 1.29794 180) (size 0.54864 1.19888) (layers F.Cu F.Paste F.Mask)
+      (net 1 +3V3) (solder_mask_margin 0.1016))
+    (pad 2 smd rect (at 0 1.29794 180) (size 0.54864 1.19888) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND) (solder_mask_margin 0.1016))
+    (pad 1 smd rect (at -0.94996 1.29794 180) (size 0.54864 1.19888) (layers F.Cu F.Paste F.Mask)
+      (net 4 "Net-(D1-Pad1)") (solder_mask_margin 0.1016))
+  )
+
+  (module Package_TO_SOT_SMD:SOT-23-5 (layer F.Cu) (tedit 5A02FF57) (tstamp 5DC63752)
+    (at 110.05 89.15 270)
+    (descr "5-pin SOT23 package")
+    (tags SOT-23-5)
+    (path /5DC01F70)
+    (attr smd)
+    (fp_text reference U2 (at 0 -2.9 270) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value MIC5205-3.3YM5 (at 0 2.9 270) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 0.9 -1.55) (end 0.9 1.55) (layer F.Fab) (width 0.1))
+    (fp_line (start 0.9 1.55) (end -0.9 1.55) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.9 -0.9) (end -0.9 1.55) (layer F.Fab) (width 0.1))
+    (fp_line (start 0.9 -1.55) (end -0.25 -1.55) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.9 -0.9) (end -0.25 -1.55) (layer F.Fab) (width 0.1))
+    (fp_line (start -1.9 1.8) (end -1.9 -1.8) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.9 1.8) (end -1.9 1.8) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.9 -1.8) (end 1.9 1.8) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.9 -1.8) (end 1.9 -1.8) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 0.9 -1.61) (end -1.55 -1.61) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.9 1.61) (end 0.9 1.61) (layer F.SilkS) (width 0.12))
+    (fp_text user %R (at 0 0 180) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.075)))
+    )
+    (pad 5 smd rect (at 1.1 -0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
+      (net 24 /VCC))
+    (pad 4 smd rect (at 1.1 0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
+      (net 11 "Net-(C4-Pad1)"))
+    (pad 3 smd rect (at -1.1 0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
+      (net 10 "Net-(S1-Pad2)"))
+    (pad 2 smd rect (at -1.1 0 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
+      (net 2 GND))
+    (pad 1 smd rect (at -1.1 -0.95 270) (size 1.06 0.65) (layers F.Cu F.Paste F.Mask)
+      (net 1 +3V3))
+    (model ${KISYS3DMOD}/Package_TO_SOT_SMD.3dshapes/SOT-23-5.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module digikey-footprints:SOIC-8_W5.3mm (layer B.Cu) (tedit 5D28A54C) (tstamp 5DC6FC8C)
+    (at 102.95 79.9 90)
+    (descr http://ww1.microchip.com/downloads/en/DeviceDoc/Atmel-2586-AVR-8-bit-Microcontroller-ATtiny25-ATtiny45-ATtiny85_Datasheet-Summary.pdf)
+    (path /5DFE55A4)
+    (attr smd)
+    (fp_text reference U3 (at 0 4.25 90) (layer B.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_text value ATTINY85-20SU (at 0 -4.25 90) (layer B.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)) (justify mirror))
+    )
+    (fp_line (start -1.995 -2.49) (end 1.995 -2.49) (layer B.Fab) (width 0.1))
+    (fp_line (start 1.995 -2.49) (end 1.995 2.49) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 2.25) (end -1.75 2.5) (layer B.Fab) (width 0.1))
+    (fp_line (start 1.99 2.5) (end -1.75 2.5) (layer B.Fab) (width 0.1))
+    (fp_line (start -2 -2.49) (end -2 2.25) (layer B.Fab) (width 0.1))
+    (fp_text user %R (at 0 0 90) (layer B.Fab) hide
+      (effects (font (size 0.7 0.7) (thickness 0.07)) (justify mirror))
+    )
+    (fp_line (start -2.1 2.32) (end -2.8 2.32) (layer B.SilkS) (width 0.1))
+    (fp_line (start -1.8 2.62) (end -2.1 2.32) (layer B.SilkS) (width 0.1))
+    (fp_line (start 2.1 2.6) (end 2.1 2.4) (layer B.SilkS) (width 0.1))
+    (fp_line (start 1.4 2.6) (end 2.1 2.6) (layer B.SilkS) (width 0.1))
+    (fp_line (start 2.1 -2.6) (end 1.5 -2.6) (layer B.SilkS) (width 0.1))
+    (fp_line (start 2.1 -2.4) (end 2.1 -2.6) (layer B.SilkS) (width 0.1))
+    (fp_line (start -2.1 -2.6) (end -1.4 -2.6) (layer B.SilkS) (width 0.1))
+    (fp_line (start -2.1 -2.4) (end -2.1 -2.6) (layer B.SilkS) (width 0.1))
+    (fp_line (start -3.75 -2.75) (end 3.5 -2.75) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -3.75 2.75) (end -3.75 -2.75) (layer B.CrtYd) (width 0.05))
+    (fp_line (start 3.5 2.75) (end 3.5 -2.75) (layer B.CrtYd) (width 0.05))
+    (fp_line (start -3.75 2.75) (end 3.5 2.75) (layer B.CrtYd) (width 0.05))
+    (pad 8 smd rect (at 2.465 1.905 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 24 /VCC))
+    (pad 7 smd rect (at 2.465 0.635 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 19 "Net-(J2-Pad10)"))
+    (pad 6 smd rect (at 2.465 -0.635 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 25 "Net-(JP1-Pad2)"))
+    (pad 5 smd rect (at 2.465 -1.905 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 29 /Gate))
+    (pad 1 smd rect (at -2.465 1.905 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 21 "Net-(R10-Pad1)"))
+    (pad 4 smd rect (at -2.465 -1.905 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 2 GND))
+    (pad 2 smd rect (at -2.465 0.635 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 20 "Net-(R7-Pad2)"))
+    (pad 3 smd rect (at -2.465 -0.635 90) (size 1.6 0.7) (layers B.Cu B.Paste B.Mask)
+      (net 18 "Net-(J2-Pad9)"))
+  )
+
+  (gr_text https://dailybeer.eu/merch/lightstick (at 109.8 58.6 90) (layer F.SilkS) (tstamp 5DC9210D)
+    (effects (font (size 1 1) (thickness 0.13)) (justify left))
+  )
+  (gr_text "Pocket photo-lightstick     rev 0.1 (1119)" (at 102.15 58.55 90) (layer F.SilkS)
+    (effects (font (size 1 1) (thickness 0.13)) (justify left))
+  )
+  (gr_line (start 102 110) (end 110 110) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530DC))
+  (gr_arc (start 110 108) (end 110 110) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530D0))
+  (gr_arc (start 102 108) (end 100 108) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530CF))
+  (gr_line (start 102 10) (end 110 10) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530CA))
+  (gr_arc (start 102 12) (end 102 10) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530C5))
+  (gr_arc (start 110 12) (end 112 12) (angle -90) (layer Edge.Cuts) (width 0.12))
+  (gr_line (start 112 12) (end 112 108) (layer Edge.Cuts) (width 0.12) (tstamp 5DC53073))
+  (gr_line (start 100 12) (end 100 108) (layer Edge.Cuts) (width 0.12))
+
+  (segment (start 111 84.475) (end 111.075 84.4) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 111 86.5) (end 111 84.475) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 110.95 88.45) (end 111 88.4) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 111 88.546484) (end 111 88.05) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 110.88999 89.1) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 111 88.05) (end 111 88.98999) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 111 88.98999) (end 110.88999 89.1) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 111 88.05) (end 111 86.5) (width 0.5) (layer F.Cu) (net 1))
+  (via (at 103.5 61.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (via (at 111.30001 73.65) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 111.30001 69.70001) (end 103.5 61.9) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 111.30001 73.65) (end 111.30001 69.70001) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 101.75 63.65) (end 101.75 66.675) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 103.5 61.9) (end 101.75 63.65) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 111.30001 84.17499) (end 111.075 84.4) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 111.30001 73.65) (end 111.30001 84.17499) (width 0.5) (layer F.Cu) (net 1))
+  (via (at 105.709234 93.687947) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 104.002947 93.687947) (end 103.815 93.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 105.709234 93.687947) (end 104.002947 93.687947) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 101 23.9) (end 101 25.65) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 100.85 26) (end 100.85 59.05) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 100.85 59.25) (end 103.5 61.9) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 100.85 59.05) (end 100.85 59.25) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 101 25.85) (end 100.85 26) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 101 25.65) (end 101 25.85) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 109.43999 90.55) (end 110.88999 89.1) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 106.559998 90.55) (end 109.43999 90.55) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 103.815 93.5) (end 104.5 93.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 101.75 21.4) (end 101 22.15) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 109.05 16.5) (end 104.49655 16.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 101 22.15) (end 101 23.9) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 104.49655 16.5) (end 103.6 17.39655) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 101.75 18.5) (end 101.75 21.4) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 103.6 17.39655) (end 103.6 17.9958) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 103.6 17.9958) (end 102.2542 17.9958) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 102.2542 17.9958) (end 101.75 18.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 106.559998 90.55) (end 105.754284 91.355714) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 104.605 93.5) (end 103.815 93.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 105.754284 91.355714) (end 105.754284 92.075716) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 105.754284 92.075716) (end 104.86 92.97) (width 0.4) (layer B.Cu) (net 1))
+  (segment (start 104.345 92.97) (end 103.815 93.5) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 104.86 92.97) (end 104.345 92.97) (width 0.25) (layer B.Cu) (net 1))
+  (segment (start 104.887947 93.687947) (end 103.4 92.2) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 103.4 92.2) (end 103.4 88.886448) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 104.887947 93.687947) (end 105.709234 93.687947) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 103.313552 88.8) (end 103.4 88.886448) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 101.39854 88.8) (end 103.313552 88.8) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 100.75004 87.30206) (end 100.75004 88.1515) (width 0.4) (layer F.Cu) (net 1))
+  (segment (start 100.75004 88.1515) (end 101.39854 88.8) (width 0.4) (layer F.Cu) (net 1))
+  (via (at 106 12.55) (size 3) (drill 2) (layers F.Cu B.Cu) (net 2) (tstamp 5DC7661D))
+  (via (at 103.4 99.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 103.97501 98.67499) (end 103.4 99.25) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 103.97501 94.30001) (end 103.97501 98.67499) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 103.1 93.3) (end 103.1 93.425) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.1 93.425) (end 103.97501 94.30001) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 103.4 99.25) (end 102.9 99.75) (width 0.25) (layer B.Cu) (net 2))
+  (via (at 101.4 99.75) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 102.9 99.75) (end 101.4 99.75) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 102.19 100.54) (end 102.19 105.075) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 101.4 99.75) (end 102.19 100.54) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 101.025 99.375) (end 101.4 99.75) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 101.025 95.45) (end 101.025 99.375) (width 0.4) (layer F.Cu) (net 2) (tstamp 5DD40493))
+  (segment (start 109.9 94.2625) (end 109.9 94.2) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 100.85 86) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 100.85 82.37) (end 100.845 82.365) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 109.95 94.3125) (end 110.8 93.4625) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 110.8 92.125) (end 110.05 91.375) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 110.8 93.4625) (end 110.8 92.125) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 110.05 91.375) (end 110.05 88.05) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 110.05 87.55) (end 110.05 88.05) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 109 86.5) (end 110.05 87.55) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 109.899998 86.445002) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 109.054998 86.445002) (end 109 86.5) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 109.899998 86.445002) (end 109.054998 86.445002) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 101.7 86.45) (end 101.7 87.30206) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.025 78.025) (end 103.025 77.15) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 106.6 87.4) (end 106.6 87.275) (width 0.25) (layer B.Cu) (net 2))
+  (via (at 105.65 87.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106.8 87.65) (end 106.05 87.65) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 106.05 87.65) (end 105.65 87.25) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 101.7 88.1515) (end 101.7 87.30206) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.184281 88.226501) (end 101.775001 88.226501) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 101.775001 88.226501) (end 101.7 88.1515) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 104.160782 87.25) (end 103.184281 88.226501) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 105.65 87.25) (end 104.160782 87.25) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 103.1 74.6) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 103.125 73.725) (end 103.1 73.7) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.125 76.8) (end 103.125 73.725) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 101.7 72.675) (end 102.075 72.675) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 103.3 70.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2) (tstamp 5DD05B4C))
+  (segment (start 101.7 72.675) (end 102.225 72.675) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.6 13.5) (end 103.7 13.5) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 103.7 13.5) (end 104 13.2) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 104.274 14.406) (end 104.905 14.406) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 104 14.132) (end 104.274 14.406) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 109.4 72.7) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 103.55 73.25) (end 103.65 73.25) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 103.1 73.7) (end 103.55 73.25) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 101.415685 86) (end 101.7 86.284315) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 100.85 86) (end 101.415685 86) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 101.7 86.284315) (end 101.7 86.45) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 101.15 62.1) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 111 23.9) (end 111 24.4) (width 0.25) (layer B.Cu) (net 2))
+  (via (at 103.7 59) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 111 64.55) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 111 60.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 103.9 50.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 103.9 42.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 103.8 34.1) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 103.3 26.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 108.2 36.7) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 108.2 28.1) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 108.1 45.2) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 108.1 53.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 111 23.9) (end 110.55 23.9) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 107.95 26.5) (end 107.95 28.4) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 110.55 23.9) (end 107.95 26.5) (width 0.4) (layer B.Cu) (net 2))
+  (via (at 104.15 11.45) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 104 14.132) (end 104 11.6) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 104 11.6) (end 104.15 11.45) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 104.15 12.69962) (end 103.54752 13.3021) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 104.15 11.45) (end 104.15 12.69962) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 104.0625 22) (end 105.4 22) (width 0.25) (layer B.Cu) (net 2))
+  (via (at 105.9 22.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 105.4 22) (end 105.9 22.5) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 105.9 22.188) (end 104.85 21.138) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 105.9 22.5) (end 105.9 22.188) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 102.15 79.02) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 103.025 78.025) (end 102 79.05) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 102 79.05) (end 100.845 80.205) (width 0.25) (layer B.Cu) (net 2))
+  (segment (start 107.95 73.25) (end 103.65 73.25) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 108.5 72.7) (end 109.5 72.7) (width 0.4) (layer F.Cu) (net 2))
+  (segment (start 107.95 73.25) (end 108.5 72.7) (width 0.4) (layer F.Cu) (net 2))
+  (via (at 106.2 67.8) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 102.5 64.7) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 108.1 18.6) (end 108.1 21.15) (width 0.25) (layer B.Cu) (net 3))
+  (segment (start 108.1 21.15) (end 108.2 21.25) (width 0.25) (layer B.Cu) (net 3))
+  (segment (start 101.225 84.25) (end 101.225 82.35) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 102.64996 85.67496) (end 102.64996 87.30206) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 101.225 84.25) (end 102.64996 85.67496) (width 0.25) (layer F.Cu) (net 4))
+  (segment (start 100.482694 80.057694) (end 101.3 80.875) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 100.975 77.15) (end 100.975 77.95) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 100.482694 78.442306) (end 100.482694 80.057694) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 100.975 77.95) (end 100.482694 78.442306) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 108.725 84.65) (end 109.075 84.3) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 105.4 83.425) (end 106 82.825) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.1714 90.37929) (end 108.174999 89.375691) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.83321 90.37929) (end 107.1714 90.37929) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 91.2125) (end 106.83321 90.37929) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.112081 86.958493) (end 107.112081 85.637919) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.35 84.4) (end 109.025 84.4) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.174999 88.021411) (end 107.112081 86.958493) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.112081 85.637919) (end 108.35 84.4) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.174999 89.375691) (end 108.174999 88.021411) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.799161 85.324999) (end 107.112081 85.637919) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 105.251997 85.324999) (end 106.799161 85.324999) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 104.500009 83.926989) (end 104.500009 84.573011) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 104.500009 84.573011) (end 105.251997 85.324999) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 105.601998 82.825) (end 104.500009 83.926989) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 82.825) (end 105.601998 82.825) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.83321 65.19179) (end 107.50821 65.19179) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 66.025) (end 106.83321 65.19179) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.00001 60.323103) (end 106.751908 59.075001) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.50821 65.19179) (end 108.00001 64.69999) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.00001 64.69999) (end 108.00001 60.323103) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 58.323093) (end 106.751908 59.075001) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 57.625) (end 106 58.323093) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.275153 74.425) (end 106 74.425) (width 0.25) (layer F.Cu) (net 6))
+  (via (at 109.1 73.8) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106 66.55) (end 106 66.025) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.65 72.309412) (end 109.425011 71.534401) (width 0.25) (layer B.Cu) (net 6))
+  (via (at 106.375 50.7) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106 49.225) (end 106 50.325) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 50.325) (end 106.375 50.7) (width 0.25) (layer F.Cu) (net 6))
+  (via (at 106.375 42.35) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106.375 50.7) (end 106.375 42.35) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106.375 41.1875) (end 106 40.8125) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.375 42.35) (end 106.375 41.1875) (width 0.25) (layer F.Cu) (net 6))
+  (via (at 106.375 34) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106.375 42.35) (end 106.375 34) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106.375 32.8) (end 106 32.425) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.375 34) (end 106.375 32.8) (width 0.25) (layer F.Cu) (net 6))
+  (via (at 106.075 25.6) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106.375 34) (end 106.375 25.9) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106.375 25.9) (end 106.075 25.6) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106.075 24) (end 106 23.925) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.075 25.6) (end 106.075 24) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106.375 50.7) (end 106.375 58.613063) (width 0.25) (layer B.Cu) (net 6))
+  (via (at 106.761937 59) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 106.375 58.613063) (end 106.761937 59) (width 0.25) (layer B.Cu) (net 6))
+  (via (at 108.786501 69.438193) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 6))
+  (segment (start 109.425011 71.534401) (end 109.425011 70.076703) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 109.425011 70.076703) (end 108.786501 69.438193) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106 66.651692) (end 106 66.025) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.786501 69.438193) (end 106 66.651692) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.65 73.35) (end 109.1 73.8) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 108.65 72.309412) (end 108.65 73.35) (width 0.25) (layer B.Cu) (net 6))
+  (segment (start 106.625 73.8) (end 106 74.425) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 109.1 73.8) (end 106.625 73.8) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.275001 79.005001) (end 106 76.73) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 108.275001 82.324999) (end 108.275001 79.005001) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 76.73) (end 106 74.425) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 107.775 82.825) (end 108.275001 82.324999) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 82.825) (end 107.775 82.825) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 101.15 95.425) (end 101.1 95.475) (width 0.25) (layer B.Cu) (net 7))
+  (segment (start 101.15 93.675) (end 101.15 95.425) (width 0.25) (layer B.Cu) (net 7))
+  (via (at 105.85 99.425) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 7))
+  (segment (start 107.27 100.279315) (end 107.27 100.575) (width 0.25) (layer F.Cu) (net 7))
+  (segment (start 106.415685 99.425) (end 107.27 100.279315) (width 0.25) (layer F.Cu) (net 7))
+  (segment (start 107.27 100.575) (end 107.27 104.7) (width 0.25) (layer F.Cu) (net 7))
+  (segment (start 105.85 99.425) (end 106.415685 99.425) (width 0.25) (layer F.Cu) (net 7))
+  (segment (start 101.1 95.475) (end 102.075 96.45) (width 0.25) (layer B.Cu) (net 7))
+  (segment (start 105.85 98.859315) (end 105.85 99.425) (width 0.25) (layer B.Cu) (net 7))
+  (segment (start 105.85 97.159998) (end 105.85 98.859315) (width 0.25) (layer B.Cu) (net 7))
+  (segment (start 105.140002 96.45) (end 105.85 97.159998) (width 0.25) (layer B.Cu) (net 7))
+  (segment (start 102.075 96.45) (end 105.140002 96.45) (width 0.25) (layer B.Cu) (net 7))
+  (via (at 104.75 100.35) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 8))
+  (segment (start 110.8 97.625) (end 108.075 100.35) (width 0.25) (layer B.Cu) (net 8))
+  (segment (start 108.075 100.35) (end 104.75 100.35) (width 0.25) (layer B.Cu) (net 8))
+  (segment (start 104.75 104.68) (end 104.73 104.7) (width 0.25) (layer F.Cu) (net 8))
+  (segment (start 104.75 100.35) (end 104.75 104.68) (width 0.25) (layer F.Cu) (net 8))
+  (segment (start 102.95 95.3) (end 102.95 96.1) (width 0.25) (layer F.Cu) (net 9))
+  (segment (start 102.274999 94.624999) (end 102.95 95.3) (width 0.25) (layer F.Cu) (net 9))
+  (segment (start 102.64996 91.14738) (end 102.274999 91.522341) (width 0.25) (layer F.Cu) (net 9))
+  (segment (start 102.274999 91.522341) (end 102.274999 94.624999) (width 0.25) (layer F.Cu) (net 9))
+  (segment (start 102.64996 89.89794) (end 102.64996 91.14738) (width 0.25) (layer F.Cu) (net 9))
+  (via (at 103.5 16.35) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 10))
+  (segment (start 103.5 15.0986) (end 103.6 14.9986) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 103.5 16.35) (end 103.5 15.0986) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 103.5 21.1) (end 103.5 16.35) (width 0.25) (layer F.Cu) (net 10))
+  (via (at 103.5 24.6) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 10))
+  (segment (start 103.5 24.6) (end 103.5 21.1) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 108.839998 88.05) (end 109.1 88.05) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 108.05 87.260002) (end 108.839998 88.05) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 104.924999 26.590684) (end 103.5 25.165685) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 104.924999 60.748001) (end 104.924999 26.590684) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 109.6 65.4) (end 109.576998 65.4) (width 0.25) (layer B.Cu) (net 10))
+  (via (at 110.6 66.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 10))
+  (segment (start 110.6 66.4) (end 109.6 65.4) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 103.5 25.165685) (end 103.5 24.6) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 110.6 66.4) (end 110.6 66.85002) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 110.6 66.85002) (end 110.57501 66.87501) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 110.57501 66.87501) (end 110.57501 82.53818) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 110.57501 82.53818) (end 110.1 83.01319) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 110.1 83.01319) (end 110.1 84.91319) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 109.576998 65.4) (end 104.924999 60.748001) (width 0.25) (layer B.Cu) (net 10))
+  (segment (start 110.1 84.91319) (end 109.58818 85.42501) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 109.58818 85.42501) (end 108.46182 85.42501) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 108.05 85.83683) (end 108.05 87.260002) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 108.46182 85.42501) (end 108.05 85.83683) (width 0.25) (layer F.Cu) (net 10))
+  (segment (start 109.1 91.95) (end 108.8 92.25) (width 0.25) (layer F.Cu) (net 11))
+  (segment (start 109.1 90.6) (end 109.1 91.95) (width 0.25) (layer F.Cu) (net 11))
+  (segment (start 103.69 91.625) (end 103.815 91.5) (width 0.25) (layer B.Cu) (net 16))
+  (segment (start 101.15 91.625) (end 103.69 91.625) (width 0.25) (layer B.Cu) (net 16))
+  (segment (start 108.775 91.5) (end 107.985 91.5) (width 0.25) (layer B.Cu) (net 17))
+  (segment (start 110.8 93.525) (end 108.775 91.5) (width 0.25) (layer B.Cu) (net 17))
+  (segment (start 110.8 95.575) (end 110.8 93.525) (width 0.25) (layer B.Cu) (net 17))
+  (segment (start 103.815 88.75) (end 103.815 89.5) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.575001 85.251999) (end 101.575001 86.338171) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.57499 85.251988) (end 101.575001 85.251999) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.575001 86.338171) (end 101.93683 86.7) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.93683 86.7) (end 103.75 86.7) (width 0.25) (layer B.Cu) (net 18) (tstamp 5DC88A83))
+  (segment (start 103.75 86.7) (end 104.2 87.15) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 104.2 88.365) (end 103.815 88.75) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 104.2 87.15) (end 104.2 88.365) (width 0.25) (layer B.Cu) (net 18))
+  (via (at 109.6 61.85) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18))
+  (via (at 109.6 26.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18))
+  (segment (start 109.6 61.85) (end 109.6 26.5) (width 0.25) (layer B.Cu) (net 18))
+  (via (at 107.3 70) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 18))
+  (segment (start 110.224 21.138) (end 110.855 21.138) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 109.6 21.762) (end 110.224 21.138) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 109.6 26.5) (end 109.6 21.762) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 110.855 21.138) (end 110.855 15.55) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 107.865685 70) (end 107.3 70) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 109.134502 70.163194) (end 108.028879 70.163194) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 109.6 69.697696) (end 109.134502 70.163194) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 108.028879 70.163194) (end 107.865685 70) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 109.6 61.85) (end 109.6 69.697696) (width 0.25) (layer F.Cu) (net 18))
+  (segment (start 102.315 82.365) (end 102.315 84.085) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.57499 84.82501) (end 101.57499 85.251988) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 102.315 84.085) (end 101.57499 84.82501) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 107.3 70) (end 106.03 71.27) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 106.03 71.27) (end 106.03 78.573002) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 106.03 78.573002) (end 106.03 79.14) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 106.03 79.14) (end 106.02 79.14) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 106.02 79.14) (end 105.658499 79.501501) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 105.594999 79.575001) (end 106.03 79.14) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 102.927172 79.575001) (end 105.594999 79.575001) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 102.315 82.365) (end 102.315 81.625) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 102.315 81.625) (end 101.93 81.24) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.93 80.572173) (end 102.927172 79.575001) (width 0.25) (layer B.Cu) (net 18))
+  (segment (start 101.93 81.24) (end 101.93 80.572173) (width 0.25) (layer B.Cu) (net 18))
+  (via (at 103.58 80.31) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
+  (segment (start 103.385 77.885) (end 103.385 77.435) (width 0.25) (layer B.Cu) (net 19))
+  (via (at 104.04 78.93) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
+  (segment (start 101.04 20.126) (end 101.04 21.138) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 101.025419 20.111419) (end 101.04 20.126) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 101.025419 15.945581) (end 101.025419 20.111419) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 101.04 15.931) (end 101.025419 15.945581) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 101.04 15.55) (end 101.04 15.931) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 102.65 21.7) (end 102.088 21.138) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 102.088 21.138) (end 101.04 21.138) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 102.65 25.5) (end 102.65 21.7) (width 0.25) (layer B.Cu) (net 19))
+  (via (at 102.65 21.7) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
+  (segment (start 108.75 65.75) (end 101.7 58.7) (width 0.25) (layer B.Cu) (net 19))
+  (via (at 108.75 65.75) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
+  (segment (start 108.737653 68.346743) (end 108.729005 68.355391) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 108.737653 67.462347) (end 108.737653 68.346743) (width 0.25) (layer F.Cu) (net 19))
+  (via (at 108.729005 68.355391) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 19))
+  (segment (start 108.75 65.75) (end 108.737653 67.462347) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 101.7 26.45) (end 102.65 25.5) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 101.7 58.7) (end 101.7 26.45) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 104.20499 71.429325) (end 104.20499 75.56501) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.385 76.385) (end 103.385 77.435) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 104.20499 75.56501) (end 103.385 76.385) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 108.729005 68.355391) (end 107.278924 68.355391) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 107.278924 68.355391) (end 104.20499 71.429325) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.58 79.92) (end 103.58 80.31) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 103.585 77.435) (end 103.585 78.485) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 105.3 80.31) (end 105.975001 80.985001) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.58 80.31) (end 105.3 80.31) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 106.826412 89.5) (end 107.985 89.5) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 105.975001 80.985001) (end 105.975001 84.674999) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 105.975001 84.674999) (end 104.924999 85.725001) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 104.924999 85.725001) (end 104.924999 87.598587) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 104.924999 87.598587) (end 106.826412 89.5) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.595 78.485) (end 104.04 78.93) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.585 78.485) (end 103.595 78.485) (width 0.25) (layer B.Cu) (net 19))
+  (segment (start 103.58 79.39) (end 104.04 78.93) (width 0.25) (layer F.Cu) (net 19))
+  (segment (start 103.58 80.31) (end 103.58 79.39) (width 0.25) (layer F.Cu) (net 19))
+  (via (at 102.74 80.83) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 20))
+  (segment (start 103.385 82.365) (end 103.385 81.915) (width 0.25) (layer B.Cu) (net 20))
+  (segment (start 101.7 68.775) (end 101.75 68.725) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.7 70.625) (end 101.7 68.775) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 100.67499 71.65001) (end 100.67499 73.82499) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 100.67499 73.82499) (end 102.1 75.25) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.7 70.625) (end 100.67499 71.65001) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 102.1 75.25) (end 102.1 77.75) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.424999 78.425001) (end 101.43 78.42) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 102.1 77.75) (end 101.43 78.42) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.43 78.42) (end 101.124999 78.725001) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.124999 78.725001) (end 101.124999 79.584999) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.124999 79.584999) (end 101.49 79.95) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 103.585 81.675) (end 102.74 80.83) (width 0.25) (layer B.Cu) (net 20))
+  (segment (start 103.585 82.365) (end 103.585 81.675) (width 0.25) (layer B.Cu) (net 20))
+  (segment (start 101.86 79.95) (end 102.74 80.83) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 101.49 79.95) (end 101.86 79.95) (width 0.25) (layer F.Cu) (net 20))
+  (segment (start 104.655 82.365) (end 104.655 81.999007) (width 0.25) (layer B.Cu) (net 21))
+  (segment (start 104.65 82.37) (end 104.655 82.365) (width 0.25) (layer B.Cu) (net 21))
+  (via (at 105.25 84.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 21))
+  (segment (start 104.655 83.655) (end 105.25 84.25) (width 0.25) (layer B.Cu) (net 21))
+  (segment (start 104.655 82.365) (end 104.655 83.655) (width 0.25) (layer B.Cu) (net 21))
+  (segment (start 109.28681 82.23819) (end 109.55 81.975) (width 0.25) (layer F.Cu) (net 21))
+  (segment (start 109.28681 82.55) (end 109.28681 82.23819) (width 0.25) (layer F.Cu) (net 21))
+  (segment (start 105.25 84.25) (end 107.58681 84.25) (width 0.25) (layer F.Cu) (net 21))
+  (segment (start 107.58681 84.25) (end 109.28681 82.55) (width 0.25) (layer F.Cu) (net 21))
+  (segment (start 109.81 97.2275) (end 109.9 97.1375) (width 0.25) (layer F.Cu) (net 22))
+  (segment (start 109.81 105.075) (end 109.81 97.2275) (width 0.4) (layer F.Cu) (net 22))
+  (via (at 101.9 98.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
+  (segment (start 101.49794 89.89794) (end 101.6 90) (width 0.25) (layer F.Cu) (net 22))
+  (segment (start 100.75004 89.89794) (end 101.49794 89.89794) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.6 92.8) (end 101.1 93.3) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.6 90) (end 101.6 92.8) (width 0.4) (layer F.Cu) (net 22))
+  (via (at 101.6 90) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 22))
+  (segment (start 101.6 89.434315) (end 101.6 90) (width 0.25) (layer B.Cu) (net 22))
+  (segment (start 101.6 87.975) (end 101.6 89.434315) (width 0.25) (layer B.Cu) (net 22))
+  (segment (start 101.9 87.675) (end 101.6 87.975) (width 0.25) (layer B.Cu) (net 22))
+  (segment (start 102.7 87.675) (end 101.9 87.675) (width 0.25) (layer B.Cu) (net 22))
+  (segment (start 108.437501 98.699999) (end 109.95 97.1875) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 103.9 100) (end 105.200001 98.699999) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 105.200001 98.699999) (end 108.437501 98.699999) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 102.834315 100) (end 103.9 100) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.1 94.4) (end 101.1 93.3) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.1 97.7) (end 101.9 98.5) (width 0.4) (layer B.Cu) (net 22))
+  (segment (start 101.1 97.525) (end 101.1 97.7) (width 0.25) (layer B.Cu) (net 22))
+  (segment (start 101.9 99.065685) (end 101.9 98.5) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 102.834315 100) (end 101.9 99.065685) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.9 95.2) (end 101.1 94.4) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 101.9 98.5) (end 101.9 95.2) (width 0.4) (layer F.Cu) (net 22))
+  (segment (start 104.05 85.025) (end 103.275 84.25) (width 0.25) (layer F.Cu) (net 23))
+  (segment (start 104.05 85.6) (end 104.05 85.025) (width 0.25) (layer F.Cu) (net 23))
+  (segment (start 104.025 85.625) (end 102.7 85.625) (width 0.25) (layer B.Cu) (net 23))
+  (via (at 104.05 85.6) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 23))
+  (segment (start 104.05 85.6) (end 104.025 85.625) (width 0.25) (layer B.Cu) (net 23))
+  (segment (start 108.6 87.4) (end 110.243002 87.4) (width 0.25) (layer B.Cu) (net 24))
+  (via (at 111.25 91.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
+  (segment (start 111 90.25) (end 111 91) (width 0.25) (layer F.Cu) (net 24))
+  (segment (start 111 91) (end 111.25 91.25) (width 0.25) (layer F.Cu) (net 24))
+  (segment (start 111.25 90.684315) (end 111.61499 90.319325) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 111.25 91.25) (end 111.25 90.684315) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 111.61499 88.771988) (end 110.243002 87.4) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 111.61499 90.319325) (end 111.61499 88.771988) (width 0.25) (layer B.Cu) (net 24))
+  (via (at 109.55 78.65) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
+  (segment (start 110.318002 78.65) (end 109.55 78.65) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 110.243002 87.4) (end 111.538001 86.105001) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 111.538001 79.869999) (end 110.318002 78.65) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 111.538001 86.105001) (end 111.538001 79.869999) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 109.55 78.65) (end 109.55 79.925) (width 0.25) (layer F.Cu) (net 24))
+  (via (at 109.7 76.025) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 24))
+  (segment (start 109.7 78.5) (end 109.55 78.65) (width 0.25) (layer F.Cu) (net 24))
+  (segment (start 109.7 76.025) (end 109.7 78.5) (width 0.25) (layer F.Cu) (net 24))
+  (segment (start 106.970725 69.3) (end 106.513499 69.757226) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 108.165825 74.490825) (end 108.165825 72.157177) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 109.7 76.025) (end 108.165825 74.490825) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 108.165825 72.157177) (end 108.975001 71.348001) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 108.975001 71.348001) (end 108.975001 70.651999) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 108.975001 70.651999) (end 107.623002 69.3) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 106.513499 69.757226) (end 106.513499 69.763499) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 107.623002 69.3) (end 106.970725 69.3) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 104.855 71.415725) (end 104.855 77.435) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 106.513499 69.757226) (end 104.855 71.415725) (width 0.25) (layer B.Cu) (net 24))
+  (segment (start 102.115 73.402001) (end 102 73.287001) (width 0.25) (layer B.Cu) (net 25))
+  (segment (start 102.115 77.435) (end 102.115 73.402001) (width 0.25) (layer B.Cu) (net 25))
+  (segment (start 104.818789 59.441789) (end 106.093391 59.441789) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 104.225001 62.248001) (end 104.225001 60.035577) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 106.093391 59.441789) (end 107.125801 60.474199) (width 0.25) (layer F.Cu) (net 26))
+  (via (at 103.25 68.95) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 26))
+  (segment (start 103.2 63.273002) (end 104.225001 62.248001) (width 0.25) (layer F.Cu) (net 26))
+  (via (at 107.125801 60.474199) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 26))
+  (segment (start 103.25 68.95) (end 103.2 63.273002) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 104.225001 60.035577) (end 104.818789 59.441789) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 102 70.2) (end 102 71.25) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 103.25 68.95) (end 102 70.2) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.7 13.325) (end 110.725 12.3) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.7 17.549991) (end 109.7 13.325) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.7 18.55) (end 109.75 18.6) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.7 17.549991) (end 109.7 18.55) (width 0.25) (layer B.Cu) (net 26))
+  (via (at 109.7 17.549991) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 26))
+  (segment (start 109.7 13.325) (end 109.7 17.549991) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 110.725 12.3) (end 109.7 13.325) (width 0.25) (layer F.Cu) (net 26))
+  (segment (start 109.5 23.7) (end 109.5 19.75) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.75 19.5) (end 109.75 18.6) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.22501 23.97499) (end 109.5 23.7) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 107.125801 60.474199) (end 107.75 59.85) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 107.75 58.4) (end 107.1 57.75) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.5 19.75) (end 109.75 19.5) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 107.75 59.85) (end 107.75 58.4) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 107.1 57.75) (end 107.1 26.102304) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 107.1 26.102304) (end 109.22501 23.977294) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 109.22501 23.977294) (end 109.22501 23.97499) (width 0.25) (layer B.Cu) (net 26))
+  (segment (start 108.425 12.1) (end 108.425 14.05) (width 0.25) (layer B.Cu) (net 27))
+  (via (at 107.428948 14.088868) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 27))
+  (segment (start 108.675 12.3) (end 108.675 12.842816) (width 0.25) (layer F.Cu) (net 27))
+  (segment (start 108.675 12.842816) (end 107.428948 14.088868) (width 0.25) (layer F.Cu) (net 27))
+  (segment (start 108.363868 14.088868) (end 108.675 14.4) (width 0.25) (layer B.Cu) (net 27))
+  (segment (start 107.428948 14.088868) (end 108.363868 14.088868) (width 0.25) (layer B.Cu) (net 27))
+  (segment (start 105.75 88.55) (end 106 88.8) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.05 72) (end 106 72) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 106.144114 92.787456) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 107.272456 92.787456) (end 107.985 93.5) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 106.144114 92.787456) (end 107.272456 92.787456) (width 0.25) (layer B.Cu) (net 28))
+  (via (at 105.7 86.05) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 105.745 86.095) (end 105.7 86.05) (width 0.25) (layer B.Cu) (net 28))
+  (via (at 106.8 78.71) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 106 80.4) (end 106.2 80.4) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 106.8 76.3) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (via (at 105.65 60.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 106 63.6) (end 106 60.75) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 60.75) (end 105.65 60.4) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 105.65 53.5) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 105.65 60.4) (end 105.65 53.5) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 105.65 54.85) (end 106 55.2) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.65 53.5) (end 105.65 54.85) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 105.65 45.25) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 105.65 53.5) (end 105.65 45.25) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 105.65 46.4375) (end 106 46.7875) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.65 45.25) (end 105.65 46.4375) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 105.65 36.9) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 105.65 45.25) (end 105.65 36.9) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 105.65 38.05) (end 106 38.4) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.65 36.9) (end 105.65 38.05) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 105.65 28.4) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 105.65 36.9) (end 105.65 28.4) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 105.65 29.55) (end 106 29.9) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.65 28.4) (end 105.65 29.55) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 97.1875) (end 106 95.85) (width 0.25) (layer F.Cu) (net 28))
+  (via (at 106 95.85) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 28))
+  (segment (start 106 95.284315) (end 106 95.85) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 106 94.695) (end 106 95.284315) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 107.195 93.5) (end 106 94.695) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 107.985 93.5) (end 107.195 93.5) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 105.16679 89.63321) (end 104.8286 89.63321) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 88.8) (end 105.16679 89.63321) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106.144114 92.787456) (end 104.824266 92.787456) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 104.8286 89.63321) (end 103.99999 90.46182) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 103.99999 91.96318) (end 103.99999 90.46182) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 104.824266 92.787456) (end 103.99999 91.96318) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 105.7 86.05) (end 106.9 84.85) (width 0.4) (layer B.Cu) (net 28))
+  (segment (start 106.5 79.9) (end 106 80.4) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 72) (end 108.323002 72) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 108.323002 72) (end 109.198002 71.125) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 107.673002 76.3) (end 107.365685 76.3) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 107.365685 76.3) (end 106.8 76.3) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 110.125001 73.848001) (end 107.673002 76.3) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 110.125001 71.625001) (end 110.125001 73.848001) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 109.625 71.125) (end 110.125001 71.625001) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 109.198002 71.125) (end 109.625 71.125) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106.8 76.3) (end 106.8 78.7) (width 0.4) (layer B.Cu) (net 28))
+  (segment (start 105.7 86.05) (end 106.5 86.85) (width 0.4) (layer F.Cu) (net 28))
+  (segment (start 106.5 86.85) (end 106.5 88) (width 0.4) (layer F.Cu) (net 28))
+  (segment (start 106 88.5) (end 106.5 88) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 88.8) (end 106 88.5) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 72) (end 106 71.7) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 103.99999 69.3364) (end 106 71.33641) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 71.33641) (end 106 72) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106 63.6) (end 104.225 63.6) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 103.99999 63.82501) (end 103.99999 69.3364) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 104.225 63.6) (end 103.99999 63.82501) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106.8 83.79982) (end 106.90018 83.9) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 106.8 78.71) (end 106.8 83.79982) (width 0.4) (layer B.Cu) (net 28))
+  (segment (start 106.90018 84.84982) (end 106.90018 83.9) (width 0.4) (layer B.Cu) (net 28))
+  (segment (start 106.9 84.85) (end 106.90018 84.84982) (width 0.25) (layer B.Cu) (net 28))
+  (segment (start 106.8 79.6) (end 106 80.4) (width 0.25) (layer F.Cu) (net 28))
+  (segment (start 106.8 78.71) (end 106.8 79.6) (width 0.4) (layer F.Cu) (net 28))
+  (via (at 108.3 71) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 29))
+  (via (at 104.85 67.45) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 29))
+  (segment (start 108.075 80.5) (end 108.075 81.3) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 107.525001 79.950001) (end 108.075 80.5) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 107.525001 71.774999) (end 107.525001 79.950001) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 108.3 71) (end 107.525001 71.774999) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 108.99822 82.22322) (end 108.075 81.3) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 108.99822 82.95004) (end 108.99822 82.22322) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 100.845 75.18) (end 100.845 77.435) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 100.845 70.281998) (end 100.845 75.18) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 104.85 67.45) (end 103.676998 67.45) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 103.676998 67.45) (end 100.845 70.281998) (width 0.25) (layer B.Cu) (net 29))
+  (segment (start 106.625001 70.725001) (end 104.85 68.95) (width 0.25) (layer F.Cu) (net 29))
+  (segment (start 108.025001 70.725001) (end 106.625001 70.725001) (width 0.25) (layer F.Cu) (net 29))
+  (segment (start 108.3 71) (end 108.025001 70.725001) (width 0.25) (layer F.Cu) (net 29))
+  (segment (start 104.85 67.45) (end 104.85 68.95) (width 0.25) (layer F.Cu) (net 29))
+
+  (zone (net 2) (net_name GND) (layer B.Cu) (tstamp 0) (hatch edge 0.508)
+    (connect_pads (clearance 0.508))
+    (min_thickness 0.254)
+    (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
+    (polygon
+      (pts
+        (xy 98.65 8.5) (xy 113.8 8.4) (xy 114.15 112.15) (xy 98.35 111.65)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 105.090001 98.721288) (xy 105.046063 98.765226) (xy 104.932795 98.934744) (xy 104.854774 99.123102) (xy 104.816603 99.315)
+        (xy 104.648061 99.315) (xy 104.448102 99.354774) (xy 104.259744 99.432795) (xy 104.090226 99.546063) (xy 103.946063 99.690226)
+        (xy 103.832795 99.859744) (xy 103.754774 100.048102) (xy 103.715 100.248061) (xy 103.715 100.451939) (xy 103.754774 100.651898)
+        (xy 103.832795 100.840256) (xy 103.946063 101.009774) (xy 104.090226 101.153937) (xy 104.259744 101.267205) (xy 104.448102 101.345226)
+        (xy 104.648061 101.385) (xy 104.851939 101.385) (xy 105.051898 101.345226) (xy 105.240256 101.267205) (xy 105.409774 101.153937)
+        (xy 105.453711 101.11) (xy 108.037678 101.11) (xy 108.075 101.113676) (xy 108.112322 101.11) (xy 108.112333 101.11)
+        (xy 108.223986 101.099003) (xy 108.367247 101.055546) (xy 108.499276 100.984974) (xy 108.615001 100.890001) (xy 108.638804 100.860997)
+        (xy 110.66173 98.838072) (xy 111.250001 98.838072) (xy 111.305001 98.832655) (xy 111.305001 107.965998) (xy 111.276877 108.252831)
+        (xy 111.203451 108.496028) (xy 111.084185 108.720333) (xy 110.923625 108.917198) (xy 110.727881 109.079132) (xy 110.504416 109.199959)
+        (xy 110.261737 109.27508) (xy 109.97707 109.305) (xy 102.033992 109.305) (xy 101.747169 109.276877) (xy 101.503972 109.203451)
+        (xy 101.279667 109.084185) (xy 101.082802 108.923625) (xy 100.920868 108.727881) (xy 100.800041 108.504416) (xy 100.72492 108.261737)
+        (xy 100.695 107.97707) (xy 100.695 98.738072) (xy 100.892078 98.738072) (xy 100.904774 98.801898) (xy 100.982795 98.990256)
+        (xy 101.096063 99.159774) (xy 101.240226 99.303937) (xy 101.409744 99.417205) (xy 101.598102 99.495226) (xy 101.798061 99.535)
+        (xy 102.001939 99.535) (xy 102.201898 99.495226) (xy 102.390256 99.417205) (xy 102.559774 99.303937) (xy 102.703937 99.159774)
+        (xy 102.817205 98.990256) (xy 102.895226 98.801898) (xy 102.927813 98.638072) (xy 105.090001 98.638072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 101.72082 78.824502) (xy 101.840518 78.860812) (xy 101.965 78.873072) (xy 102.628158 78.873072) (xy 102.502896 78.940027)
+        (xy 102.387171 79.035) (xy 102.363373 79.063998) (xy 101.418998 80.008374) (xy 101.39 80.032172) (xy 101.366202 80.06117)
+        (xy 101.366201 80.061171) (xy 101.295026 80.147897) (xy 101.224454 80.279927) (xy 101.215332 80.31) (xy 101.180997 80.423187)
+        (xy 101.17 80.53484) (xy 101.17 80.534851) (xy 101.166324 80.572173) (xy 101.17 80.609495) (xy 101.17 81.202678)
+        (xy 101.166324 81.24) (xy 101.17 81.277322) (xy 101.17 81.277332) (xy 101.172 81.297638) (xy 101.172 82.238)
+        (xy 101.192 82.238) (xy 101.192 82.492) (xy 101.172 82.492) (xy 101.172 83.64125) (xy 101.33075 83.8)
+        (xy 101.395 83.803072) (xy 101.519482 83.790812) (xy 101.540876 83.784322) (xy 101.063992 84.261207) (xy 101.034989 84.285009)
+        (xy 101.002764 84.324276) (xy 100.940016 84.400734) (xy 100.881999 84.509276) (xy 100.869444 84.532764) (xy 100.825987 84.676025)
+        (xy 100.81499 84.787678) (xy 100.81499 84.787688) (xy 100.811314 84.82501) (xy 100.81499 84.862332) (xy 100.81499 85.214666)
+        (xy 100.811314 85.251988) (xy 100.81499 85.28931) (xy 100.81499 85.289321) (xy 100.815001 85.289433) (xy 100.815002 86.300839)
+        (xy 100.811325 86.338171) (xy 100.815002 86.375504) (xy 100.824704 86.474003) (xy 100.825999 86.487156) (xy 100.869455 86.630417)
+        (xy 100.940027 86.762447) (xy 101.000556 86.836201) (xy 101.035001 86.878172) (xy 101.063998 86.90197) (xy 101.331114 87.169085)
+        (xy 101.089003 87.411196) (xy 101.059999 87.434999) (xy 101.004871 87.502174) (xy 100.965026 87.550724) (xy 100.906908 87.659454)
+        (xy 100.894454 87.682754) (xy 100.850997 87.826015) (xy 100.84 87.937668) (xy 100.84 87.937678) (xy 100.836324 87.975)
+        (xy 100.84 88.012323) (xy 100.840001 89.296288) (xy 100.796063 89.340226) (xy 100.695 89.491478) (xy 100.695 83.803072)
+        (xy 100.75925 83.8) (xy 100.918 83.64125) (xy 100.918 82.492) (xy 100.898 82.492) (xy 100.898 82.238)
+        (xy 100.918 82.238) (xy 100.918 81.08875) (xy 100.75925 80.93) (xy 100.695 80.926928) (xy 100.695 78.873072)
+        (xy 101.395 78.873072) (xy 101.519482 78.860812) (xy 101.63918 78.824502) (xy 101.68 78.802683)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.415011 70.06659) (xy 110.41501 73.111545) (xy 110.382805 73.159744) (xy 110.304784 73.348102) (xy 110.26501 73.548061)
+        (xy 110.26501 73.751939) (xy 110.304784 73.951898) (xy 110.382805 74.140256) (xy 110.496073 74.309774) (xy 110.640236 74.453937)
+        (xy 110.809754 74.567205) (xy 110.998112 74.645226) (xy 111.198071 74.685) (xy 111.305001 74.685) (xy 111.305001 78.562197)
+        (xy 110.881806 78.139003) (xy 110.858003 78.109999) (xy 110.742278 78.015026) (xy 110.610249 77.944454) (xy 110.466988 77.900997)
+        (xy 110.355335 77.89) (xy 110.355324 77.89) (xy 110.318002 77.886324) (xy 110.28068 77.89) (xy 110.253711 77.89)
+        (xy 110.209774 77.846063) (xy 110.040256 77.732795) (xy 109.851898 77.654774) (xy 109.651939 77.615) (xy 109.448061 77.615)
+        (xy 109.248102 77.654774) (xy 109.059744 77.732795) (xy 108.890226 77.846063) (xy 108.746063 77.990226) (xy 108.632795 78.159744)
+        (xy 108.554774 78.348102) (xy 108.515 78.548061) (xy 108.515 78.751939) (xy 108.554774 78.951898) (xy 108.632795 79.140256)
+        (xy 108.746063 79.309774) (xy 108.890226 79.453937) (xy 109.059744 79.567205) (xy 109.248102 79.645226) (xy 109.448061 79.685)
+        (xy 109.651939 79.685) (xy 109.851898 79.645226) (xy 110.040256 79.567205) (xy 110.112281 79.51908) (xy 110.556651 79.96345)
+        (xy 110.41075 79.965) (xy 110.252 80.12375) (xy 110.252 81.173) (xy 110.272 81.173) (xy 110.272 81.427)
+        (xy 110.252 81.427) (xy 110.252 82.47625) (xy 110.41075 82.635) (xy 110.7 82.638072) (xy 110.778002 82.63039)
+        (xy 110.778001 85.790199) (xy 109.928201 86.64) (xy 109.805501 86.64) (xy 109.751185 86.573815) (xy 109.654494 86.494463)
+        (xy 109.54418 86.435498) (xy 109.424482 86.399188) (xy 109.3 86.386928) (xy 108.3 86.386928) (xy 108.175518 86.399188)
+        (xy 108.05582 86.435498) (xy 107.945506 86.494463) (xy 107.848815 86.573815) (xy 107.8 86.633296) (xy 107.751185 86.573815)
+        (xy 107.654494 86.494463) (xy 107.54418 86.435498) (xy 107.424482 86.399188) (xy 107.3 86.386928) (xy 107.08575 86.39)
+        (xy 106.927 86.54875) (xy 106.927 87.523) (xy 106.947 87.523) (xy 106.947 87.777) (xy 106.927 87.777)
+        (xy 106.927 87.797) (xy 106.673 87.797) (xy 106.673 87.777) (xy 106.653 87.777) (xy 106.653 87.523)
+        (xy 106.673 87.523) (xy 106.673 86.54875) (xy 106.631059 86.506809) (xy 106.695226 86.351898) (xy 106.724093 86.206775)
+        (xy 107.461608 85.46926) (xy 107.493471 85.443111) (xy 107.597816 85.315966) (xy 107.633749 85.24874) (xy 107.910568 85.24874)
+        (xy 107.922828 85.373222) (xy 107.959138 85.49292) (xy 108.018103 85.603234) (xy 108.097455 85.699925) (xy 108.194146 85.779277)
+        (xy 108.30446 85.838242) (xy 108.424158 85.874552) (xy 108.54864 85.886812) (xy 108.71247 85.88374) (xy 108.87122 85.72499)
+        (xy 108.87122 84.97696) (xy 109.12522 84.97696) (xy 109.12522 85.72499) (xy 109.28397 85.88374) (xy 109.4478 85.886812)
+        (xy 109.572282 85.874552) (xy 109.69198 85.838242) (xy 109.802294 85.779277) (xy 109.898985 85.699925) (xy 109.978337 85.603234)
+        (xy 110.037302 85.49292) (xy 110.073612 85.373222) (xy 110.085872 85.24874) (xy 110.0828 85.13571) (xy 109.92405 84.97696)
+        (xy 109.12522 84.97696) (xy 108.87122 84.97696) (xy 108.07239 84.97696) (xy 107.91364 85.13571) (xy 107.910568 85.24874)
+        (xy 107.633749 85.24874) (xy 107.675352 85.170907) (xy 107.723098 85.013509) (xy 107.73518 84.890839) (xy 107.73518 84.889182)
+        (xy 107.739039 84.850001) (xy 107.73518 84.81082) (xy 107.73518 84.803937) (xy 107.800945 84.749965) (xy 107.880297 84.653274)
+        (xy 107.922935 84.573505) (xy 108.07239 84.72296) (xy 108.87122 84.72296) (xy 108.87122 84.70296) (xy 109.12522 84.70296)
+        (xy 109.12522 84.72296) (xy 109.92405 84.72296) (xy 110.0828 84.56421) (xy 110.085872 84.45118) (xy 110.073612 84.326698)
+        (xy 110.037302 84.207) (xy 109.978337 84.096686) (xy 109.898985 83.999995) (xy 109.802294 83.920643) (xy 109.763674 83.9)
+        (xy 109.802294 83.879357) (xy 109.898985 83.800005) (xy 109.978337 83.703314) (xy 110.037302 83.593) (xy 110.073612 83.473302)
+        (xy 110.085872 83.34882) (xy 110.085872 82.55126) (xy 110.073612 82.426778) (xy 110.037302 82.30708) (xy 109.998 82.233552)
+        (xy 109.998 81.427) (xy 109.978 81.427) (xy 109.978 81.173) (xy 109.998 81.173) (xy 109.998 80.12375)
+        (xy 109.83925 79.965) (xy 109.55 79.961928) (xy 109.425518 79.974188) (xy 109.30582 80.010498) (xy 109.195506 80.069463)
+        (xy 109.098815 80.148815) (xy 109.033342 80.228594) (xy 109.027962 80.222038) (xy 108.893387 80.111595) (xy 108.739851 80.029528)
+        (xy 108.649592 80.002149) (xy 108.638799 79.988997) (xy 108.615001 79.959999) (xy 108.586003 79.936202) (xy 108.285001 79.6352)
+        (xy 108.285001 75.684802) (xy 108.665 76.064802) (xy 108.665 76.126939) (xy 108.704774 76.326898) (xy 108.782795 76.515256)
+        (xy 108.896063 76.684774) (xy 109.040226 76.828937) (xy 109.209744 76.942205) (xy 109.398102 77.020226) (xy 109.598061 77.06)
+        (xy 109.801939 77.06) (xy 110.001898 77.020226) (xy 110.190256 76.942205) (xy 110.359774 76.828937) (xy 110.503937 76.684774)
+        (xy 110.617205 76.515256) (xy 110.695226 76.326898) (xy 110.735 76.126939) (xy 110.735 75.923061) (xy 110.695226 75.723102)
+        (xy 110.617205 75.534744) (xy 110.503937 75.365226) (xy 110.359774 75.221063) (xy 110.190256 75.107795) (xy 110.001898 75.029774)
+        (xy 109.801939 74.99) (xy 109.739802 74.99) (xy 109.503106 74.753304) (xy 109.590256 74.717205) (xy 109.759774 74.603937)
+        (xy 109.903937 74.459774) (xy 110.017205 74.290256) (xy 110.095226 74.101898) (xy 110.135 73.901939) (xy 110.135 73.698061)
+        (xy 110.095226 73.498102) (xy 110.017205 73.309744) (xy 109.903937 73.140226) (xy 109.759774 72.996063) (xy 109.590256 72.882795)
+        (xy 109.41 72.80813) (xy 109.41 72.624213) (xy 109.936015 72.098199) (xy 109.965012 72.074402) (xy 110.010478 72.019002)
+        (xy 110.059985 71.958678) (xy 110.130557 71.826648) (xy 110.139123 71.79841) (xy 110.174014 71.683387) (xy 110.185011 71.571734)
+        (xy 110.185011 71.571725) (xy 110.188687 71.534402) (xy 110.185011 71.497079) (xy 110.185011 70.114036) (xy 110.188688 70.076703)
+        (xy 110.174014 69.927717) (xy 110.130557 69.784456) (xy 110.127893 69.779472)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 102.493465 62.145044) (xy 102.504774 62.201898) (xy 102.582795 62.390256) (xy 102.696063 62.559774) (xy 102.840226 62.703937)
+        (xy 103.009744 62.817205) (xy 103.198102 62.895226) (xy 103.254957 62.906535) (xy 107.943812 67.595391) (xy 107.316246 67.595391)
+        (xy 107.278923 67.591715) (xy 107.2416 67.595391) (xy 107.241591 67.595391) (xy 107.129938 67.606388) (xy 106.986677 67.649845)
+        (xy 106.854647 67.720417) (xy 106.816288 67.751898) (xy 106.738923 67.81539) (xy 106.715125 67.844388) (xy 103.693993 70.865521)
+        (xy 103.664989 70.889324) (xy 103.619917 70.944245) (xy 103.570016 71.005049) (xy 103.499445 71.137078) (xy 103.499444 71.137079)
+        (xy 103.455987 71.28034) (xy 103.44499 71.391993) (xy 103.44499 71.392003) (xy 103.441314 71.429325) (xy 103.44499 71.466648)
+        (xy 103.444991 75.250207) (xy 102.875 75.820199) (xy 102.875 74.09532) (xy 102.89418 74.089502) (xy 103.004494 74.030537)
+        (xy 103.101185 73.951185) (xy 103.180537 73.854494) (xy 103.239502 73.74418) (xy 103.275812 73.624482) (xy 103.288072 73.5)
+        (xy 103.288072 72.8) (xy 103.275812 72.675518) (xy 103.239502 72.55582) (xy 103.180537 72.445506) (xy 103.101185 72.348815)
+        (xy 103.004494 72.269463) (xy 102.89418 72.210498) (xy 102.859573 72.2) (xy 102.89418 72.189502) (xy 103.004494 72.130537)
+        (xy 103.101185 72.051185) (xy 103.180537 71.954494) (xy 103.239502 71.84418) (xy 103.275812 71.724482) (xy 103.288072 71.6)
+        (xy 103.288072 70.9) (xy 103.275812 70.775518) (xy 103.239502 70.65582) (xy 103.180537 70.545506) (xy 103.101185 70.448815)
+        (xy 103.004494 70.369463) (xy 102.939877 70.334924) (xy 103.289802 69.985) (xy 103.351939 69.985) (xy 103.551898 69.945226)
+        (xy 103.740256 69.867205) (xy 103.909774 69.753937) (xy 104.053937 69.609774) (xy 104.167205 69.440256) (xy 104.245226 69.251898)
+        (xy 104.285 69.051939) (xy 104.285 68.848061) (xy 104.245226 68.648102) (xy 104.167205 68.459744) (xy 104.053937 68.290226)
+        (xy 103.982755 68.219044) (xy 103.9918 68.21) (xy 104.146289 68.21) (xy 104.190226 68.253937) (xy 104.359744 68.367205)
+        (xy 104.548102 68.445226) (xy 104.748061 68.485) (xy 104.951939 68.485) (xy 105.151898 68.445226) (xy 105.340256 68.367205)
+        (xy 105.509774 68.253937) (xy 105.653937 68.109774) (xy 105.767205 67.940256) (xy 105.845226 67.751898) (xy 105.885 67.551939)
+        (xy 105.885 67.348061) (xy 105.845226 67.148102) (xy 105.767205 66.959744) (xy 105.653937 66.790226) (xy 105.509774 66.646063)
+        (xy 105.340256 66.532795) (xy 105.151898 66.454774) (xy 104.951939 66.415) (xy 104.748061 66.415) (xy 104.548102 66.454774)
+        (xy 104.359744 66.532795) (xy 104.190226 66.646063) (xy 104.146289 66.69) (xy 103.71432 66.69) (xy 103.676998 66.686324)
+        (xy 103.639675 66.69) (xy 103.639665 66.69) (xy 103.528012 66.700997) (xy 103.384751 66.744454) (xy 103.252721 66.815026)
+        (xy 103.169081 66.883668) (xy 103.136997 66.909999) (xy 103.113199 66.938997) (xy 100.695 69.357197) (xy 100.695 60.346578)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.852 14.273) (xy 110.872 14.273) (xy 110.872 14.527) (xy 110.852 14.527) (xy 110.852 15.57625)
+        (xy 111.01075 15.735) (xy 111.3 15.738072) (xy 111.305 15.73758) (xy 111.305 21.763218) (xy 111.03575 21.765)
+        (xy 110.877 21.92375) (xy 110.877 23.773) (xy 110.897 23.773) (xy 110.897 24.027) (xy 110.877 24.027)
+        (xy 110.877 25.87625) (xy 111.03575 26.035) (xy 111.305 26.036782) (xy 111.305001 65.64129) (xy 111.259774 65.596063)
+        (xy 111.090256 65.482795) (xy 110.901898 65.404774) (xy 110.701939 65.365) (xy 110.639802 65.365) (xy 110.163804 64.889002)
+        (xy 110.140001 64.859999) (xy 110.024276 64.765026) (xy 110.008271 64.756471) (xy 106.648619 61.396819) (xy 106.823903 61.469425)
+        (xy 107.023862 61.509199) (xy 107.22774 61.509199) (xy 107.427699 61.469425) (xy 107.616057 61.391404) (xy 107.785575 61.278136)
+        (xy 107.929738 61.133973) (xy 108.043006 60.964455) (xy 108.121027 60.776097) (xy 108.160801 60.576138) (xy 108.160801 60.514001)
+        (xy 108.261004 60.413798) (xy 108.290001 60.390001) (xy 108.384974 60.274276) (xy 108.455546 60.142247) (xy 108.499003 59.998986)
+        (xy 108.51 59.887333) (xy 108.51 59.887325) (xy 108.513676 59.85) (xy 108.51 59.812675) (xy 108.51 58.437323)
+        (xy 108.513676 58.4) (xy 108.51 58.362677) (xy 108.51 58.362667) (xy 108.499003 58.251014) (xy 108.455546 58.107753)
+        (xy 108.384974 57.975724) (xy 108.290001 57.859999) (xy 108.261002 57.8362) (xy 107.86 57.435199) (xy 107.86 26.417105)
+        (xy 109.363158 24.913948) (xy 109.361928 25.4) (xy 109.370822 25.490309) (xy 109.298102 25.504774) (xy 109.109744 25.582795)
+        (xy 108.940226 25.696063) (xy 108.796063 25.840226) (xy 108.682795 26.009744) (xy 108.604774 26.198102) (xy 108.565 26.398061)
+        (xy 108.565 26.601939) (xy 108.604774 26.801898) (xy 108.682795 26.990256) (xy 108.796063 27.159774) (xy 108.840001 27.203712)
+        (xy 108.84 61.146289) (xy 108.796063 61.190226) (xy 108.682795 61.359744) (xy 108.604774 61.548102) (xy 108.565 61.748061)
+        (xy 108.565 61.951939) (xy 108.604774 62.151898) (xy 108.682795 62.340256) (xy 108.796063 62.509774) (xy 108.940226 62.653937)
+        (xy 109.109744 62.767205) (xy 109.298102 62.845226) (xy 109.498061 62.885) (xy 109.701939 62.885) (xy 109.901898 62.845226)
+        (xy 110.090256 62.767205) (xy 110.259774 62.653937) (xy 110.403937 62.509774) (xy 110.517205 62.340256) (xy 110.595226 62.151898)
+        (xy 110.635 61.951939) (xy 110.635 61.748061) (xy 110.595226 61.548102) (xy 110.517205 61.359744) (xy 110.403937 61.190226)
+        (xy 110.36 61.146289) (xy 110.36 27.203711) (xy 110.403937 27.159774) (xy 110.517205 26.990256) (xy 110.595226 26.801898)
+        (xy 110.635 26.601939) (xy 110.635 26.398061) (xy 110.595226 26.198102) (xy 110.517205 26.009744) (xy 110.50611 25.99314)
+        (xy 110.623 25.87625) (xy 110.623 24.027) (xy 110.603 24.027) (xy 110.603 23.773) (xy 110.623 23.773)
+        (xy 110.623 21.92375) (xy 110.46425 21.765) (xy 110.26 21.763648) (xy 110.26 20.064802) (xy 110.261003 20.063799)
+        (xy 110.290001 20.040001) (xy 110.384974 19.924276) (xy 110.455546 19.792247) (xy 110.477197 19.720871) (xy 110.501185 19.701185)
+        (xy 110.580537 19.604494) (xy 110.639502 19.49418) (xy 110.675812 19.374482) (xy 110.688072 19.25) (xy 110.688072 17.95)
+        (xy 110.68164 17.884689) (xy 110.695226 17.851889) (xy 110.735 17.65193) (xy 110.735 17.448052) (xy 110.695226 17.248093)
+        (xy 110.617205 17.059735) (xy 110.503937 16.890217) (xy 110.46 16.84628) (xy 110.46 15.71425) (xy 110.598 15.57625)
+        (xy 110.598 14.527) (xy 110.578 14.527) (xy 110.578 14.273) (xy 110.598 14.273) (xy 110.598 14.253)
+        (xy 110.852 14.253)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 104.165 26.905487) (xy 104.164999 60.090198) (xy 102.46 58.385199) (xy 102.46 26.764801) (xy 103.161004 26.063798)
+        (xy 103.190001 26.040001) (xy 103.230779 25.990313) (xy 103.239365 25.979851)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.874188 17.274482) (xy 107.885547 17.311928) (xy 107.55 17.311928) (xy 107.425518 17.324188) (xy 107.30582 17.360498)
+        (xy 107.195506 17.419463) (xy 107.098815 17.498815) (xy 107.019463 17.595506) (xy 106.960498 17.70582) (xy 106.924188 17.825518)
+        (xy 106.911928 17.95) (xy 106.911928 19.25) (xy 106.924188 19.374482) (xy 106.960498 19.49418) (xy 107.019463 19.604494)
+        (xy 107.098815 19.701185) (xy 107.195506 19.780537) (xy 107.30582 19.839502) (xy 107.34 19.849871) (xy 107.340001 19.991538)
+        (xy 107.286595 20.056613) (xy 107.204528 20.210149) (xy 107.153992 20.376745) (xy 107.136928 20.549999) (xy 107.136928 23.450001)
+        (xy 107.153992 23.623255) (xy 107.204528 23.789851) (xy 107.286595 23.943387) (xy 107.397038 24.077962) (xy 107.531613 24.188405)
+        (xy 107.685149 24.270472) (xy 107.817026 24.310476) (xy 106.99969 25.127813) (xy 106.992205 25.109744) (xy 106.878937 24.940226)
+        (xy 106.734774 24.796063) (xy 106.565256 24.682795) (xy 106.376898 24.604774) (xy 106.176939 24.565) (xy 105.973061 24.565)
+        (xy 105.773102 24.604774) (xy 105.584744 24.682795) (xy 105.415226 24.796063) (xy 105.271063 24.940226) (xy 105.157795 25.109744)
+        (xy 105.079774 25.298102) (xy 105.04 25.498061) (xy 105.04 25.630883) (xy 104.441271 25.032155) (xy 104.495226 24.901898)
+        (xy 104.535 24.701939) (xy 104.535 24.498061) (xy 104.502907 24.336717) (xy 104.625 24.338072) (xy 104.749482 24.325812)
+        (xy 104.86918 24.289502) (xy 104.979494 24.230537) (xy 105.076185 24.151185) (xy 105.155537 24.054494) (xy 105.214502 23.94418)
+        (xy 105.250812 23.824482) (xy 105.263072 23.7) (xy 105.26 22.28575) (xy 105.10125 22.127) (xy 104.1895 22.127)
+        (xy 104.1895 22.147) (xy 103.9355 22.147) (xy 103.9355 22.127) (xy 103.9155 22.127) (xy 103.9155 21.873)
+        (xy 103.9355 21.873) (xy 103.9355 19.82375) (xy 104.1895 19.82375) (xy 104.1895 21.873) (xy 105.10125 21.873)
+        (xy 105.26 21.71425) (xy 105.263072 20.3) (xy 105.250812 20.175518) (xy 105.214502 20.05582) (xy 105.155537 19.945506)
+        (xy 105.076185 19.848815) (xy 104.979494 19.769463) (xy 104.86918 19.710498) (xy 104.749482 19.674188) (xy 104.625 19.661928)
+        (xy 104.34825 19.665) (xy 104.1895 19.82375) (xy 103.9355 19.82375) (xy 103.92539 19.81364) (xy 103.936672 19.69909)
+        (xy 103.936672 18.785222) (xy 104.29682 18.785222) (xy 104.421302 18.772962) (xy 104.541 18.736652) (xy 104.651314 18.677687)
+        (xy 104.748005 18.598335) (xy 104.827357 18.501644) (xy 104.886322 18.39133) (xy 104.922632 18.271632) (xy 104.934892 18.14715)
+        (xy 104.934892 17.44865) (xy 104.922632 17.324168) (xy 104.903167 17.26) (xy 107.872762 17.26)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.252829 10.723123) (xy 110.496026 10.796549) (xy 110.720331 10.915814) (xy 110.776872 10.961928) (xy 110.399999 10.961928)
+        (xy 110.226745 10.978992) (xy 110.060149 11.029528) (xy 109.906613 11.111595) (xy 109.772038 11.222038) (xy 109.7 11.309816)
+        (xy 109.627962 11.222038) (xy 109.493387 11.111595) (xy 109.339851 11.029528) (xy 109.173255 10.978992) (xy 109.000001 10.961928)
+        (xy 108.349999 10.961928) (xy 108.176745 10.978992) (xy 108.010149 11.029528) (xy 107.856613 11.111595) (xy 107.722038 11.222038)
+        (xy 107.611595 11.356613) (xy 107.529528 11.510149) (xy 107.478992 11.676745) (xy 107.461928 11.849999) (xy 107.461928 12.750001)
+        (xy 107.478992 12.923255) (xy 107.518613 13.053868) (xy 107.327009 13.053868) (xy 107.12705 13.093642) (xy 106.938692 13.171663)
+        (xy 106.769174 13.284931) (xy 106.625011 13.429094) (xy 106.511743 13.598612) (xy 106.433722 13.78697) (xy 106.393948 13.986929)
+        (xy 106.393948 14.190807) (xy 106.433722 14.390766) (xy 106.511743 14.579124) (xy 106.625011 14.748642) (xy 106.769174 14.892805)
+        (xy 106.938692 15.006073) (xy 107.12705 15.084094) (xy 107.327009 15.123868) (xy 107.509512 15.123868) (xy 107.529528 15.189851)
+        (xy 107.611595 15.343387) (xy 107.722038 15.477962) (xy 107.856613 15.588405) (xy 107.907526 15.615618) (xy 107.874188 15.725518)
+        (xy 107.872762 15.74) (xy 104.539193 15.74) (xy 104.541 15.739452) (xy 104.651314 15.680487) (xy 104.748005 15.601135)
+        (xy 104.827357 15.504444) (xy 104.886322 15.39413) (xy 104.922632 15.274432) (xy 104.934892 15.14995) (xy 104.934892 14.45145)
+        (xy 104.922632 14.326968) (xy 104.886322 14.20727) (xy 104.827357 14.096956) (xy 104.78997 14.0514) (xy 104.827357 14.005844)
+        (xy 104.886322 13.89553) (xy 104.922632 13.775832) (xy 104.934892 13.65135) (xy 104.93182 13.58785) (xy 104.77307 13.4291)
+        (xy 103.67452 13.4291) (xy 103.67452 13.4491) (xy 103.42052 13.4491) (xy 103.42052 13.4291) (xy 103.40052 13.4291)
+        (xy 103.40052 13.1751) (xy 103.42052 13.1751) (xy 103.42052 13.1551) (xy 103.67452 13.1551) (xy 103.67452 13.1751)
+        (xy 104.77307 13.1751) (xy 104.93182 13.01635) (xy 104.934892 12.95285) (xy 104.922632 12.828368) (xy 104.886322 12.70867)
+        (xy 104.827357 12.598356) (xy 104.748005 12.501665) (xy 104.651314 12.422313) (xy 104.541 12.363348) (xy 104.421302 12.327038)
+        (xy 104.29682 12.314778) (xy 103.936672 12.317165) (xy 103.936672 11.40091) (xy 103.924412 11.276428) (xy 103.888102 11.15673)
+        (xy 103.829137 11.046416) (xy 103.749785 10.949725) (xy 103.653094 10.870373) (xy 103.54278 10.811408) (xy 103.423082 10.775098)
+        (xy 103.2986 10.762838) (xy 102.50104 10.762838) (xy 102.376558 10.775098) (xy 102.25686 10.811408) (xy 102.146546 10.870373)
+        (xy 102.049855 10.949725) (xy 101.970503 11.046416) (xy 101.911538 11.15673) (xy 101.875228 11.276428) (xy 101.862968 11.40091)
+        (xy 101.862968 12.39913) (xy 101.875228 12.523612) (xy 101.911538 12.64331) (xy 101.970503 12.753624) (xy 102.049855 12.850315)
+        (xy 102.146546 12.929667) (xy 102.161637 12.937733) (xy 102.160148 12.95285) (xy 102.16322 13.01635) (xy 102.182954 13.036084)
+        (xy 102.11636 13.0085) (xy 101.906822 12.96682) (xy 101.693178 12.96682) (xy 101.48364 13.0085) (xy 101.286259 13.090258)
+        (xy 101.10862 13.208952) (xy 100.957552 13.36002) (xy 100.838858 13.537659) (xy 100.7571 13.73504) (xy 100.71542 13.944578)
+        (xy 100.71542 14.158222) (xy 100.7571 14.36776) (xy 100.838858 14.565141) (xy 100.957552 14.74278) (xy 101.10862 14.893848)
+        (xy 101.286259 15.012542) (xy 101.48364 15.0943) (xy 101.693178 15.13598) (xy 101.906822 15.13598) (xy 102.11636 15.0943)
+        (xy 102.160148 15.076162) (xy 102.160148 15.14995) (xy 102.172408 15.274432) (xy 102.208718 15.39413) (xy 102.267683 15.504444)
+        (xy 102.347035 15.601135) (xy 102.443726 15.680487) (xy 102.55404 15.739452) (xy 102.644779 15.766978) (xy 102.582795 15.859744)
+        (xy 102.504774 16.048102) (xy 102.475453 16.19551) (xy 102.313741 16.087458) (xy 102.11636 16.0057) (xy 101.906822 15.96402)
+        (xy 101.693178 15.96402) (xy 101.48364 16.0057) (xy 101.286259 16.087458) (xy 101.10862 16.206152) (xy 100.957552 16.35722)
+        (xy 100.838858 16.534859) (xy 100.7571 16.73224) (xy 100.71542 16.941778) (xy 100.71542 17.155422) (xy 100.7571 17.36496)
+        (xy 100.838858 17.562341) (xy 100.957552 17.73998) (xy 101.10862 17.891048) (xy 101.210813 17.959331) (xy 101.209999 17.959999)
+        (xy 101.154871 18.027174) (xy 101.123829 18.064997) (xy 101.1015 18.062798) (xy 100.695 18.062798) (xy 100.695 13.037202)
+        (xy 101.1015 13.037202) (xy 101.225982 13.024942) (xy 101.34568 12.988632) (xy 101.455994 12.929667) (xy 101.552685 12.850315)
+        (xy 101.632037 12.753624) (xy 101.691002 12.64331) (xy 101.727312 12.523612) (xy 101.739572 12.39913) (xy 101.739572 11.40091)
+        (xy 101.727312 11.276428) (xy 101.691002 11.15673) (xy 101.632037 11.046416) (xy 101.552685 10.949725) (xy 101.455994 10.870373)
+        (xy 101.410491 10.846051) (xy 101.49558 10.800043) (xy 101.738264 10.72492) (xy 102.022929 10.695) (xy 109.966008 10.695)
+      )
+    )
+  )
+  (zone (net 2) (net_name GND) (layer F.Cu) (tstamp 5DD408B1) (hatch edge 0.508)
+    (connect_pads (clearance 0.508))
+    (min_thickness 0.254)
+    (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
+    (polygon
+      (pts
+        (xy 99.2 9.3) (xy 113.2 9.45) (xy 113.15 98.55) (xy 98.9 98.55)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 101.027 95.973) (xy 101.047 95.973) (xy 101.047 96.227) (xy 101.027 96.227) (xy 101.027 97.27625)
+        (xy 101.065 97.31425) (xy 101.065 97.886715) (xy 100.982795 98.009744) (xy 100.904774 98.198102) (xy 100.865 98.398061)
+        (xy 100.865 98.423) (xy 100.695 98.423) (xy 100.695 97.35425) (xy 100.773 97.27625) (xy 100.773 96.227)
+        (xy 100.753 96.227) (xy 100.753 95.973) (xy 100.773 95.973) (xy 100.773 95.953) (xy 101.027 95.953)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.661928 93.275) (xy 107.674188 93.399482) (xy 107.710498 93.51918) (xy 107.769463 93.629494) (xy 107.848815 93.726185)
+        (xy 107.945506 93.805537) (xy 108.05582 93.864502) (xy 108.175518 93.900812) (xy 108.3 93.913072) (xy 108.639304 93.913072)
+        (xy 108.64 94.02675) (xy 108.79875 94.1855) (xy 109.823 94.1855) (xy 109.823 94.1655) (xy 110.077 94.1655)
+        (xy 110.077 94.1855) (xy 111.10125 94.1855) (xy 111.26 94.02675) (xy 111.260699 93.912508) (xy 111.3 93.913072)
+        (xy 111.305001 93.912579) (xy 111.305001 98.423) (xy 110.917621 98.423) (xy 111.002962 98.352962) (xy 111.113405 98.218387)
+        (xy 111.195472 98.064851) (xy 111.246008 97.898255) (xy 111.263072 97.725001) (xy 111.263072 96.649999) (xy 111.246008 96.476745)
+        (xy 111.195472 96.310149) (xy 111.113405 96.156613) (xy 111.002962 96.022038) (xy 110.868387 95.911595) (xy 110.714851 95.829528)
+        (xy 110.548255 95.778992) (xy 110.375001 95.761928) (xy 109.524999 95.761928) (xy 109.351745 95.778992) (xy 109.185149 95.829528)
+        (xy 109.031613 95.911595) (xy 108.897038 96.022038) (xy 108.786595 96.156613) (xy 108.704528 96.310149) (xy 108.653992 96.476745)
+        (xy 108.636928 96.649999) (xy 108.636928 97.319704) (xy 108.313072 97.64356) (xy 108.313072 96.674999) (xy 108.296008 96.501745)
+        (xy 108.245472 96.335149) (xy 108.163405 96.181613) (xy 108.052962 96.047038) (xy 107.918387 95.936595) (xy 107.764851 95.854528)
+        (xy 107.598255 95.803992) (xy 107.425001 95.786928) (xy 107.035 95.786928) (xy 107.035 95.748061) (xy 106.995226 95.548102)
+        (xy 106.917205 95.359744) (xy 106.803937 95.190226) (xy 106.713711 95.1) (xy 108.636928 95.1) (xy 108.649188 95.224482)
+        (xy 108.685498 95.34418) (xy 108.744463 95.454494) (xy 108.823815 95.551185) (xy 108.920506 95.630537) (xy 109.03082 95.689502)
+        (xy 109.150518 95.725812) (xy 109.275 95.738072) (xy 109.66425 95.735) (xy 109.823 95.57625) (xy 109.823 94.4395)
+        (xy 110.077 94.4395) (xy 110.077 95.57625) (xy 110.23575 95.735) (xy 110.625 95.738072) (xy 110.749482 95.725812)
+        (xy 110.86918 95.689502) (xy 110.979494 95.630537) (xy 111.076185 95.551185) (xy 111.155537 95.454494) (xy 111.214502 95.34418)
+        (xy 111.250812 95.224482) (xy 111.263072 95.1) (xy 111.26 94.59825) (xy 111.10125 94.4395) (xy 110.077 94.4395)
+        (xy 109.823 94.4395) (xy 108.79875 94.4395) (xy 108.64 94.59825) (xy 108.636928 95.1) (xy 106.713711 95.1)
+        (xy 106.659774 95.046063) (xy 106.490256 94.932795) (xy 106.301898 94.854774) (xy 106.101939 94.815) (xy 105.898061 94.815)
+        (xy 105.698102 94.854774) (xy 105.509744 94.932795) (xy 105.340226 95.046063) (xy 105.196063 95.190226) (xy 105.082795 95.359744)
+        (xy 105.004774 95.548102) (xy 104.965 95.748061) (xy 104.965 95.786928) (xy 104.574999 95.786928) (xy 104.401745 95.803992)
+        (xy 104.235149 95.854528) (xy 104.163072 95.893054) (xy 104.163072 95.649999) (xy 104.146008 95.476745) (xy 104.095472 95.310149)
+        (xy 104.013405 95.156613) (xy 103.902962 95.022038) (xy 103.791428 94.930504) (xy 103.84418 94.914502) (xy 103.954494 94.855537)
+        (xy 104.051185 94.776185) (xy 104.130537 94.679494) (xy 104.189502 94.56918) (xy 104.225812 94.449482) (xy 104.238072 94.325)
+        (xy 104.237103 94.217972) (xy 104.26851 94.249379) (xy 104.294656 94.281238) (xy 104.326515 94.307384) (xy 104.326517 94.307386)
+        (xy 104.421801 94.385583) (xy 104.56686 94.463119) (xy 104.724258 94.510865) (xy 104.887947 94.526987) (xy 104.928965 94.522947)
+        (xy 105.095949 94.522947) (xy 105.218978 94.605152) (xy 105.407336 94.683173) (xy 105.607295 94.722947) (xy 105.811173 94.722947)
+        (xy 106.011132 94.683173) (xy 106.19949 94.605152) (xy 106.369008 94.491884) (xy 106.513171 94.347721) (xy 106.626439 94.178203)
+        (xy 106.70446 93.989845) (xy 106.744234 93.789886) (xy 106.744234 93.631252) (xy 106.803888 93.591393) (xy 106.948051 93.44723)
+        (xy 107.061319 93.277712) (xy 107.13934 93.089354) (xy 107.179114 92.889395) (xy 107.179114 92.685517) (xy 107.164704 92.613072)
+        (xy 107.425001 92.613072) (xy 107.598255 92.596008) (xy 107.661928 92.576693)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 103.227 93.573) (xy 103.247 93.573) (xy 103.247 93.827) (xy 103.227 93.827) (xy 103.227 93.847)
+        (xy 103.034999 93.847) (xy 103.034999 93.553) (xy 103.227 93.553)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.927 92.523) (xy 110.947 92.523) (xy 110.947 92.777) (xy 110.927 92.777) (xy 110.927 92.797)
+        (xy 110.673 92.797) (xy 110.673 92.777) (xy 110.653 92.777) (xy 110.653 92.523) (xy 110.673 92.523)
+        (xy 110.673 92.503) (xy 110.927 92.503)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.085498 91.02418) (xy 110.144463 91.134494) (xy 110.215 91.220444) (xy 110.215 91.351939) (xy 110.223459 91.394466)
+        (xy 110.175518 91.399188) (xy 110.05582 91.435498) (xy 109.945506 91.494463) (xy 109.86 91.564636) (xy 109.86 91.244468)
+        (xy 109.876185 91.231185) (xy 109.955537 91.134494) (xy 110.014502 91.02418) (xy 110.05 90.907159)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 104.782795 86.540256) (xy 104.896063 86.709774) (xy 105.040226 86.853937) (xy 105.209744 86.967205) (xy 105.398102 87.045226)
+        (xy 105.543224 87.074092) (xy 105.665 87.195869) (xy 105.665 87.399428) (xy 104.574999 87.399428) (xy 104.401745 87.416492)
+        (xy 104.235149 87.467028) (xy 104.081613 87.549095) (xy 103.947038 87.659538) (xy 103.836595 87.794113) (xy 103.754528 87.947649)
+        (xy 103.717656 88.069202) (xy 103.634639 88.024828) (xy 103.552655 87.999959) (xy 103.562352 87.9015) (xy 103.562352 86.70262)
+        (xy 103.550092 86.578138) (xy 103.524456 86.493626) (xy 103.559744 86.517205) (xy 103.748102 86.595226) (xy 103.948061 86.635)
+        (xy 104.151939 86.635) (xy 104.351898 86.595226) (xy 104.540256 86.517205) (xy 104.709774 86.403937) (xy 104.72148 86.392231)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 101.88996 85.989762) (xy 101.88996 86.16341) (xy 101.827 86.22637) (xy 101.827 86.381994) (xy 101.786138 86.45844)
+        (xy 101.749828 86.578138) (xy 101.737568 86.70262) (xy 101.737568 87.44906) (xy 101.662432 87.44906) (xy 101.662432 86.70262)
+        (xy 101.650172 86.578138) (xy 101.613862 86.45844) (xy 101.573 86.381994) (xy 101.573 86.22637) (xy 101.41425 86.06762)
+        (xy 101.2973 86.077596) (xy 101.225181 86.099965) (xy 101.148842 86.076808) (xy 101.02436 86.064548) (xy 100.695 86.064548)
+        (xy 100.695 85.922806) (xy 100.849999 85.938072) (xy 101.500001 85.938072) (xy 101.673255 85.921008) (xy 101.786772 85.886573)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 109.127 86.373) (xy 109.147 86.373) (xy 109.147 86.627) (xy 109.127 86.627) (xy 109.127 86.647)
+        (xy 108.873 86.647) (xy 108.873 86.627) (xy 108.853 86.627) (xy 108.853 86.373) (xy 108.873 86.373)
+        (xy 108.873 86.353) (xy 109.127 86.353)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 104.251006 70.662218) (xy 104.235149 70.667028) (xy 104.081613 70.749095) (xy 103.947038 70.859538) (xy 103.836595 70.994113)
+        (xy 103.754528 71.147649) (xy 103.703992 71.314245) (xy 103.686928 71.487499) (xy 103.686928 72.512501) (xy 103.703992 72.685755)
+        (xy 103.754528 72.852351) (xy 103.836595 73.005887) (xy 103.947038 73.140462) (xy 104.034816 73.2125) (xy 103.947038 73.284538)
+        (xy 103.836595 73.419113) (xy 103.754528 73.572649) (xy 103.703992 73.739245) (xy 103.686928 73.912499) (xy 103.686928 74.937501)
+        (xy 103.703992 75.110755) (xy 103.754528 75.277351) (xy 103.836595 75.430887) (xy 103.887926 75.493433) (xy 103.824482 75.474188)
+        (xy 103.7 75.461928) (xy 103.41075 75.465) (xy 103.252 75.62375) (xy 103.252 76.673) (xy 104.17625 76.673)
+        (xy 104.335 76.51425) (xy 104.338072 76.1) (xy 104.325812 75.975518) (xy 104.289502 75.85582) (xy 104.237597 75.758715)
+        (xy 104.401745 75.808508) (xy 104.574999 75.825572) (xy 105.24 75.825572) (xy 105.24 76.692677) (xy 105.236324 76.73)
+        (xy 105.24 76.767322) (xy 105.24 76.767332) (xy 105.250997 76.878985) (xy 105.288014 77.001015) (xy 105.294454 77.022246)
+        (xy 105.365026 77.154276) (xy 105.40337 77.200998) (xy 105.459999 77.270001) (xy 105.489003 77.293804) (xy 106.120744 77.925545)
+        (xy 105.996063 78.050226) (xy 105.882795 78.219744) (xy 105.804774 78.408102) (xy 105.765 78.608061) (xy 105.765 78.811939)
+        (xy 105.802294 78.999428) (xy 105.075 78.999428) (xy 105.075 78.828061) (xy 105.035226 78.628102) (xy 104.957205 78.439744)
+        (xy 104.843937 78.270226) (xy 104.699774 78.126063) (xy 104.530256 78.012795) (xy 104.341898 77.934774) (xy 104.189526 77.904466)
+        (xy 104.230537 77.854494) (xy 104.289502 77.74418) (xy 104.325812 77.624482) (xy 104.338072 77.5) (xy 104.335 77.08575)
+        (xy 104.17625 76.927) (xy 103.252 76.927) (xy 103.252 77.97625) (xy 103.393166 78.117416) (xy 103.380226 78.126063)
+        (xy 103.236063 78.270226) (xy 103.122795 78.439744) (xy 103.044774 78.628102) (xy 103.005 78.828061) (xy 103.005 78.892646)
+        (xy 102.945026 78.965724) (xy 102.874454 79.097754) (xy 102.852842 79.169002) (xy 102.830998 79.241014) (xy 102.824425 79.307754)
+        (xy 102.816324 79.39) (xy 102.820001 79.427332) (xy 102.820001 79.606288) (xy 102.776063 79.650226) (xy 102.719572 79.734771)
+        (xy 102.423803 79.439002) (xy 102.400001 79.409999) (xy 102.284276 79.315026) (xy 102.152247 79.244454) (xy 102.008986 79.200997)
+        (xy 101.897333 79.19) (xy 101.897322 79.19) (xy 101.884999 79.188786) (xy 101.884999 79.039802) (xy 101.9648 78.960001)
+        (xy 101.993799 78.931003) (xy 101.993803 78.930998) (xy 102.611002 78.3138) (xy 102.640001 78.290001) (xy 102.693794 78.224454)
+        (xy 102.734974 78.174277) (xy 102.755493 78.13589) (xy 102.83925 78.135) (xy 102.998 77.97625) (xy 102.998 76.927)
+        (xy 102.978 76.927) (xy 102.978 76.673) (xy 102.998 76.673) (xy 102.998 75.62375) (xy 102.86 75.48575)
+        (xy 102.86 75.287322) (xy 102.863676 75.249999) (xy 102.86 75.212676) (xy 102.86 75.212667) (xy 102.849003 75.101014)
+        (xy 102.805546 74.957753) (xy 102.734974 74.825724) (xy 102.709945 74.795226) (xy 102.663799 74.738996) (xy 102.663795 74.738992)
+        (xy 102.640001 74.709999) (xy 102.611009 74.686206) (xy 101.809802 73.885) (xy 101.827002 73.885) (xy 101.827002 73.726252)
+        (xy 101.98575 73.885) (xy 102.4 73.888072) (xy 102.524482 73.875812) (xy 102.64418 73.839502) (xy 102.754494 73.780537)
+        (xy 102.851185 73.701185) (xy 102.930537 73.604494) (xy 102.989502 73.49418) (xy 103.025812 73.374482) (xy 103.038072 73.25)
+        (xy 103.035 72.96075) (xy 102.87625 72.802) (xy 101.827 72.802) (xy 101.827 72.822) (xy 101.573 72.822)
+        (xy 101.573 72.802) (xy 101.553 72.802) (xy 101.553 72.548) (xy 101.573 72.548) (xy 101.573 72.528)
+        (xy 101.827 72.528) (xy 101.827 72.548) (xy 102.87625 72.548) (xy 103.035 72.38925) (xy 103.038072 72.1)
+        (xy 103.025812 71.975518) (xy 102.989502 71.85582) (xy 102.930537 71.745506) (xy 102.851185 71.648815) (xy 102.771406 71.583342)
+        (xy 102.777962 71.577962) (xy 102.888405 71.443387) (xy 102.970472 71.289851) (xy 103.021008 71.123255) (xy 103.038072 70.950001)
+        (xy 103.038072 70.299999) (xy 103.021008 70.126745) (xy 102.970472 69.960149) (xy 102.964208 69.94843) (xy 103.148061 69.985)
+        (xy 103.351939 69.985) (xy 103.536982 69.948193)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 109.365002 72.797435) (xy 109.201939 72.765) (xy 108.998061 72.765) (xy 108.798102 72.804774) (xy 108.609744 72.882795)
+        (xy 108.440226 72.996063) (xy 108.396289 73.04) (xy 108.135409 73.04) (xy 108.163405 73.005887) (xy 108.245472 72.852351)
+        (xy 108.273486 72.76) (xy 108.28568 72.76) (xy 108.323002 72.763676) (xy 108.360324 72.76) (xy 108.360335 72.76)
+        (xy 108.471988 72.749003) (xy 108.615249 72.705546) (xy 108.747278 72.634974) (xy 108.863003 72.540001) (xy 108.886805 72.510998)
+        (xy 109.365001 72.032802)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.238506 68.965) (xy 107.198061 68.965) (xy 106.998102 69.004774) (xy 106.809744 69.082795) (xy 106.640226 69.196063)
+        (xy 106.496063 69.340226) (xy 106.423551 69.448749) (xy 105.61 68.635199) (xy 105.61 68.153711) (xy 105.653937 68.109774)
+        (xy 105.767205 67.940256) (xy 105.845226 67.751898) (xy 105.875119 67.601613)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.252829 10.723123) (xy 110.496026 10.796549) (xy 110.720331 10.915814) (xy 110.776872 10.961928) (xy 110.399999 10.961928)
+        (xy 110.226745 10.978992) (xy 110.060149 11.029528) (xy 109.906613 11.111595) (xy 109.772038 11.222038) (xy 109.7 11.309816)
+        (xy 109.627962 11.222038) (xy 109.493387 11.111595) (xy 109.339851 11.029528) (xy 109.173255 10.978992) (xy 109.000001 10.961928)
+        (xy 108.349999 10.961928) (xy 108.176745 10.978992) (xy 108.010149 11.029528) (xy 107.856613 11.111595) (xy 107.722038 11.222038)
+        (xy 107.611595 11.356613) (xy 107.529528 11.510149) (xy 107.478992 11.676745) (xy 107.461928 11.849999) (xy 107.461928 12.750001)
+        (xy 107.478992 12.923255) (xy 107.48848 12.954534) (xy 107.389147 13.053868) (xy 107.327009 13.053868) (xy 107.12705 13.093642)
+        (xy 106.938692 13.171663) (xy 106.769174 13.284931) (xy 106.625011 13.429094) (xy 106.511743 13.598612) (xy 106.433722 13.78697)
+        (xy 106.393948 13.986929) (xy 106.393948 14.190807) (xy 106.397817 14.210259) (xy 106.309506 14.257463) (xy 106.212815 14.336815)
+        (xy 106.133463 14.433506) (xy 106.074498 14.54382) (xy 106.038188 14.663518) (xy 106.025928 14.788) (xy 106.029 15.26425)
+        (xy 106.18775 15.423) (xy 106.918 15.423) (xy 106.918 15.403) (xy 107.172 15.403) (xy 107.172 15.423)
+        (xy 107.90225 15.423) (xy 108.061 15.26425) (xy 108.063286 14.909801) (xy 108.088722 14.892805) (xy 108.232885 14.748642)
+        (xy 108.346153 14.579124) (xy 108.424174 14.390766) (xy 108.463948 14.190807) (xy 108.463948 14.128669) (xy 108.94 13.652618)
+        (xy 108.940001 16.846279) (xy 108.896063 16.890217) (xy 108.782795 17.059735) (xy 108.704774 17.248093) (xy 108.665 17.448052)
+        (xy 108.665 17.65193) (xy 108.704774 17.851889) (xy 108.782795 18.040247) (xy 108.896063 18.209765) (xy 109.040226 18.353928)
+        (xy 109.209744 18.467196) (xy 109.398102 18.545217) (xy 109.598061 18.584991) (xy 109.801939 18.584991) (xy 110.001898 18.545217)
+        (xy 110.095 18.506652) (xy 110.095 19.865574) (xy 110.022815 19.924815) (xy 109.943463 20.021506) (xy 109.884498 20.13182)
+        (xy 109.848188 20.251518) (xy 109.835928 20.376) (xy 109.835928 20.483674) (xy 109.799724 20.503026) (xy 109.683999 20.597999)
+        (xy 109.6602 20.626998) (xy 109.088998 21.198201) (xy 109.06 21.221999) (xy 109.036202 21.250997) (xy 109.036201 21.250998)
+        (xy 108.965026 21.337724) (xy 108.894454 21.469754) (xy 108.877916 21.524275) (xy 108.850998 21.613014) (xy 108.847453 21.649003)
+        (xy 108.836324 21.762) (xy 108.840001 21.799332) (xy 108.84 25.796289) (xy 108.796063 25.840226) (xy 108.682795 26.009744)
+        (xy 108.604774 26.198102) (xy 108.565 26.398061) (xy 108.565 26.601939) (xy 108.604774 26.801898) (xy 108.682795 26.990256)
+        (xy 108.796063 27.159774) (xy 108.940226 27.303937) (xy 109.109744 27.417205) (xy 109.298102 27.495226) (xy 109.498061 27.535)
+        (xy 109.701939 27.535) (xy 109.901898 27.495226) (xy 110.090256 27.417205) (xy 110.259774 27.303937) (xy 110.403937 27.159774)
+        (xy 110.517205 26.990256) (xy 110.595226 26.801898) (xy 110.635 26.601939) (xy 110.635 26.398061) (xy 110.595226 26.198102)
+        (xy 110.517205 26.009744) (xy 110.403937 25.840226) (xy 110.36 25.796289) (xy 110.36 22.526844) (xy 110.474 22.538072)
+        (xy 111.236 22.538072) (xy 111.305 22.531276) (xy 111.305001 65.64129) (xy 111.259774 65.596063) (xy 111.090256 65.482795)
+        (xy 110.901898 65.404774) (xy 110.701939 65.365) (xy 110.498061 65.365) (xy 110.36 65.392462) (xy 110.36 62.553711)
+        (xy 110.403937 62.509774) (xy 110.517205 62.340256) (xy 110.595226 62.151898) (xy 110.635 61.951939) (xy 110.635 61.748061)
+        (xy 110.595226 61.548102) (xy 110.517205 61.359744) (xy 110.403937 61.190226) (xy 110.259774 61.046063) (xy 110.090256 60.932795)
+        (xy 109.901898 60.854774) (xy 109.701939 60.815) (xy 109.498061 60.815) (xy 109.298102 60.854774) (xy 109.109744 60.932795)
+        (xy 108.940226 61.046063) (xy 108.796063 61.190226) (xy 108.76001 61.244183) (xy 108.76001 60.360428) (xy 108.763686 60.323103)
+        (xy 108.76001 60.285778) (xy 108.76001 60.28577) (xy 108.749013 60.174117) (xy 108.705556 60.030856) (xy 108.634984 59.898827)
+        (xy 108.540011 59.783102) (xy 108.511013 59.759304) (xy 107.796937 59.045229) (xy 107.796937 58.940822) (xy 107.918387 58.875905)
+        (xy 108.052962 58.765462) (xy 108.163405 58.630887) (xy 108.245472 58.477351) (xy 108.296008 58.310755) (xy 108.313072 58.137501)
+        (xy 108.313072 57.112499) (xy 108.296008 56.939245) (xy 108.245472 56.772649) (xy 108.163405 56.619113) (xy 108.052962 56.484538)
+        (xy 107.965184 56.4125) (xy 108.052962 56.340462) (xy 108.163405 56.205887) (xy 108.245472 56.052351) (xy 108.296008 55.885755)
+        (xy 108.313072 55.712501) (xy 108.313072 54.687499) (xy 108.296008 54.514245) (xy 108.245472 54.347649) (xy 108.163405 54.194113)
+        (xy 108.052962 54.059538) (xy 107.918387 53.949095) (xy 107.764851 53.867028) (xy 107.598255 53.816492) (xy 107.425001 53.799428)
+        (xy 106.645717 53.799428) (xy 106.685 53.601939) (xy 106.685 53.398061) (xy 106.645226 53.198102) (xy 106.567205 53.009744)
+        (xy 106.453937 52.840226) (xy 106.309774 52.696063) (xy 106.140256 52.582795) (xy 105.951898 52.504774) (xy 105.751939 52.465)
+        (xy 105.548061 52.465) (xy 105.348102 52.504774) (xy 105.159744 52.582795) (xy 104.990226 52.696063) (xy 104.846063 52.840226)
+        (xy 104.732795 53.009744) (xy 104.654774 53.198102) (xy 104.615 53.398061) (xy 104.615 53.601939) (xy 104.654283 53.799428)
+        (xy 104.574999 53.799428) (xy 104.401745 53.816492) (xy 104.235149 53.867028) (xy 104.081613 53.949095) (xy 103.947038 54.059538)
+        (xy 103.836595 54.194113) (xy 103.754528 54.347649) (xy 103.703992 54.514245) (xy 103.686928 54.687499) (xy 103.686928 55.712501)
+        (xy 103.703992 55.885755) (xy 103.754528 56.052351) (xy 103.836595 56.205887) (xy 103.947038 56.340462) (xy 104.034816 56.4125)
+        (xy 103.947038 56.484538) (xy 103.836595 56.619113) (xy 103.754528 56.772649) (xy 103.703992 56.939245) (xy 103.686928 57.112499)
+        (xy 103.686928 58.137501) (xy 103.703992 58.310755) (xy 103.754528 58.477351) (xy 103.836595 58.630887) (xy 103.947038 58.765462)
+        (xy 104.081613 58.875905) (xy 104.230363 58.955414) (xy 103.713999 59.471778) (xy 103.685001 59.495576) (xy 103.661203 59.524574)
+        (xy 103.661202 59.524575) (xy 103.590027 59.611301) (xy 103.519455 59.743331) (xy 103.491284 59.836201) (xy 103.482226 59.866065)
+        (xy 103.475999 59.886592) (xy 103.461325 60.035577) (xy 103.465002 60.072909) (xy 103.465002 60.865) (xy 103.398061 60.865)
+        (xy 103.198102 60.904774) (xy 103.009744 60.982795) (xy 102.840226 61.096063) (xy 102.696063 61.240226) (xy 102.582795 61.409744)
+        (xy 102.504774 61.598102) (xy 102.465 61.798061) (xy 102.465 61.860198) (xy 101.239003 63.086196) (xy 101.209999 63.109999)
+        (xy 101.15606 63.175724) (xy 101.115026 63.225724) (xy 101.07118 63.307753) (xy 101.044454 63.357754) (xy 101.000997 63.501015)
+        (xy 100.99 63.612668) (xy 100.99 63.612678) (xy 100.986324 63.65) (xy 100.99 63.687323) (xy 100.990001 65.520473)
+        (xy 100.960149 65.529528) (xy 100.806613 65.611595) (xy 100.695 65.703194) (xy 100.695 46.274999) (xy 103.686928 46.274999)
+        (xy 103.686928 47.300001) (xy 103.703992 47.473255) (xy 103.754528 47.639851) (xy 103.836595 47.793387) (xy 103.947038 47.927962)
+        (xy 104.042432 48.00625) (xy 103.947038 48.084538) (xy 103.836595 48.219113) (xy 103.754528 48.372649) (xy 103.703992 48.539245)
+        (xy 103.686928 48.712499) (xy 103.686928 49.737501) (xy 103.703992 49.910755) (xy 103.754528 50.077351) (xy 103.836595 50.230887)
+        (xy 103.947038 50.365462) (xy 104.081613 50.475905) (xy 104.235149 50.557972) (xy 104.401745 50.608508) (xy 104.574999 50.625572)
+        (xy 105.298904 50.625572) (xy 105.34 50.702456) (xy 105.34 50.801939) (xy 105.379774 51.001898) (xy 105.457795 51.190256)
+        (xy 105.571063 51.359774) (xy 105.715226 51.503937) (xy 105.884744 51.617205) (xy 106.073102 51.695226) (xy 106.273061 51.735)
+        (xy 106.476939 51.735) (xy 106.676898 51.695226) (xy 106.865256 51.617205) (xy 107.034774 51.503937) (xy 107.178937 51.359774)
+        (xy 107.292205 51.190256) (xy 107.370226 51.001898) (xy 107.41 50.801939) (xy 107.41 50.625572) (xy 107.425001 50.625572)
+        (xy 107.598255 50.608508) (xy 107.764851 50.557972) (xy 107.918387 50.475905) (xy 108.052962 50.365462) (xy 108.163405 50.230887)
+        (xy 108.245472 50.077351) (xy 108.296008 49.910755) (xy 108.313072 49.737501) (xy 108.313072 48.712499) (xy 108.296008 48.539245)
+        (xy 108.245472 48.372649) (xy 108.163405 48.219113) (xy 108.052962 48.084538) (xy 107.957568 48.00625) (xy 108.052962 47.927962)
+        (xy 108.163405 47.793387) (xy 108.245472 47.639851) (xy 108.296008 47.473255) (xy 108.313072 47.300001) (xy 108.313072 46.274999)
+        (xy 108.296008 46.101745) (xy 108.245472 45.935149) (xy 108.163405 45.781613) (xy 108.052962 45.647038) (xy 107.918387 45.536595)
+        (xy 107.764851 45.454528) (xy 107.598255 45.403992) (xy 107.425001 45.386928) (xy 106.67804 45.386928) (xy 106.685 45.351939)
+        (xy 106.685 45.148061) (xy 106.645226 44.948102) (xy 106.567205 44.759744) (xy 106.453937 44.590226) (xy 106.309774 44.446063)
+        (xy 106.140256 44.332795) (xy 105.951898 44.254774) (xy 105.751939 44.215) (xy 105.548061 44.215) (xy 105.348102 44.254774)
+        (xy 105.159744 44.332795) (xy 104.990226 44.446063) (xy 104.846063 44.590226) (xy 104.732795 44.759744) (xy 104.654774 44.948102)
+        (xy 104.615 45.148061) (xy 104.615 45.351939) (xy 104.62196 45.386928) (xy 104.574999 45.386928) (xy 104.401745 45.403992)
+        (xy 104.235149 45.454528) (xy 104.081613 45.536595) (xy 103.947038 45.647038) (xy 103.836595 45.781613) (xy 103.754528 45.935149)
+        (xy 103.703992 46.101745) (xy 103.686928 46.274999) (xy 100.695 46.274999) (xy 100.695 37.887499) (xy 103.686928 37.887499)
+        (xy 103.686928 38.912501) (xy 103.703992 39.085755) (xy 103.754528 39.252351) (xy 103.836595 39.405887) (xy 103.947038 39.540462)
+        (xy 104.027201 39.60625) (xy 103.947038 39.672038) (xy 103.836595 39.806613) (xy 103.754528 39.960149) (xy 103.703992 40.126745)
+        (xy 103.686928 40.299999) (xy 103.686928 41.325001) (xy 103.703992 41.498255) (xy 103.754528 41.664851) (xy 103.836595 41.818387)
+        (xy 103.947038 41.952962) (xy 104.081613 42.063405) (xy 104.235149 42.145472) (xy 104.401745 42.196008) (xy 104.574999 42.213072)
+        (xy 105.34696 42.213072) (xy 105.34 42.248061) (xy 105.34 42.451939) (xy 105.379774 42.651898) (xy 105.457795 42.840256)
+        (xy 105.571063 43.009774) (xy 105.715226 43.153937) (xy 105.884744 43.267205) (xy 106.073102 43.345226) (xy 106.273061 43.385)
+        (xy 106.476939 43.385) (xy 106.676898 43.345226) (xy 106.865256 43.267205) (xy 107.034774 43.153937) (xy 107.178937 43.009774)
+        (xy 107.292205 42.840256) (xy 107.370226 42.651898) (xy 107.41 42.451939) (xy 107.41 42.248061) (xy 107.40304 42.213072)
+        (xy 107.425001 42.213072) (xy 107.598255 42.196008) (xy 107.764851 42.145472) (xy 107.918387 42.063405) (xy 108.052962 41.952962)
+        (xy 108.163405 41.818387) (xy 108.245472 41.664851) (xy 108.296008 41.498255) (xy 108.313072 41.325001) (xy 108.313072 40.299999)
+        (xy 108.296008 40.126745) (xy 108.245472 39.960149) (xy 108.163405 39.806613) (xy 108.052962 39.672038) (xy 107.972799 39.60625)
+        (xy 108.052962 39.540462) (xy 108.163405 39.405887) (xy 108.245472 39.252351) (xy 108.296008 39.085755) (xy 108.313072 38.912501)
+        (xy 108.313072 37.887499) (xy 108.296008 37.714245) (xy 108.245472 37.547649) (xy 108.163405 37.394113) (xy 108.052962 37.259538)
+        (xy 107.918387 37.149095) (xy 107.764851 37.067028) (xy 107.598255 37.016492) (xy 107.425001 36.999428) (xy 106.685 36.999428)
+        (xy 106.685 36.798061) (xy 106.645226 36.598102) (xy 106.567205 36.409744) (xy 106.453937 36.240226) (xy 106.309774 36.096063)
+        (xy 106.140256 35.982795) (xy 105.951898 35.904774) (xy 105.751939 35.865) (xy 105.548061 35.865) (xy 105.348102 35.904774)
+        (xy 105.159744 35.982795) (xy 104.990226 36.096063) (xy 104.846063 36.240226) (xy 104.732795 36.409744) (xy 104.654774 36.598102)
+        (xy 104.615 36.798061) (xy 104.615 36.999428) (xy 104.574999 36.999428) (xy 104.401745 37.016492) (xy 104.235149 37.067028)
+        (xy 104.081613 37.149095) (xy 103.947038 37.259538) (xy 103.836595 37.394113) (xy 103.754528 37.547649) (xy 103.703992 37.714245)
+        (xy 103.686928 37.887499) (xy 100.695 37.887499) (xy 100.695 29.387499) (xy 103.686928 29.387499) (xy 103.686928 30.412501)
+        (xy 103.703992 30.585755) (xy 103.754528 30.752351) (xy 103.836595 30.905887) (xy 103.947038 31.040462) (xy 104.081613 31.150905)
+        (xy 104.103306 31.1625) (xy 104.081613 31.174095) (xy 103.947038 31.284538) (xy 103.836595 31.419113) (xy 103.754528 31.572649)
+        (xy 103.703992 31.739245) (xy 103.686928 31.912499) (xy 103.686928 32.937501) (xy 103.703992 33.110755) (xy 103.754528 33.277351)
+        (xy 103.836595 33.430887) (xy 103.947038 33.565462) (xy 104.081613 33.675905) (xy 104.235149 33.757972) (xy 104.401745 33.808508)
+        (xy 104.574999 33.825572) (xy 105.354419 33.825572) (xy 105.34 33.898061) (xy 105.34 34.101939) (xy 105.379774 34.301898)
+        (xy 105.457795 34.490256) (xy 105.571063 34.659774) (xy 105.715226 34.803937) (xy 105.884744 34.917205) (xy 106.073102 34.995226)
+        (xy 106.273061 35.035) (xy 106.476939 35.035) (xy 106.676898 34.995226) (xy 106.865256 34.917205) (xy 107.034774 34.803937)
+        (xy 107.178937 34.659774) (xy 107.292205 34.490256) (xy 107.370226 34.301898) (xy 107.41 34.101939) (xy 107.41 33.898061)
+        (xy 107.395581 33.825572) (xy 107.425001 33.825572) (xy 107.598255 33.808508) (xy 107.764851 33.757972) (xy 107.918387 33.675905)
+        (xy 108.052962 33.565462) (xy 108.163405 33.430887) (xy 108.245472 33.277351) (xy 108.296008 33.110755) (xy 108.313072 32.937501)
+        (xy 108.313072 31.912499) (xy 108.296008 31.739245) (xy 108.245472 31.572649) (xy 108.163405 31.419113) (xy 108.052962 31.284538)
+        (xy 107.918387 31.174095) (xy 107.896694 31.1625) (xy 107.918387 31.150905) (xy 108.052962 31.040462) (xy 108.163405 30.905887)
+        (xy 108.245472 30.752351) (xy 108.296008 30.585755) (xy 108.313072 30.412501) (xy 108.313072 29.387499) (xy 108.296008 29.214245)
+        (xy 108.245472 29.047649) (xy 108.163405 28.894113) (xy 108.052962 28.759538) (xy 107.918387 28.649095) (xy 107.764851 28.567028)
+        (xy 107.598255 28.516492) (xy 107.425001 28.499428) (xy 106.685 28.499428) (xy 106.685 28.298061) (xy 106.645226 28.098102)
+        (xy 106.567205 27.909744) (xy 106.453937 27.740226) (xy 106.309774 27.596063) (xy 106.140256 27.482795) (xy 105.951898 27.404774)
+        (xy 105.751939 27.365) (xy 105.548061 27.365) (xy 105.348102 27.404774) (xy 105.159744 27.482795) (xy 104.990226 27.596063)
+        (xy 104.846063 27.740226) (xy 104.732795 27.909744) (xy 104.654774 28.098102) (xy 104.615 28.298061) (xy 104.615 28.499428)
+        (xy 104.574999 28.499428) (xy 104.401745 28.516492) (xy 104.235149 28.567028) (xy 104.081613 28.649095) (xy 103.947038 28.759538)
+        (xy 103.836595 28.894113) (xy 103.754528 29.047649) (xy 103.703992 29.214245) (xy 103.686928 29.387499) (xy 100.695 29.387499)
+        (xy 100.695 22.538072) (xy 101.421 22.538072) (xy 101.545482 22.525812) (xy 101.66518 22.489502) (xy 101.775494 22.430537)
+        (xy 101.85312 22.366831) (xy 101.990226 22.503937) (xy 102.159744 22.617205) (xy 102.348102 22.695226) (xy 102.548061 22.735)
+        (xy 102.740001 22.735) (xy 102.74 23.896289) (xy 102.696063 23.940226) (xy 102.582795 24.109744) (xy 102.504774 24.298102)
+        (xy 102.465 24.498061) (xy 102.465 24.701939) (xy 102.504774 24.901898) (xy 102.582795 25.090256) (xy 102.696063 25.259774)
+        (xy 102.840226 25.403937) (xy 103.009744 25.517205) (xy 103.198102 25.595226) (xy 103.398061 25.635) (xy 103.601939 25.635)
+        (xy 103.801898 25.595226) (xy 103.990256 25.517205) (xy 104.159774 25.403937) (xy 104.28931 25.274401) (xy 104.401745 25.308508)
+        (xy 104.574999 25.325572) (xy 105.07431 25.325572) (xy 105.04 25.498061) (xy 105.04 25.701939) (xy 105.079774 25.901898)
+        (xy 105.157795 26.090256) (xy 105.271063 26.259774) (xy 105.415226 26.403937) (xy 105.584744 26.517205) (xy 105.773102 26.595226)
+        (xy 105.973061 26.635) (xy 106.176939 26.635) (xy 106.376898 26.595226) (xy 106.565256 26.517205) (xy 106.734774 26.403937)
+        (xy 106.878937 26.259774) (xy 106.992205 26.090256) (xy 107.070226 25.901898) (xy 107.11 25.701939) (xy 107.11 25.498061)
+        (xy 107.07569 25.325572) (xy 107.425001 25.325572) (xy 107.598255 25.308508) (xy 107.764851 25.257972) (xy 107.918387 25.175905)
+        (xy 108.052962 25.065462) (xy 108.163405 24.930887) (xy 108.245472 24.777351) (xy 108.296008 24.610755) (xy 108.313072 24.437501)
+        (xy 108.313072 23.412499) (xy 108.296008 23.239245) (xy 108.245472 23.072649) (xy 108.163405 22.919113) (xy 108.052962 22.784538)
+        (xy 107.918387 22.674095) (xy 107.764851 22.592028) (xy 107.598255 22.541492) (xy 107.494767 22.531299) (xy 107.550482 22.525812)
+        (xy 107.67018 22.489502) (xy 107.780494 22.430537) (xy 107.877185 22.351185) (xy 107.956537 22.254494) (xy 108.015502 22.14418)
+        (xy 108.051812 22.024482) (xy 108.064072 21.9) (xy 108.061 21.42375) (xy 107.90225 21.265) (xy 107.172 21.265)
+        (xy 107.172 21.285) (xy 106.918 21.285) (xy 106.918 21.265) (xy 106.18775 21.265) (xy 106.029 21.42375)
+        (xy 106.025928 21.9) (xy 106.038188 22.024482) (xy 106.074498 22.14418) (xy 106.133463 22.254494) (xy 106.212815 22.351185)
+        (xy 106.309506 22.430537) (xy 106.41982 22.489502) (xy 106.534956 22.524428) (xy 105.360044 22.524428) (xy 105.47518 22.489502)
+        (xy 105.585494 22.430537) (xy 105.682185 22.351185) (xy 105.761537 22.254494) (xy 105.820502 22.14418) (xy 105.856812 22.024482)
+        (xy 105.869072 21.9) (xy 105.866 21.42375) (xy 105.70725 21.265) (xy 104.977 21.265) (xy 104.977 21.285)
+        (xy 104.723 21.285) (xy 104.723 21.265) (xy 104.703 21.265) (xy 104.703 21.011) (xy 104.723 21.011)
+        (xy 104.723 19.89975) (xy 104.977 19.89975) (xy 104.977 21.011) (xy 105.70725 21.011) (xy 105.866 20.85225)
+        (xy 105.869072 20.376) (xy 106.025928 20.376) (xy 106.029 20.85225) (xy 106.18775 21.011) (xy 106.918 21.011)
+        (xy 106.918 19.89975) (xy 107.172 19.89975) (xy 107.172 21.011) (xy 107.90225 21.011) (xy 108.061 20.85225)
+        (xy 108.064072 20.376) (xy 108.051812 20.251518) (xy 108.015502 20.13182) (xy 107.956537 20.021506) (xy 107.877185 19.924815)
+        (xy 107.780494 19.845463) (xy 107.67018 19.786498) (xy 107.550482 19.750188) (xy 107.426 19.737928) (xy 107.33075 19.741)
+        (xy 107.172 19.89975) (xy 106.918 19.89975) (xy 106.75925 19.741) (xy 106.664 19.737928) (xy 106.539518 19.750188)
+        (xy 106.41982 19.786498) (xy 106.309506 19.845463) (xy 106.212815 19.924815) (xy 106.133463 20.021506) (xy 106.074498 20.13182)
+        (xy 106.038188 20.251518) (xy 106.025928 20.376) (xy 105.869072 20.376) (xy 105.856812 20.251518) (xy 105.820502 20.13182)
+        (xy 105.761537 20.021506) (xy 105.682185 19.924815) (xy 105.585494 19.845463) (xy 105.47518 19.786498) (xy 105.355482 19.750188)
+        (xy 105.231 19.737928) (xy 105.13575 19.741) (xy 104.977 19.89975) (xy 104.723 19.89975) (xy 104.56425 19.741)
+        (xy 104.469 19.737928) (xy 104.344518 19.750188) (xy 104.26 19.775826) (xy 104.26 17.053711) (xy 104.303937 17.009774)
+        (xy 104.351557 16.938505) (xy 104.469 16.950072) (xy 104.56425 16.947) (xy 104.723 16.78825) (xy 104.723 15.677)
+        (xy 104.977 15.677) (xy 104.977 16.78825) (xy 105.13575 16.947) (xy 105.231 16.950072) (xy 105.355482 16.937812)
+        (xy 105.47518 16.901502) (xy 105.585494 16.842537) (xy 105.682185 16.763185) (xy 105.761537 16.666494) (xy 105.820502 16.55618)
+        (xy 105.856812 16.436482) (xy 105.869072 16.312) (xy 106.025928 16.312) (xy 106.038188 16.436482) (xy 106.074498 16.55618)
+        (xy 106.133463 16.666494) (xy 106.212815 16.763185) (xy 106.309506 16.842537) (xy 106.41982 16.901502) (xy 106.539518 16.937812)
+        (xy 106.664 16.950072) (xy 106.75925 16.947) (xy 106.918 16.78825) (xy 106.918 15.677) (xy 107.172 15.677)
+        (xy 107.172 16.78825) (xy 107.33075 16.947) (xy 107.426 16.950072) (xy 107.550482 16.937812) (xy 107.67018 16.901502)
+        (xy 107.780494 16.842537) (xy 107.877185 16.763185) (xy 107.956537 16.666494) (xy 108.015502 16.55618) (xy 108.051812 16.436482)
+        (xy 108.064072 16.312) (xy 108.061 15.83575) (xy 107.90225 15.677) (xy 107.172 15.677) (xy 106.918 15.677)
+        (xy 106.18775 15.677) (xy 106.029 15.83575) (xy 106.025928 16.312) (xy 105.869072 16.312) (xy 105.866 15.83575)
+        (xy 105.70725 15.677) (xy 104.977 15.677) (xy 104.723 15.677) (xy 104.703 15.677) (xy 104.703 15.423)
+        (xy 104.723 15.423) (xy 104.723 14.31175) (xy 104.977 14.31175) (xy 104.977 15.423) (xy 105.70725 15.423)
+        (xy 105.866 15.26425) (xy 105.869072 14.788) (xy 105.856812 14.663518) (xy 105.820502 14.54382) (xy 105.761537 14.433506)
+        (xy 105.682185 14.336815) (xy 105.585494 14.257463) (xy 105.47518 14.198498) (xy 105.355482 14.162188) (xy 105.231 14.149928)
+        (xy 105.13575 14.153) (xy 104.977 14.31175) (xy 104.723 14.31175) (xy 104.56425 14.153) (xy 104.469 14.149928)
+        (xy 104.344518 14.162188) (xy 104.22482 14.198498) (xy 104.114506 14.257463) (xy 104.017815 14.336815) (xy 103.938463 14.433506)
+        (xy 103.879498 14.54382) (xy 103.843188 14.663518) (xy 103.830928 14.788) (xy 103.834 15.26425) (xy 103.992748 15.422998)
+        (xy 103.966604 15.422998) (xy 103.801898 15.354774) (xy 103.601939 15.315) (xy 103.398061 15.315) (xy 103.198102 15.354774)
+        (xy 103.009744 15.432795) (xy 102.840226 15.546063) (xy 102.696063 15.690226) (xy 102.582795 15.859744) (xy 102.504774 16.048102)
+        (xy 102.475453 16.19551) (xy 102.313741 16.087458) (xy 102.11636 16.0057) (xy 102.059072 15.994305) (xy 102.059072 15.105695)
+        (xy 102.11636 15.0943) (xy 102.313741 15.012542) (xy 102.49138 14.893848) (xy 102.642448 14.74278) (xy 102.761142 14.565141)
+        (xy 102.8429 14.36776) (xy 102.88458 14.158222) (xy 102.88458 13.944578) (xy 102.8429 13.73504) (xy 102.761142 13.537659)
+        (xy 102.642448 13.36002) (xy 102.49138 13.208952) (xy 102.313741 13.090258) (xy 102.11636 13.0085) (xy 101.906822 12.96682)
+        (xy 101.693178 12.96682) (xy 101.48364 13.0085) (xy 101.286259 13.090258) (xy 101.10862 13.208952) (xy 100.957552 13.36002)
+        (xy 100.838858 13.537659) (xy 100.7571 13.73504) (xy 100.71542 13.944578) (xy 100.71542 14.149928) (xy 100.695 14.149928)
+        (xy 100.695 12.033992) (xy 100.723123 11.747171) (xy 100.796549 11.503974) (xy 100.915814 11.279669) (xy 101.076375 11.082801)
+        (xy 101.272117 10.920869) (xy 101.49558 10.800043) (xy 101.738264 10.72492) (xy 102.022929 10.695) (xy 109.966008 10.695)
+      )
+    )
+  )
+)
diff --git a/HARDWARE/lightsticks.kicad_pro b/HARDWARE/lightsticks.kicad_pro
new file mode 100644 (file)
index 0000000..69da72b
--- /dev/null
@@ -0,0 +1,591 @@
+{
+  "board": {
+    "3dviewports": [],
+    "design_settings": {
+      "defaults": {
+        "board_outline_line_width": 0.049999999999999996,
+        "copper_line_width": 0.19999999999999998,
+        "copper_text_italic": false,
+        "copper_text_size_h": 1.5,
+        "copper_text_size_v": 1.5,
+        "copper_text_thickness": 0.3,
+        "copper_text_upright": false,
+        "courtyard_line_width": 0.049999999999999996,
+        "dimension_precision": 4,
+        "dimension_units": 3,
+        "dimensions": {
+          "arrow_length": 1270000,
+          "extension_offset": 500000,
+          "keep_text_aligned": true,
+          "suppress_zeroes": false,
+          "text_position": 0,
+          "units_format": 1
+        },
+        "fab_line_width": 0.09999999999999999,
+        "fab_text_italic": false,
+        "fab_text_size_h": 1.0,
+        "fab_text_size_v": 1.0,
+        "fab_text_thickness": 0.15,
+        "fab_text_upright": false,
+        "other_line_width": 0.09999999999999999,
+        "other_text_italic": false,
+        "other_text_size_h": 1.0,
+        "other_text_size_v": 1.0,
+        "other_text_thickness": 0.15,
+        "other_text_upright": false,
+        "pads": {
+          "drill": 0.762,
+          "height": 1.524,
+          "width": 1.524
+        },
+        "silk_line_width": 0.12,
+        "silk_text_italic": false,
+        "silk_text_size_h": 1.0,
+        "silk_text_size_v": 1.0,
+        "silk_text_thickness": 0.15,
+        "silk_text_upright": false,
+        "zones": {
+          "min_clearance": 0.508
+        }
+      },
+      "diff_pair_dimensions": [],
+      "drc_exclusions": [],
+      "meta": {
+        "filename": "board_design_settings.json",
+        "version": 2
+      },
+      "rule_severities": {
+        "annular_width": "error",
+        "clearance": "error",
+        "connection_width": "warning",
+        "copper_edge_clearance": "error",
+        "copper_sliver": "warning",
+        "courtyards_overlap": "error",
+        "diff_pair_gap_out_of_range": "error",
+        "diff_pair_uncoupled_length_too_long": "error",
+        "drill_out_of_range": "error",
+        "duplicate_footprints": "warning",
+        "extra_footprint": "warning",
+        "footprint": "error",
+        "footprint_type_mismatch": "ignore",
+        "hole_clearance": "error",
+        "hole_near_hole": "error",
+        "invalid_outline": "error",
+        "isolated_copper": "warning",
+        "item_on_disabled_layer": "error",
+        "items_not_allowed": "error",
+        "length_out_of_range": "error",
+        "lib_footprint_issues": "warning",
+        "lib_footprint_mismatch": "warning",
+        "malformed_courtyard": "error",
+        "microvia_drill_out_of_range": "error",
+        "missing_courtyard": "ignore",
+        "missing_footprint": "warning",
+        "net_conflict": "warning",
+        "npth_inside_courtyard": "ignore",
+        "padstack": "warning",
+        "pth_inside_courtyard": "ignore",
+        "shorting_items": "error",
+        "silk_edge_clearance": "warning",
+        "silk_over_copper": "warning",
+        "silk_overlap": "warning",
+        "skew_out_of_range": "error",
+        "solder_mask_bridge": "error",
+        "starved_thermal": "error",
+        "text_height": "warning",
+        "text_thickness": "warning",
+        "through_hole_pad_without_hole": "error",
+        "too_many_vias": "error",
+        "track_dangling": "warning",
+        "track_width": "error",
+        "tracks_crossing": "error",
+        "unconnected_items": "error",
+        "unresolved_variable": "error",
+        "via_dangling": "warning",
+        "zones_intersect": "error"
+      },
+      "rule_severitieslegacy_courtyards_overlap": true,
+      "rule_severitieslegacy_no_courtyard_defined": false,
+      "rules": {
+        "max_error": 0.005,
+        "min_clearance": 0.0,
+        "min_connection": 0.0,
+        "min_copper_edge_clearance": 0.06,
+        "min_hole_clearance": 0.25,
+        "min_hole_to_hole": 0.25,
+        "min_microvia_diameter": 0.19999999999999998,
+        "min_microvia_drill": 0.09999999999999999,
+        "min_resolved_spokes": 2,
+        "min_silk_clearance": 0.0,
+        "min_text_height": 0.7999999999999999,
+        "min_text_thickness": 0.08,
+        "min_through_hole_diameter": 0.3,
+        "min_track_width": 0.19999999999999998,
+        "min_via_annular_width": 0.09999999999999999,
+        "min_via_diameter": 0.39999999999999997,
+        "solder_mask_to_copper_clearance": 0.0,
+        "use_height_for_length_calcs": true
+      },
+      "teardrop_options": [
+        {
+          "td_allow_use_two_tracks": true,
+          "td_curve_segcount": 5,
+          "td_on_pad_in_zone": false,
+          "td_onpadsmd": true,
+          "td_onroundshapesonly": false,
+          "td_ontrackend": false,
+          "td_onviapad": true
+        }
+      ],
+      "teardrop_parameters": [
+        {
+          "td_curve_segcount": 0,
+          "td_height_ratio": 1.0,
+          "td_length_ratio": 0.5,
+          "td_maxheight": 2.0,
+          "td_maxlen": 1.0,
+          "td_target_name": "td_round_shape",
+          "td_width_to_size_filter_ratio": 0.9
+        },
+        {
+          "td_curve_segcount": 0,
+          "td_height_ratio": 1.0,
+          "td_length_ratio": 0.5,
+          "td_maxheight": 2.0,
+          "td_maxlen": 1.0,
+          "td_target_name": "td_rect_shape",
+          "td_width_to_size_filter_ratio": 0.9
+        },
+        {
+          "td_curve_segcount": 0,
+          "td_height_ratio": 1.0,
+          "td_length_ratio": 0.5,
+          "td_maxheight": 2.0,
+          "td_maxlen": 1.0,
+          "td_target_name": "td_track_end",
+          "td_width_to_size_filter_ratio": 0.9
+        }
+      ],
+      "track_widths": [],
+      "via_dimensions": [],
+      "zones_allow_external_fillets": false
+    },
+    "layer_presets": [],
+    "viewports": []
+  },
+  "boards": [],
+  "cvpcb": {
+    "equivalence_files": []
+  },
+  "erc": {
+    "erc_exclusions": [],
+    "meta": {
+      "version": 0
+    },
+    "pin_map": [
+      [
+        0,
+        0,
+        0,
+        0,
+        0,
+        0,
+        1,
+        0,
+        0,
+        0,
+        0,
+        2
+      ],
+      [
+        0,
+        2,
+        0,
+        1,
+        0,
+        0,
+        1,
+        0,
+        2,
+        2,
+        2,
+        2
+      ],
+      [
+        0,
+        0,
+        0,
+        0,
+        0,
+        0,
+        1,
+        0,
+        1,
+        0,
+        1,
+        2
+      ],
+      [
+        0,
+        1,
+        0,
+        0,
+        0,
+        0,
+        1,
+        1,
+        2,
+        1,
+        1,
+        2
+      ],
+      [
+        0,
+        0,
+        0,
+        0,
+        0,
+        0,
+        1,
+        0,
+        0,
+        0,
+        0,
+        2
+      ],
+      [
+        0,
+        0,
+        0,
+        0,
+        0,
+        0,
+        0,
+        0,
+        0,
+        0,
+        0,
+        2
+      ],
+      [
+        1,
+        1,
+        1,
+        1,
+        1,
+        0,
+        1,
+        1,
+        1,
+        1,
+        1,
+        2
+      ],
+      [
+        0,
+        0,
+        0,
+        1,
+        0,
+        0,
+        1,
+        0,
+        0,
+        0,
+        0,
+        2
+      ],
+      [
+        0,
+        2,
+        1,
+        2,
+        0,
+        0,
+        1,
+        0,
+        2,
+        2,
+        2,
+        2
+      ],
+      [
+        0,
+        2,
+        0,
+        1,
+        0,
+        0,
+        1,
+        0,
+        2,
+        0,
+        0,
+        2
+      ],
+      [
+        0,
+        2,
+        1,
+        1,
+        0,
+        0,
+        1,
+        0,
+        2,
+        0,
+        0,
+        2
+      ],
+      [
+        2,
+        2,
+        2,
+        2,
+        2,
+        2,
+        2,
+        2,
+        2,
+        2,
+        2,
+        2
+      ]
+    ],
+    "rule_severities": {
+      "bus_definition_conflict": "error",
+      "bus_entry_needed": "error",
+      "bus_to_bus_conflict": "error",
+      "bus_to_net_conflict": "error",
+      "conflicting_netclasses": "error",
+      "different_unit_footprint": "error",
+      "different_unit_net": "error",
+      "duplicate_reference": "error",
+      "duplicate_sheet_names": "error",
+      "endpoint_off_grid": "warning",
+      "extra_units": "error",
+      "global_label_dangling": "warning",
+      "hier_label_mismatch": "error",
+      "label_dangling": "error",
+      "lib_symbol_issues": "warning",
+      "missing_bidi_pin": "warning",
+      "missing_input_pin": "warning",
+      "missing_power_pin": "error",
+      "missing_unit": "warning",
+      "multiple_net_names": "warning",
+      "net_not_bus_member": "warning",
+      "no_connect_connected": "warning",
+      "no_connect_dangling": "warning",
+      "pin_not_connected": "error",
+      "pin_not_driven": "error",
+      "pin_to_pin": "warning",
+      "power_pin_not_driven": "error",
+      "similar_labels": "warning",
+      "simulation_model_issue": "ignore",
+      "unannotated": "error",
+      "unit_value_mismatch": "error",
+      "unresolved_variable": "error",
+      "wire_dangling": "error"
+    }
+  },
+  "libraries": {
+    "pinned_footprint_libs": [],
+    "pinned_symbol_libs": []
+  },
+  "meta": {
+    "filename": "lightsticks.kicad_pro",
+    "version": 1
+  },
+  "net_settings": {
+    "classes": [
+      {
+        "bus_width": 12,
+        "clearance": 0.2,
+        "diff_pair_gap": 0.25,
+        "diff_pair_via_gap": 0.25,
+        "diff_pair_width": 0.2,
+        "line_style": 0,
+        "microvia_diameter": 0.3,
+        "microvia_drill": 0.1,
+        "name": "Default",
+        "pcb_color": "rgba(0, 0, 0, 0.000)",
+        "schematic_color": "rgba(0, 0, 0, 0.000)",
+        "track_width": 0.25,
+        "via_diameter": 0.8,
+        "via_drill": 0.4,
+        "wire_width": 6
+      }
+    ],
+    "meta": {
+      "version": 3
+    },
+    "net_colors": null,
+    "netclass_assignments": null,
+    "netclass_patterns": [
+      {
+        "netclass": "Default",
+        "pattern": "+3V3"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "/Drain"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "/Gate"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "/VCC"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "GND"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(BZ1-Pad1)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(C1-Pad1)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(C4-Pad1)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(D1-Pad1)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(D1-Pad2)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(D10-Pad2)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(D13-Pad1)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(D13-Pad2)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(D2-Pad2)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(J1-Pad2)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(J1-Pad3)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(J2-Pad1)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(J2-Pad10)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(J2-Pad2)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(J2-Pad3)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(J2-Pad4)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(J2-Pad7)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(J2-Pad8)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(J2-Pad9)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(JP1-Pad2)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(R10-Pad1)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(R6-Pad1)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(R7-Pad2)"
+      },
+      {
+        "netclass": "Default",
+        "pattern": "Net-(S1-Pad2)"
+      }
+    ]
+  },
+  "pcbnew": {
+    "last_paths": {
+      "gencad": "",
+      "idf": "",
+      "netlist": "lightsticks.net",
+      "specctra_dsn": "",
+      "step": "",
+      "vrml": ""
+    },
+    "page_layout_descr_file": ""
+  },
+  "schematic": {
+    "annotate_start_num": 0,
+    "drawing": {
+      "dashed_lines_dash_length_ratio": 12.0,
+      "dashed_lines_gap_length_ratio": 3.0,
+      "default_line_thickness": 6.0,
+      "default_text_size": 50.0,
+      "field_names": [],
+      "intersheets_ref_own_page": false,
+      "intersheets_ref_prefix": "",
+      "intersheets_ref_short": false,
+      "intersheets_ref_show": false,
+      "intersheets_ref_suffix": "",
+      "junction_size_choice": 3,
+      "label_size_ratio": 0.25,
+      "pin_symbol_size": 0.0,
+      "text_offset_ratio": 0.08
+    },
+    "legacy_lib_dir": "",
+    "legacy_lib_list": [],
+    "meta": {
+      "version": 1
+    },
+    "net_format_name": "Pcbnew",
+    "page_layout_descr_file": "",
+    "plot_directory": "",
+    "spice_adjust_passive_values": false,
+    "spice_current_sheet_as_root": false,
+    "spice_external_command": "spice \"%I\"",
+    "spice_model_current_sheet_as_root": true,
+    "spice_save_all_currents": false,
+    "spice_save_all_voltages": false,
+    "subpart_first_id": 65,
+    "subpart_id_separator": 0
+  },
+  "sheets": [],
+  "text_variables": {}
+}
diff --git a/HARDWARE/lightsticks.net b/HARDWARE/lightsticks.net
new file mode 100644 (file)
index 0000000..4c4d346
--- /dev/null
@@ -0,0 +1,819 @@
+(export (version D)
+  (design
+    (source "/home/dmitry/Projects/COMMERCIAL CLIENTS/dailybeer.eu/LIGHTSTICKS/lightsticks/lightsticks.sch")
+    (date "Sat 16 Nov 2019 09:41:05 AM CET")
+    (tool "Eeschema 5.1.4-e60b266~84~ubuntu18.04.1")
+    (sheet (number 1) (name /) (tstamps /)
+      (title_block
+        (title)
+        (company)
+        (rev)
+        (date)
+        (source lightsticks.sch)
+        (comment (number 1) (value ""))
+        (comment (number 2) (value ""))
+        (comment (number 3) (value ""))
+        (comment (number 4) (value "")))))
+  (components
+    (comp (ref D4)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBA50D))
+    (comp (ref D5)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBA842))
+    (comp (ref D6)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBAA77))
+    (comp (ref D7)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBAD6A))
+    (comp (ref D8)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBB05D))
+    (comp (ref D9)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBB3AD))
+    (comp (ref D10)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBB570))
+    (comp (ref D11)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBE1B7))
+    (comp (ref R12)
+      (value 1R)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC54CBB))
+    (comp (ref R9)
+      (value 220R)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC8FBDE))
+    (comp (ref R11)
+      (value 10K)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC9745B))
+    (comp (ref U2)
+      (value MIC5205-3.3YM5)
+      (footprint Package_TO_SOT_SMD:SOT-23-5)
+      (datasheet http://ww1.microchip.com/downloads/en/DeviceDoc/20005785A.pdf)
+      (libsource (lib Regulator_Linear) (part MIC5205-3.3YM5) (description "150mA low dropout linear regulator, fixed 3.3V output, SOT-23-5"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC01F70))
+    (comp (ref C5)
+      (value >2.2UF)
+      (footprint Capacitors_SMD:C_0805)
+      (libsource (lib SparkFun-Capacitors) (part 2.2UF-0805-25V-_+80_-20%_) (description "2.2uF ceramic capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field."))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DD31F10))
+    (comp (ref R4)
+      (value 470)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DE819BA))
+    (comp (ref R6)
+      (value "5K (200mA)")
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DE395AF))
+    (comp (ref D1)
+      (value LED)
+      (footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DDB0404))
+    (comp (ref LiPo1)
+      (value Battery_Cell)
+      (footprint Shalnoff:CONTACT_2_10mm)
+      (datasheet ~)
+      (libsource (lib Device) (part Battery_Cell) (description "Single-cell battery"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DCEE429))
+    (comp (ref R8)
+      (value RESISTOR0805)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC67D82))
+    (comp (ref S3)
+      (value MOMENTARY-SWITCH-SPST-2-SMD-5.2MM)
+      (footprint Switches:TACTILE_SWITCH_SMD_5.2MM)
+      (fields
+        (field (name Field4) SWCH-08247))
+      (libsource (lib SparkFun-Switches) (part MOMENTARY-SWITCH-SPST-2-SMD-5.2MM) (description "Momentary Switch (Pushbutton) - SPST - Two Circuits Normally-open (NO) SPST momentary switches (buttons, pushbuttons). Schematic symbol includes two switch circuits. <h4>Variants</h4><ul><li><b>SMD-4.6MMX2.8MM</b> -  4.60mm x 2.80mm Tactile Momentary Button Switch  - Used on <a href=\"https://www.sparkfun.com/products/13664\">SparkFun SAMD21 Mini Breakout</a></li><li><b>SMD-5.2MM</b> - <a href=\"https://www.sparkfun.com/products/8720\">Mini Pushbutton Switch - SMD</a> - Used on <a href=\"https://www.sparkfun.com/products/11114\">Arduino Pro Mini</a></li></ul>"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC11587))
+    (comp (ref S2)
+      (value MOMENTARY-SWITCH-SPST-2-SMD-5.2MM)
+      (footprint Switches:TACTILE_SWITCH_SMD_5.2MM)
+      (fields
+        (field (name Field4) SWCH-08247))
+      (libsource (lib SparkFun-Switches) (part MOMENTARY-SWITCH-SPST-2-SMD-5.2MM) (description "Momentary Switch (Pushbutton) - SPST - Two Circuits Normally-open (NO) SPST momentary switches (buttons, pushbuttons). Schematic symbol includes two switch circuits. <h4>Variants</h4><ul><li><b>SMD-4.6MMX2.8MM</b> -  4.60mm x 2.80mm Tactile Momentary Button Switch  - Used on <a href=\"https://www.sparkfun.com/products/13664\">SparkFun SAMD21 Mini Breakout</a></li><li><b>SMD-5.2MM</b> - <a href=\"https://www.sparkfun.com/products/8720\">Mini Pushbutton Switch - SMD</a> - Used on <a href=\"https://www.sparkfun.com/products/11114\">Arduino Pro Mini</a></li></ul>"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC102D0))
+    (comp (ref U1)
+      (value MCP73831)
+      (footprint Silicon-Standard:SOT23-5)
+      (fields
+        (field (name Field4) IC-09995))
+      (libsource (lib SparkFun-IC-Power) (part MCP73831) (description "MCP73831T Li-Ion, Li-Pol Controller Miniature single cell, fully integrated Li-Ion, Li-polymer charge management controller<li><a href= http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf >Datasheet</a></li> <b>SparkFun Products:</b><ul><li><a href= https://www.sparkfun.com/products/13907 >SparkFun ESP32 Thing</a></li><li><a href= https://www.sparkfun.com/products/14001 >SparkFun 9DoF Razor IMU M0</a></li></ul>"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC01989))
+    (comp (ref S1)
+      (value SWITCH-SPDT-PTH-11.6X4.0MM)
+      (footprint Switches:SWITCH_SPST_SMD_A)
+      (fields
+        (field (name Field4) SWCH-08261))
+      (libsource (lib SparkFun-Switches) (part SWITCH-SPDT-PTH-11.6X4.0MM) (description "Single Pole, Double Throw (SPDT) Switch Single-pole, double-throw (SPDT) switch. <h4>Variant Overview</h4><h5>SMD-AYZ0202</h5><ul><li><a href=\"https://www.sparkfun.com/products/597\">Surface Mount DPDT Switch</a> (COM-00597)</li><li>Used on e.g. <a href=\"https://www.sparkfun.com/products/12049\">LilyPad Arduino USB - ATmega32U4 Board</a></ul><h5>PTH-11.6X4.0MM</h5><ul><li><a href=\"https://www.sparkfun.com/products/102\">SPDT Mini Power Switch</a> (COM-00102)</li><li>Used on e.g. <a href=\"https://www.sparkfun.com/products/10547\">SparkFun Simon Says - Through-Hole Soldering Kit</a> (KIT-10547)</li></ul><h5>PTH-11.6X4.0MM-KIT</h5><ul><li>KIT version of SPDT Mini Power Switch - Simplifies soldering by removing tStop of switch pins - only one side can be soldered.</li></ul><h5>PTH-11.6X4.0MM-LOCK</h5><ul><li>LOCK version of SPDT Mini Power Switch - Offset pins hold switch in place for easier soldering.</li></ul><h5>SMD-RIGHT-ANGLE</h5><ul><li><a href=\"https://www.sparkfun.com/products/10860\">Surface Mount Right Angle Switch</a> (COM-10860)</li><li>Used on e.g. <a href=\"https://www.sparkfun.com/products/13231\">SparkFun ESP8266 Thing</a></li></ul>"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DFADD4B))
+    (comp (ref R5)
+      (value 470)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DFD1897))
+    (comp (ref D2)
+      (value LED)
+      (footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DFD1F99))
+    (comp (ref U3)
+      (value ATTINY85-20SU)
+      (footprint digikey-footprints:SOIC-8_W5.3mm)
+      (datasheet http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894)
+      (fields
+        (field (name Category) "Integrated Circuits (ICs)")
+        (field (name DK_Datasheet_Link) http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894)
+        (field (name DK_Detail_Page) /product-detail/en/microchip-technology/ATTINY85-20SU/ATTINY85-20SU-ND/735470)
+        (field (name Description) "IC MCU 8BIT 8KB FLASH 8SOIC")
+        (field (name Digi-Key_PN) ATTINY85-20SU-ND)
+        (field (name Family) "Embedded - Microcontrollers")
+        (field (name MPN) ATTINY85-20SU)
+        (field (name Manufacturer) "Microchip Technology")
+        (field (name Status) Active))
+      (libsource (lib dk_Embedded-Microcontrollers) (part ATTINY85-20SU) (description "IC MCU 8BIT 8KB FLASH 8SOIC"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DFE55A4))
+    (comp (ref D3)
+      (value LED)
+      (footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5E0121D1))
+    (comp (ref C3)
+      (value 4.7uF)
+      (footprint Capacitors_SMD:C_0805)
+      (libsource (lib SparkFun-Capacitors) (part 2.2UF-0805-25V-_+80_-20%_) (description "2.2uF ceramic capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field."))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5E19AB03))
+    (comp (ref J2)
+      (value CONN_05X2NO_SILK)
+      (footprint Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD)
+      (fields
+        (field (name Field4) XXX-00000))
+      (libsource (lib SparkFun-Connectors) (part CONN_05X2NO_SILK) (description "Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections  For AVR SPI programming port, see special device with nice symbol: \"AVR_SPI_PROG_5x2.dev\"  <b>You can populate with any combo of single row headers, but if you'd like an exact match, check these:</b><ul><li><a href=\"https://www.sparkfun.com/products/778\"> 2x5 AVR ICSP Male Header</a> (PRT-00778)</li><li><a href=\"https://www.sparkfun.com/products/8506\"> 2x5 Pin Shrouded Header</a> (PRT-08506)</li></ul> <b>On any of the 0.1 inch spaced packages, you can populate with these:</b><ul><li><a href=\"https://www.sparkfun.com/products/116\"> Break Away Headers - Straight</a> (PRT-00116)</li><li><a href=\"https://www.sparkfun.com/products/553\"> Break Away Male Headers - Right Angle</a> (PRT-00553)</li><li><a href=\"https://www.sparkfun.com/products/115\"> Female Headers</a> (PRT-00115)</li><li><a href=\"https://www.sparkfun.com/products/117\"> Break Away Headers - Machine Pin</a> (PRT-00117)</li><li><a href=\"https://www.sparkfun.com/products/743\"> Break Away Female Headers - Swiss Machine Pin</a> (PRT-00743)</li></ul> <b>Special note: the shrouded connector mates well with our 5x2 ribbon cables:</b><ul><li><a href=\"https://www.sparkfun.com/products/8535\"> 2x5 Pin IDC Ribbon Cable</a> (PRT-08535)</li></ul>"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5E21FA62))
+    (comp (ref Q1)
+      (value 2N7002)
+      (footprint digikey-footprints:SOT-23-3)
+      (datasheet https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF)
+      (fields
+        (field (name Category) "Discrete Semiconductor Products")
+        (field (name DK_Datasheet_Link) https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF)
+        (field (name DK_Detail_Page) /product-detail/en/on-semiconductor/2N7002/2N7002NCT-ND/244664)
+        (field (name Description) "MOSFET N-CH 60V 115MA SOT-23")
+        (field (name Digi-Key_PN) 2N7002NCT-ND)
+        (field (name Family) "Transistors - FETs, MOSFETs - Single")
+        (field (name MPN) 2N7002)
+        (field (name Manufacturer) "ON Semiconductor")
+        (field (name Status) Active))
+      (libsource (lib dk_Transistors-FETs-MOSFETs-Single) (part 2N7002) (description "MOSFET N-CH 60V 115MA SOT-23"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5E33C7DE))
+    (comp (ref BZ1)
+      (value PS1240P02BT)
+      (footprint Capacitor_SMD:C_1812_4532Metric)
+      (datasheet https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf)
+      (fields
+        (field (name Category) "Audio Products")
+        (field (name DK_Datasheet_Link) https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf)
+        (field (name DK_Detail_Page) /product-detail/en/tdk-corporation/PS1240P02BT/445-2525-1-ND/935930)
+        (field (name Description) "AUDIO PIEZO TRANSDUCER 30V TH")
+        (field (name Digi-Key_PN) 445-2525-1-ND)
+        (field (name Family) "Alarms, Buzzers, and Sirens")
+        (field (name MPN) PS1240P02BT)
+        (field (name Manufacturer) "TDK Corporation")
+        (field (name Status) Active))
+      (libsource (lib dk_Alarms-Buzzers-and-Sirens) (part PS1240P02BT) (description "AUDIO PIEZO TRANSDUCER 30V TH"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5E3EE254))
+    (comp (ref R10)
+      (value 10K)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5E410B16))
+    (comp (ref J1)
+      (value USB_A_SMT_MALE_PCB)
+      (footprint Shalnoff:USB_A_SMT_MALE_PCB)
+      (fields
+        (field (name Field4) CONN-11499))
+      (libsource (lib Shalnoff) (part USB_A_SMT_MALE_PCB) (description "USB-A Connector Male and female variants, as well as PTH and SMT variants SparkFun Products:<ul><li><a href= https://www.sparkfun.com/products/11697 >SparkFun XBee Explorer Dongle</a> PTH Male</li><li><a href= https://www.sparkfun.com/products/12924 >SparkFun MicroView-USB Programmer</a> SMT Male</li><li><a href= https://www.sparkfun.com/products/12700 >SparkFun USB Type A Female Breakout</a> SMT Female</li></ul>"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBC8501))
+    (comp (ref R3)
+      (value 68)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC811B8))
+    (comp (ref R2)
+      (value "2K2 (1K5)")
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DCC28CC))
+    (comp (ref C4)
+      (value [470pF])
+      (footprint Capacitors_SMD:C_0805)
+      (libsource (lib SparkFun-Capacitors) (part 2.2UF-0805-25V-_+80_-20%_) (description "2.2uF ceramic capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field."))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DE5BCDF))
+    (comp (ref C2)
+      (value 4.7uF)
+      (footprint Capacitors_SMD:C_0805)
+      (libsource (lib SparkFun-Capacitors) (part 2.2UF-0805-25V-_+80_-20%_) (description "2.2uF ceramic capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field."))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DEE36ED))
+    (comp (ref R1)
+      (value 68)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC80BBF))
+    (comp (ref R7)
+      (value RESISTOR0805)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC63B88))
+    (comp (ref C1)
+      (value 10uF)
+      (footprint Capacitor_Tantalum_SMD:CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder)
+      (libsource (lib Shalnoff) (part 10UF-POLAR-0603-6.3V-20%_TANT_) (description "10.0uF polarized capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field."))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DCC90B4))
+    (comp (ref D12)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DE5D3FE))
+    (comp (ref JP1)
+      (value SolderJumper_2_Bridged)
+      (footprint Shalnoff:SOLDER-JUMPER_1-WAY-CLOSED)
+      (datasheet ~)
+      (libsource (lib Jumper) (part SolderJumper_2_Bridged) (description "Solder Jumper, 2-pole, closed/bridged"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DF65FF2))
+    (comp (ref D13)
+      (value LED)
+      (footprint LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DFB9F90))
+    (comp (ref Q2)
+      (value MOSFET-NCH-AO3404A)
+      (footprint Silicon-Standard:SOT23-3)
+      (fields
+        (field (name Field4) TRANS-12988))
+      (libsource (lib SparkFun-DiscreteSemi) (part MOSFET-NCH-AO3404A) (description "N-channel MOSFETs Voltage controlled devices that allow control of high current outputs. <b>SparkFun Products:</b><ul><li><a href= https://www.sparkfun.com/products/13261 >SparkFun OpenScale</a></li><li><a href= https://www.sparkfun.com/products/12651 >SparkFun Digital Sandbox</a></li><li><a href= https://www.sparkfun.com/products/10182 >SparkFun Monster Moto Shield</a></li><li><a href= https://www.sparkfun.com/products/11214 >SparkFun MOSFET Power Controller</a></li></ul>"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DD0A422)))
+  (libparts
+    (libpart (lib Device) (part Battery_Cell)
+      (description "Single-cell battery")
+      (docs ~)
+      (fields
+        (field (name Reference) BT)
+        (field (name Value) Battery_Cell))
+      (pins
+        (pin (num 1) (name +) (type passive))
+        (pin (num 2) (name -) (type passive))))
+    (libpart (lib Device) (part LED)
+      (description "Light emitting diode")
+      (docs ~)
+      (footprints
+        (fp LED*)
+        (fp LED_SMD:*)
+        (fp LED_THT:*))
+      (fields
+        (field (name Reference) D)
+        (field (name Value) LED))
+      (pins
+        (pin (num 1) (name K) (type passive))
+        (pin (num 2) (name A) (type passive))))
+    (libpart (lib Jumper) (part SolderJumper_2_Bridged)
+      (description "Solder Jumper, 2-pole, closed/bridged")
+      (docs ~)
+      (footprints
+        (fp SolderJumper*Bridged*))
+      (fields
+        (field (name Reference) JP)
+        (field (name Value) SolderJumper_2_Bridged))
+      (pins
+        (pin (num 1) (name A) (type passive))
+        (pin (num 2) (name B) (type passive))))
+    (libpart (lib Regulator_Linear) (part AP131-15)
+      (aliases
+        (alias AP131-18)
+        (alias AP131-20)
+        (alias AP131-25)
+        (alias AP131-28)
+        (alias AP131-29)
+        (alias AP131-30)
+        (alias AP131-33)
+        (alias AP131-35)
+        (alias MIC5205-2.5YM5)
+        (alias MIC5205-2.7YM5)
+        (alias MIC5205-2.8YM5)
+        (alias MIC5205-2.85YM5)
+        (alias MIC5205-2.9YM5)
+        (alias MIC5205-3.0YM5)
+        (alias MIC5205-3.1YM5)
+        (alias MIC5205-3.2YM5)
+        (alias MIC5205-3.3YM5)
+        (alias MIC5205-3.6YM5)
+        (alias MIC5205-3.8YM5)
+        (alias MIC5205-4.0YM5)
+        (alias MIC5205-5.0YM5)
+        (alias MIC5219-2.5YM5)
+        (alias MIC5219-2.6YM5)
+        (alias MIC5219-2.7YM5)
+        (alias MIC5219-2.8YM5)
+        (alias MIC5219-2.85YM5)
+        (alias MIC5219-2.9YM5)
+        (alias MIC5219-3.0YM5)
+        (alias MIC5219-3.1YM5)
+        (alias MIC5219-3.3YM5)
+        (alias MIC5219-3.6YM5)
+        (alias MIC5219-5.0YM5)
+        (alias SPX3819M5-L-1-2)
+        (alias SPX3819M5-L-1-5)
+        (alias SPX3819M5-L-1-8)
+        (alias SPX3819M5-L-2-5)
+        (alias SPX3819M5-L-3-0)
+        (alias SPX3819M5-L-3-3)
+        (alias SPX3819M5-L-5-0))
+      (description "300mA low dropout linear regulator, shutdown pin, 1.5V fixed positive output, SOT-23-5 package")
+      (docs http://www.diodes.com/_files/datasheets/AP131.pdf)
+      (footprints
+        (fp SOT?23*))
+      (fields
+        (field (name Reference) U)
+        (field (name Value) AP131-15)
+        (field (name Footprint) Package_TO_SOT_SMD:SOT-23-5))
+      (pins
+        (pin (num 1) (name IN) (type power_in))
+        (pin (num 2) (name GND) (type power_in))
+        (pin (num 3) (name EN) (type input))
+        (pin (num 4) (name BP) (type input))
+        (pin (num 5) (name OUT) (type power_out))))
+    (libpart (lib Shalnoff) (part 10UF-POLAR-0603-6.3V-20%_TANT_)
+      (description "10.0uF polarized capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field.")
+      (footprints
+        (fp *0603-POLAR*)
+        (fp *EIA3216*))
+      (fields
+        (field (name Reference) C)
+        (field (name Value) 10UF-POLAR-0603-6.3V-20%_TANT_)
+        (field (name Footprint) 0603-POLAR))
+      (pins
+        (pin (num 1) (name +) (type passive))
+        (pin (num 2) (name -) (type passive))))
+    (libpart (lib Shalnoff) (part USB_A_SMT_MALE_PCB)
+      (description "USB-A Connector Male and female variants, as well as PTH and SMT variants SparkFun Products:<ul><li><a href= https://www.sparkfun.com/products/11697 >SparkFun XBee Explorer Dongle</a> PTH Male</li><li><a href= https://www.sparkfun.com/products/12924 >SparkFun MicroView-USB Programmer</a> SMT Male</li><li><a href= https://www.sparkfun.com/products/12700 >SparkFun USB Type A Female Breakout</a> SMT Female</li></ul>")
+      (footprints
+        (fp *USB-A-SMT-MALE*))
+      (fields
+        (field (name Reference) J)
+        (field (name Value) USB_A_SMT_MALE_PCB)
+        (field (name Footprint) USB-A-SMT-MALE)
+        (field (name Field4) CONN-11499))
+      (pins
+        (pin (num 1) (name VBUS) (type power_in))
+        (pin (num 2) (name D-) (type BiDi))
+        (pin (num 3) (name D+) (type BiDi))
+        (pin (num 4) (name GND) (type power_in))))
+    (libpart (lib SparkFun-Capacitors) (part 2.2UF-0805-25V-_+80_-20%_)
+      (description "2.2uF ceramic capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field.")
+      (footprints
+        (fp *0805*))
+      (fields
+        (field (name Reference) C)
+        (field (name Value) 2.2UF-0805-25V-_+80_-20%_)
+        (field (name Footprint) 0805))
+      (pins
+        (pin (num 1) (name 1) (type passive))
+        (pin (num 2) (name 2) (type passive))))
+    (libpart (lib SparkFun-Connectors) (part CONN_05X2NO_SILK)
+      (description "Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections  For AVR SPI programming port, see special device with nice symbol: \"AVR_SPI_PROG_5x2.dev\"  <b>You can populate with any combo of single row headers, but if you'd like an exact match, check these:</b><ul><li><a href=\"https://www.sparkfun.com/products/778\"> 2x5 AVR ICSP Male Header</a> (PRT-00778)</li><li><a href=\"https://www.sparkfun.com/products/8506\"> 2x5 Pin Shrouded Header</a> (PRT-08506)</li></ul> <b>On any of the 0.1 inch spaced packages, you can populate with these:</b><ul><li><a href=\"https://www.sparkfun.com/products/116\"> Break Away Headers - Straight</a> (PRT-00116)</li><li><a href=\"https://www.sparkfun.com/products/553\"> Break Away Male Headers - Right Angle</a> (PRT-00553)</li><li><a href=\"https://www.sparkfun.com/products/115\"> Female Headers</a> (PRT-00115)</li><li><a href=\"https://www.sparkfun.com/products/117\"> Break Away Headers - Machine Pin</a> (PRT-00117)</li><li><a href=\"https://www.sparkfun.com/products/743\"> Break Away Female Headers - Swiss Machine Pin</a> (PRT-00743)</li></ul> <b>Special note: the shrouded connector mates well with our 5x2 ribbon cables:</b><ul><li><a href=\"https://www.sparkfun.com/products/8535\"> 2x5 Pin IDC Ribbon Cable</a> (PRT-08535)</li></ul>")
+      (footprints
+        (fp *2X5_NOSILK*))
+      (fields
+        (field (name Reference) J)
+        (field (name Value) CONN_05X2NO_SILK)
+        (field (name Footprint) 2X5_NOSILK)
+        (field (name Field4) XXX-00000))
+      (pins
+        (pin (num 1) (name 1) (type passive))
+        (pin (num 2) (name 2) (type passive))
+        (pin (num 3) (name 3) (type passive))
+        (pin (num 4) (name 4) (type passive))
+        (pin (num 5) (name 5) (type passive))
+        (pin (num 6) (name 6) (type passive))
+        (pin (num 7) (name 7) (type passive))
+        (pin (num 8) (name 8) (type passive))
+        (pin (num 9) (name 9) (type passive))
+        (pin (num 10) (name 10) (type passive))))
+    (libpart (lib SparkFun-DiscreteSemi) (part MOSFET-NCH-AO3404A)
+      (description "N-channel MOSFETs Voltage controlled devices that allow control of high current outputs. <b>SparkFun Products:</b><ul><li><a href= https://www.sparkfun.com/products/13261 >SparkFun OpenScale</a></li><li><a href= https://www.sparkfun.com/products/12651 >SparkFun Digital Sandbox</a></li><li><a href= https://www.sparkfun.com/products/10182 >SparkFun Monster Moto Shield</a></li><li><a href= https://www.sparkfun.com/products/11214 >SparkFun MOSFET Power Controller</a></li></ul>")
+      (footprints
+        (fp *SOT23-3*)
+        (fp *SOT23-3*))
+      (fields
+        (field (name Reference) Q)
+        (field (name Value) MOSFET-NCH-AO3404A)
+        (field (name Footprint) SOT23-3)
+        (field (name Field4) TRANS-12988))
+      (pins
+        (pin (num 1) (name G) (type BiDi))
+        (pin (num 2) (name S) (type BiDi))
+        (pin (num 3) (name D) (type BiDi))))
+    (libpart (lib SparkFun-IC-Power) (part MCP73831)
+      (description "MCP73831T Li-Ion, Li-Pol Controller Miniature single cell, fully integrated Li-Ion, Li-polymer charge management controller<li><a href= http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf >Datasheet</a></li> <b>SparkFun Products:</b><ul><li><a href= https://www.sparkfun.com/products/13907 >SparkFun ESP32 Thing</a></li><li><a href= https://www.sparkfun.com/products/14001 >SparkFun 9DoF Razor IMU M0</a></li></ul>")
+      (footprints
+        (fp *SOT23-5*))
+      (fields
+        (field (name Reference) U)
+        (field (name Value) MCP73831)
+        (field (name Footprint) SOT23-5)
+        (field (name Field4) IC-09995))
+      (pins
+        (pin (num 1) (name STAT) (type output))
+        (pin (num 2) (name VSS) (type power_in))
+        (pin (num 3) (name VBAT) (type power_in))
+        (pin (num 4) (name VIN) (type power_in))
+        (pin (num 5) (name PROG) (type input))))
+    (libpart (lib SparkFun-Resistors) (part RESISTOR0805)
+      (description "Generic Resistor Package")
+      (footprints
+        (fp *0805*))
+      (fields
+        (field (name Reference) R)
+        (field (name Value) RESISTOR0805)
+        (field (name Footprint) 0805)
+        (field (name Field4) " "))
+      (pins
+        (pin (num 1) (name 1) (type passive))
+        (pin (num 2) (name 2) (type passive))))
+    (libpart (lib SparkFun-Switches) (part MOMENTARY-SWITCH-SPST-2-SMD-5.2MM)
+      (description "Momentary Switch (Pushbutton) - SPST - Two Circuits Normally-open (NO) SPST momentary switches (buttons, pushbuttons). Schematic symbol includes two switch circuits. <h4>Variants</h4><ul><li><b>SMD-4.6MMX2.8MM</b> -  4.60mm x 2.80mm Tactile Momentary Button Switch  - Used on <a href=\"https://www.sparkfun.com/products/13664\">SparkFun SAMD21 Mini Breakout</a></li><li><b>SMD-5.2MM</b> - <a href=\"https://www.sparkfun.com/products/8720\">Mini Pushbutton Switch - SMD</a> - Used on <a href=\"https://www.sparkfun.com/products/11114\">Arduino Pro Mini</a></li></ul>")
+      (footprints
+        (fp *TACTILE_SWITCH_SMD_5.2MM*))
+      (fields
+        (field (name Reference) S)
+        (field (name Value) MOMENTARY-SWITCH-SPST-2-SMD-5.2MM)
+        (field (name Footprint) TACTILE_SWITCH_SMD_5.2MM)
+        (field (name Field4) SWCH-08247))
+      (pins
+        (pin (num 1) (name 1) (type passive))
+        (pin (num 2) (name 2) (type passive))
+        (pin (num 3) (name 3) (type passive))
+        (pin (num 4) (name 4) (type passive))))
+    (libpart (lib SparkFun-Switches) (part SWITCH-SPDT-PTH-11.6X4.0MM)
+      (description "Single Pole, Double Throw (SPDT) Switch Single-pole, double-throw (SPDT) switch. <h4>Variant Overview</h4><h5>SMD-AYZ0202</h5><ul><li><a href=\"https://www.sparkfun.com/products/597\">Surface Mount DPDT Switch</a> (COM-00597)</li><li>Used on e.g. <a href=\"https://www.sparkfun.com/products/12049\">LilyPad Arduino USB - ATmega32U4 Board</a></ul><h5>PTH-11.6X4.0MM</h5><ul><li><a href=\"https://www.sparkfun.com/products/102\">SPDT Mini Power Switch</a> (COM-00102)</li><li>Used on e.g. <a href=\"https://www.sparkfun.com/products/10547\">SparkFun Simon Says - Through-Hole Soldering Kit</a> (KIT-10547)</li></ul><h5>PTH-11.6X4.0MM-KIT</h5><ul><li>KIT version of SPDT Mini Power Switch - Simplifies soldering by removing tStop of switch pins - only one side can be soldered.</li></ul><h5>PTH-11.6X4.0MM-LOCK</h5><ul><li>LOCK version of SPDT Mini Power Switch - Offset pins hold switch in place for easier soldering.</li></ul><h5>SMD-RIGHT-ANGLE</h5><ul><li><a href=\"https://www.sparkfun.com/products/10860\">Surface Mount Right Angle Switch</a> (COM-10860)</li><li>Used on e.g. <a href=\"https://www.sparkfun.com/products/13231\">SparkFun ESP8266 Thing</a></li></ul>")
+      (footprints
+        (fp *SWITCH_SPDT_PTH_11.6X4.0MM*)
+        (fp *SWITCH_SPDT_PTH_11.6X4.0MM_KIT*)
+        (fp *SWITCH_SPDT_PTH_11.6X4.0MM_LOCK*)
+        (fp *SWITCH_DPDT_SMD_AYZ0202*)
+        (fp *SWITCH_SPST_SMD_A*))
+      (fields
+        (field (name Reference) S)
+        (field (name Value) SWITCH-SPDT-PTH-11.6X4.0MM)
+        (field (name Footprint) SWITCH_SPDT_PTH_11.6X4.0MM)
+        (field (name Field4) SWCH-08261))
+      (pins
+        (pin (num 1) (name O) (type passive))
+        (pin (num 2) (name P) (type passive))
+        (pin (num 3) (name S) (type passive))))
+    (libpart (lib dk_Alarms-Buzzers-and-Sirens) (part PS1240P02BT)
+      (description "AUDIO PIEZO TRANSDUCER 30V TH")
+      (docs https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf)
+      (fields
+        (field (name Reference) BZ)
+        (field (name Value) PS1240P02BT)
+        (field (name Footprint) digikey-footprints:Piezo_Transducer_THT_PS1240P02BT)
+        (field (name Datasheet) https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf)
+        (field (name Digi-Key_PN) 445-2525-1-ND)
+        (field (name MPN) PS1240P02BT)
+        (field (name Category) "Audio Products")
+        (field (name Family) "Alarms, Buzzers, and Sirens")
+        (field (name DK_Datasheet_Link) https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf)
+        (field (name DK_Detail_Page) /product-detail/en/tdk-corporation/PS1240P02BT/445-2525-1-ND/935930)
+        (field (name Description) "AUDIO PIEZO TRANSDUCER 30V TH")
+        (field (name Manufacturer) "TDK Corporation")
+        (field (name Status) Active))
+      (pins
+        (pin (num 1) (name ~) (type input))
+        (pin (num 2) (name ~) (type input))))
+    (libpart (lib dk_Embedded-Microcontrollers) (part ATTINY85-20SU)
+      (description "IC MCU 8BIT 8KB FLASH 8SOIC")
+      (docs http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894)
+      (fields
+        (field (name Reference) U)
+        (field (name Value) ATTINY85-20SU)
+        (field (name Footprint) digikey-footprints:SOIC-8_W5.3mm)
+        (field (name Datasheet) http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894)
+        (field (name Digi-Key_PN) ATTINY85-20SU-ND)
+        (field (name MPN) ATTINY85-20SU)
+        (field (name Category) "Integrated Circuits (ICs)")
+        (field (name Family) "Embedded - Microcontrollers")
+        (field (name DK_Datasheet_Link) http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894)
+        (field (name DK_Detail_Page) /product-detail/en/microchip-technology/ATTINY85-20SU/ATTINY85-20SU-ND/735470)
+        (field (name Description) "IC MCU 8BIT 8KB FLASH 8SOIC")
+        (field (name Manufacturer) "Microchip Technology")
+        (field (name Status) Active))
+      (pins
+        (pin (num 1) (name PB5) (type BiDi))
+        (pin (num 2) (name PB3) (type BiDi))
+        (pin (num 3) (name PB4) (type BiDi))
+        (pin (num 4) (name GND) (type power_in))
+        (pin (num 5) (name PB0) (type BiDi))
+        (pin (num 6) (name PB1) (type BiDi))
+        (pin (num 7) (name PB2) (type BiDi))
+        (pin (num 8) (name VCC) (type power_in))))
+    (libpart (lib dk_Transistors-FETs-MOSFETs-Single) (part 2N7002)
+      (description "MOSFET N-CH 60V 115MA SOT-23")
+      (docs https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF)
+      (fields
+        (field (name Reference) Q)
+        (field (name Value) 2N7002)
+        (field (name Footprint) digikey-footprints:SOT-23-3)
+        (field (name Datasheet) https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF)
+        (field (name Digi-Key_PN) 2N7002NCT-ND)
+        (field (name MPN) 2N7002)
+        (field (name Category) "Discrete Semiconductor Products")
+        (field (name Family) "Transistors - FETs, MOSFETs - Single")
+        (field (name DK_Datasheet_Link) https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF)
+        (field (name DK_Detail_Page) /product-detail/en/on-semiconductor/2N7002/2N7002NCT-ND/244664)
+        (field (name Description) "MOSFET N-CH 60V 115MA SOT-23")
+        (field (name Manufacturer) "ON Semiconductor")
+        (field (name Status) Active))
+      (pins
+        (pin (num 1) (name G) (type BiDi))
+        (pin (num 2) (name S) (type BiDi))
+        (pin (num 3) (name D) (type BiDi)))))
+  (libraries
+    (library (logical Device)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/kicad-symbols/Device.lib))
+    (library (logical Jumper)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/kicad-symbols/Jumper.lib))
+    (library (logical Regulator_Linear)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/kicad-symbols/Regulator_Linear.lib))
+    (library (logical Shalnoff)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/Shalnoff/Shalnoff.lib))
+    (library (logical SparkFun-Capacitors)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-Capacitors.lib))
+    (library (logical SparkFun-Connectors)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-Connectors.lib))
+    (library (logical SparkFun-DiscreteSemi)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-DiscreteSemi.lib))
+    (library (logical SparkFun-IC-Power)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-IC-Power.lib))
+    (library (logical SparkFun-Resistors)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-Resistors.lib))
+    (library (logical SparkFun-Switches)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-Switches.lib))
+    (library (logical dk_Alarms-Buzzers-and-Sirens)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/digikey-kicad-library/digikey-symbols/dk_Alarms-Buzzers-and-Sirens.lib))
+    (library (logical dk_Embedded-Microcontrollers)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/digikey-kicad-library/digikey-symbols/dk_Embedded-Microcontrollers.lib))
+    (library (logical dk_Transistors-FETs-MOSFETs-Single)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/digikey-kicad-library/digikey-symbols/dk_Transistors-FETs-MOSFETs-Single.lib)))
+  (nets
+    (net (code 1) (name "Net-(D1-Pad1)")
+      (node (ref R5) (pin 1))
+      (node (ref D1) (pin 1))
+      (node (ref U1) (pin 1)))
+    (net (code 2) (name "Net-(J2-Pad7)")
+      (node (ref R3) (pin 2))
+      (node (ref J2) (pin 7)))
+    (net (code 3) (name "Net-(J2-Pad8)")
+      (node (ref R1) (pin 2))
+      (node (ref J2) (pin 8)))
+    (net (code 4) (name "Net-(J2-Pad10)")
+      (node (ref J2) (pin 10))
+      (node (ref U3) (pin 7))
+      (node (ref S2) (pin 4))
+      (node (ref S2) (pin 3)))
+    (net (code 5) (name "Net-(C4-Pad1)")
+      (node (ref U2) (pin 4))
+      (node (ref C4) (pin 1)))
+    (net (code 6) (name "Net-(J1-Pad3)")
+      (node (ref J1) (pin 3))
+      (node (ref R1) (pin 1)))
+    (net (code 7) (name "Net-(J1-Pad2)")
+      (node (ref R2) (pin 2))
+      (node (ref R3) (pin 1))
+      (node (ref J1) (pin 2)))
+    (net (code 8) (name "Net-(C1-Pad1)")
+      (node (ref R4) (pin 1))
+      (node (ref U1) (pin 4))
+      (node (ref J1) (pin 1))
+      (node (ref R2) (pin 1))
+      (node (ref C2) (pin 1))
+      (node (ref C1) (pin 1)))
+    (net (code 9) (name "Net-(R10-Pad1)")
+      (node (ref U3) (pin 1))
+      (node (ref R10) (pin 1)))
+    (net (code 10) (name +3V3)
+      (node (ref U1) (pin 3))
+      (node (ref S1) (pin 3))
+      (node (ref LiPo1) (pin 1))
+      (node (ref J2) (pin 5))
+      (node (ref Q1) (pin 3))
+      (node (ref C3) (pin 1))
+      (node (ref R12) (pin 2))
+      (node (ref R7) (pin 1))
+      (node (ref U2) (pin 1)))
+    (net (code 11) (name "Net-(J2-Pad9)")
+      (node (ref J2) (pin 9))
+      (node (ref S3) (pin 4))
+      (node (ref U3) (pin 3))
+      (node (ref S3) (pin 3)))
+    (net (code 12) (name "Net-(JP1-Pad2)")
+      (node (ref U3) (pin 6))
+      (node (ref JP1) (pin 2)))
+    (net (code 13) (name "Net-(BZ1-Pad1)")
+      (node (ref Q1) (pin 2))
+      (node (ref BZ1) (pin 1)))
+    (net (code 14) (name "Net-(R7-Pad2)")
+      (node (ref R7) (pin 2))
+      (node (ref R8) (pin 1))
+      (node (ref U3) (pin 2)))
+    (net (code 15) (name /VCC)
+      (node (ref U3) (pin 8))
+      (node (ref U2) (pin 5))
+      (node (ref C5) (pin 1))
+      (node (ref R10) (pin 2)))
+    (net (code 16) (name "Net-(R6-Pad1)")
+      (node (ref R6) (pin 1))
+      (node (ref U1) (pin 5)))
+    (net (code 17) (name GND)
+      (node (ref S3) (pin 1))
+      (node (ref U1) (pin 2))
+      (node (ref U2) (pin 2))
+      (node (ref C5) (pin 2))
+      (node (ref LiPo1) (pin 2))
+      (node (ref S3) (pin 2))
+      (node (ref S1) (pin 1))
+      (node (ref J1) (pin 4))
+      (node (ref R6) (pin 2))
+      (node (ref D2) (pin 1))
+      (node (ref C4) (pin 2))
+      (node (ref C3) (pin 2))
+      (node (ref R8) (pin 2))
+      (node (ref S2) (pin 2))
+      (node (ref S2) (pin 1))
+      (node (ref U3) (pin 4))
+      (node (ref Q2) (pin 2))
+      (node (ref C1) (pin 2))
+      (node (ref C2) (pin 2))
+      (node (ref R9) (pin 2))
+      (node (ref R11) (pin 2))
+      (node (ref BZ1) (pin 2)))
+    (net (code 18) (name "Net-(D13-Pad1)")
+      (node (ref R9) (pin 1))
+      (node (ref D13) (pin 1))
+      (node (ref D3) (pin 1)))
+    (net (code 19) (name "Net-(D1-Pad2)")
+      (node (ref D1) (pin 2))
+      (node (ref R4) (pin 2)))
+    (net (code 20) (name "Net-(S1-Pad2)")
+      (node (ref U2) (pin 3))
+      (node (ref S1) (pin 2)))
+    (net (code 21) (name /Drain)
+      (node (ref D4) (pin 1))
+      (node (ref J2) (pin 6))
+      (node (ref Q2) (pin 3))
+      (node (ref D12) (pin 1))
+      (node (ref D6) (pin 1))
+      (node (ref D7) (pin 1))
+      (node (ref D9) (pin 1))
+      (node (ref D10) (pin 1))
+      (node (ref D11) (pin 1))
+      (node (ref D8) (pin 1))
+      (node (ref D5) (pin 1)))
+    (net (code 22) (name "Net-(D10-Pad2)")
+      (node (ref D12) (pin 2))
+      (node (ref D4) (pin 2))
+      (node (ref D5) (pin 2))
+      (node (ref D6) (pin 2))
+      (node (ref D10) (pin 2))
+      (node (ref D7) (pin 2))
+      (node (ref D8) (pin 2))
+      (node (ref D9) (pin 2))
+      (node (ref R12) (pin 1))
+      (node (ref D11) (pin 2)))
+    (net (code 23) (name "Net-(J2-Pad2)")
+      (node (ref J2) (pin 2)))
+    (net (code 24) (name "Net-(J2-Pad1)")
+      (node (ref J2) (pin 1)))
+    (net (code 25) (name /Gate)
+      (node (ref Q2) (pin 1))
+      (node (ref R11) (pin 1))
+      (node (ref U3) (pin 5)))
+    (net (code 26) (name "Net-(J2-Pad3)")
+      (node (ref J2) (pin 3)))
+    (net (code 27) (name "Net-(D13-Pad2)")
+      (node (ref D3) (pin 2))
+      (node (ref Q1) (pin 1))
+      (node (ref D13) (pin 2))
+      (node (ref JP1) (pin 1)))
+    (net (code 28) (name "Net-(J2-Pad4)")
+      (node (ref J2) (pin 4)))
+    (net (code 29) (name "Net-(D2-Pad2)")
+      (node (ref R5) (pin 2))
+      (node (ref D2) (pin 2)))))
\ No newline at end of file
diff --git a/HARDWARE/lightsticks.pro b/HARDWARE/lightsticks.pro
new file mode 100644 (file)
index 0000000..eb9aada
--- /dev/null
@@ -0,0 +1,248 @@
+update=Wed 06 Nov 2019 02:07:36 PM CET
+version=1
+last_client=kicad
+[general]
+version=1
+RootSch=
+BoardNm=
+[cvpcb]
+version=1
+NetIExt=net
+[eeschema]
+version=1
+LibDir=
+[eeschema/libraries]
+[schematic_editor]
+version=1
+PageLayoutDescrFile=
+PlotDirectoryName=
+SubpartIdSeparator=0
+SubpartFirstId=65
+NetFmtName=Pcbnew
+SpiceAjustPassiveValues=0
+LabSize=50
+ERC_TestSimilarLabels=1
+[pcbnew]
+version=1
+PageLayoutDescrFile=
+LastNetListRead=lightsticks.net
+CopperLayerCount=2
+BoardThickness=1.6
+AllowMicroVias=0
+AllowBlindVias=0
+RequireCourtyardDefinitions=0
+ProhibitOverlappingCourtyards=1
+MinTrackWidth=0.2
+MinViaDiameter=0.4
+MinViaDrill=0.3
+MinMicroViaDiameter=0.2
+MinMicroViaDrill=0.09999999999999999
+MinHoleToHole=0.25
+TrackWidth1=0.25
+ViaDiameter1=0.8
+ViaDrill1=0.4
+dPairWidth1=0.2
+dPairGap1=0.25
+dPairViaGap1=0.25
+SilkLineWidth=0.12
+SilkTextSizeV=1
+SilkTextSizeH=1
+SilkTextSizeThickness=0.15
+SilkTextItalic=0
+SilkTextUpright=1
+CopperLineWidth=0.2
+CopperTextSizeV=1.5
+CopperTextSizeH=1.5
+CopperTextThickness=0.3
+CopperTextItalic=0
+CopperTextUpright=1
+EdgeCutLineWidth=0.05
+CourtyardLineWidth=0.05
+OthersLineWidth=0.15
+OthersTextSizeV=1
+OthersTextSizeH=1
+OthersTextSizeThickness=0.15
+OthersTextItalic=0
+OthersTextUpright=1
+SolderMaskClearance=0.051
+SolderMaskMinWidth=0.25
+SolderPasteClearance=0
+SolderPasteRatio=0
+[pcbnew/Layer.F.Cu]
+Name=F.Cu
+Type=0
+Enabled=1
+[pcbnew/Layer.In1.Cu]
+Name=In1.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In2.Cu]
+Name=In2.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In3.Cu]
+Name=In3.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In4.Cu]
+Name=In4.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In5.Cu]
+Name=In5.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In6.Cu]
+Name=In6.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In7.Cu]
+Name=In7.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In8.Cu]
+Name=In8.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In9.Cu]
+Name=In9.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In10.Cu]
+Name=In10.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In11.Cu]
+Name=In11.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In12.Cu]
+Name=In12.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In13.Cu]
+Name=In13.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In14.Cu]
+Name=In14.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In15.Cu]
+Name=In15.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In16.Cu]
+Name=In16.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In17.Cu]
+Name=In17.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In18.Cu]
+Name=In18.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In19.Cu]
+Name=In19.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In20.Cu]
+Name=In20.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In21.Cu]
+Name=In21.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In22.Cu]
+Name=In22.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In23.Cu]
+Name=In23.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In24.Cu]
+Name=In24.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In25.Cu]
+Name=In25.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In26.Cu]
+Name=In26.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In27.Cu]
+Name=In27.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In28.Cu]
+Name=In28.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In29.Cu]
+Name=In29.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In30.Cu]
+Name=In30.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.B.Cu]
+Name=B.Cu
+Type=0
+Enabled=1
+[pcbnew/Layer.B.Adhes]
+Enabled=1
+[pcbnew/Layer.F.Adhes]
+Enabled=1
+[pcbnew/Layer.B.Paste]
+Enabled=1
+[pcbnew/Layer.F.Paste]
+Enabled=1
+[pcbnew/Layer.B.SilkS]
+Enabled=1
+[pcbnew/Layer.F.SilkS]
+Enabled=1
+[pcbnew/Layer.B.Mask]
+Enabled=1
+[pcbnew/Layer.F.Mask]
+Enabled=1
+[pcbnew/Layer.Dwgs.User]
+Enabled=1
+[pcbnew/Layer.Cmts.User]
+Enabled=1
+[pcbnew/Layer.Eco1.User]
+Enabled=1
+[pcbnew/Layer.Eco2.User]
+Enabled=1
+[pcbnew/Layer.Edge.Cuts]
+Enabled=1
+[pcbnew/Layer.Margin]
+Enabled=1
+[pcbnew/Layer.B.CrtYd]
+Enabled=1
+[pcbnew/Layer.F.CrtYd]
+Enabled=1
+[pcbnew/Layer.B.Fab]
+Enabled=1
+[pcbnew/Layer.F.Fab]
+Enabled=1
+[pcbnew/Layer.Rescue]
+Enabled=1
+[pcbnew/Netclasses]
+[pcbnew/Netclasses/Default]
+Name=Default
+Clearance=0.2
+TrackWidth=0.25
+ViaDiameter=0.8
+ViaDrill=0.4
+uViaDiameter=0.3
+uViaDrill=0.1
+dPairWidth=0.2
+dPairGap=0.25
+dPairViaGap=0.25
diff --git a/HARDWARE/lightsticks.sch b/HARDWARE/lightsticks.sch
new file mode 100644 (file)
index 0000000..e3441e9
--- /dev/null
@@ -0,0 +1,947 @@
+EESchema Schematic File Version 4
+LIBS:lightsticks-cache
+EELAYER 30 0
+EELAYER END
+$Descr A4 11693 8268
+encoding utf-8
+Sheet 1 1
+Title ""
+Date ""
+Rev ""
+Comp ""
+Comment1 ""
+Comment2 ""
+Comment3 ""
+Comment4 ""
+$EndDescr
+$Comp
+L Device:LED D4
+U 1 1 5DBBA50D
+P 10150 2550
+F 0 "D4" V 10097 2628 50  0000 L CNN
+F 1 "LED" V 10188 2628 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 2550 50  0001 C CNN
+F 3 "~" H 10150 2550 50  0001 C CNN
+       1    10150 2550
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D5
+U 1 1 5DBBA842
+P 10150 2850
+F 0 "D5" V 10097 2928 50  0000 L CNN
+F 1 "LED" V 10188 2928 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 2850 50  0001 C CNN
+F 3 "~" H 10150 2850 50  0001 C CNN
+       1    10150 2850
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D6
+U 1 1 5DBBAA77
+P 10150 3150
+F 0 "D6" V 10097 3228 50  0000 L CNN
+F 1 "LED" V 10188 3228 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 3150 50  0001 C CNN
+F 3 "~" H 10150 3150 50  0001 C CNN
+       1    10150 3150
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D7
+U 1 1 5DBBAD6A
+P 10150 3450
+F 0 "D7" V 10097 3528 50  0000 L CNN
+F 1 "LED" V 10188 3528 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 3450 50  0001 C CNN
+F 3 "~" H 10150 3450 50  0001 C CNN
+       1    10150 3450
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D8
+U 1 1 5DBBB05D
+P 10150 3850
+F 0 "D8" V 10097 3928 50  0000 L CNN
+F 1 "LED" V 10188 3928 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 3850 50  0001 C CNN
+F 3 "~" H 10150 3850 50  0001 C CNN
+       1    10150 3850
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D9
+U 1 1 5DBBB3AD
+P 10150 4150
+F 0 "D9" V 10097 4228 50  0000 L CNN
+F 1 "LED" V 10188 4228 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 4150 50  0001 C CNN
+F 3 "~" H 10150 4150 50  0001 C CNN
+       1    10150 4150
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D10
+U 1 1 5DBBB570
+P 10150 4450
+F 0 "D10" V 10097 4528 50  0000 L CNN
+F 1 "LED" V 10188 4528 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 4450 50  0001 C CNN
+F 3 "~" H 10150 4450 50  0001 C CNN
+       1    10150 4450
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D11
+U 1 1 5DBBE1B7
+P 10150 4750
+F 0 "D11" V 10097 4828 50  0000 L CNN
+F 1 "LED" V 10188 4828 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 4750 50  0001 C CNN
+F 3 "~" H 10150 4750 50  0001 C CNN
+       1    10150 4750
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       10300 2550 10300 2850
+Connection ~ 10300 2850
+Wire Wire Line
+       10300 2850 10300 3150
+Connection ~ 10300 3150
+Connection ~ 10300 3850
+Wire Wire Line
+       10300 3850 10300 4150
+Connection ~ 10300 4150
+Wire Wire Line
+       10300 4150 10300 4450
+Connection ~ 10300 4450
+Wire Wire Line
+       10300 4450 10300 4750
+Wire Wire Line
+       10000 2550 10000 2850
+Connection ~ 10000 2850
+Connection ~ 10000 3150
+Connection ~ 10000 3850
+Wire Wire Line
+       10000 3850 10000 4150
+Connection ~ 10000 4150
+Wire Wire Line
+       10000 4150 10000 4450
+Connection ~ 10000 4450
+Wire Wire Line
+       10000 4450 10000 4750
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R12
+U 1 1 5DC54CBB
+P 9800 3150
+F 0 "R12" H 9800 3250 45  0000 L CNN
+F 1 "1R" H 9650 3250 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 9800 3300 20  0001 C CNN
+F 3 "" H 9800 3150 60  0001 C CNN
+F 4 " " V 9842 3218 60  0000 L CNN "Field4"
+       1    9800 3150
+       -1   0    0    1   
+$EndComp
+$Comp
+L power:+3.3V #PWR08
+U 1 1 5DC82CC1
+P 9600 2650
+F 0 "#PWR08" H 9600 2500 50  0001 C CNN
+F 1 "+3.3V" H 9615 2823 50  0000 C CNN
+F 2 "" H 9600 2650 50  0001 C CNN
+F 3 "" H 9600 2650 50  0001 C CNN
+       1    9600 2650
+       1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR06
+U 1 1 5DC873FE
+P 8650 4150
+F 0 "#PWR06" H 8650 3900 50  0001 C CNN
+F 1 "GND" H 8655 3977 50  0000 C CNN
+F 2 "" H 8650 4150 50  0001 C CNN
+F 3 "" H 8650 4150 50  0001 C CNN
+       1    8650 4150
+       1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR07
+U 1 1 5DC87A6F
+P 9400 4150
+F 0 "#PWR07" H 9400 3900 50  0001 C CNN
+F 1 "GND" H 9405 3977 50  0000 C CNN
+F 2 "" H 9400 4150 50  0001 C CNN
+F 3 "" H 9400 4150 50  0001 C CNN
+       1    9400 4150
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R9
+U 1 1 5DC8FBDE
+P 6650 3700
+F 0 "R9" V 6600 3750 45  0000 L CNN
+F 1 "220R" V 6700 3750 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 6650 3850 20  0001 C CNN
+F 3 "" H 6650 3700 60  0001 C CNN
+F 4 " " V 6692 3768 60  0000 L CNN "Field4"
+       1    6650 3700
+       0    1    1    0   
+$EndComp
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R11
+U 1 1 5DC9745B
+P 8850 2900
+F 0 "R11" V 8800 2950 45  0000 L CNN
+F 1 "10K" V 8900 2950 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 8850 3050 20  0001 C CNN
+F 3 "" H 8850 2900 60  0001 C CNN
+F 4 " " V 8892 2968 60  0000 L CNN "Field4"
+       1    8850 2900
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       8850 3100 8850 4150
+Wire Wire Line
+       3350 2550 3350 2700
+Connection ~ 3350 2700
+Wire Wire Line
+       4250 2850 4350 2850
+Wire Wire Line
+       4250 2700 4250 2850
+Wire Wire Line
+       3350 3000 3350 3400
+Wire Wire Line
+       3550 3300 3550 3550
+Wire Wire Line
+       2150 2650 2350 2650
+$Comp
+L power:+3.3V #PWR01
+U 1 1 5DF15658
+P 3350 2550
+F 0 "#PWR01" H 3350 2400 50  0001 C CNN
+F 1 "+3.3V" H 3365 2723 50  0000 C CNN
+F 2 "" H 3350 2550 50  0001 C CNN
+F 3 "" H 3350 2550 50  0001 C CNN
+       1    3350 2550
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       5350 4100 5350 4150
+Connection ~ 5350 4100
+Wire Wire Line
+       5100 4100 5350 4100
+Wire Wire Line
+       5100 3150 5100 4100
+Wire Wire Line
+       3200 2700 3350 2700
+$Comp
+L Regulator_Linear:MIC5205-3.3YM5 U2
+U 1 1 5DC01F70
+P 4650 2950
+F 0 "U2" H 4650 3292 50  0000 C CNN
+F 1 "MIC5205-3.3YM5" H 4650 3201 50  0000 C CNN
+F 2 "Package_TO_SOT_SMD:SOT-23-5" H 4650 3275 50  0001 C CNN
+F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/20005785A.pdf" H 4650 2950 50  0001 C CNN
+       1    4650 2950
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Capacitors:2.2UF-0805-25V-_+80_-20%_ C5
+U 1 1 5DD31F10
+P 5100 3050
+F 0 "C5" H 5208 3142 45  0000 L CNN
+F 1 ">2.2UF" H 5208 3058 45  0000 L CNN
+F 2 "Capacitors_SMD:C_0805" H 5100 3300 20  0001 C CNN
+F 3 "" H 5100 3050 50  0001 C CNN
+       1    5100 3050
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       4950 2850 5100 2850
+Wire Wire Line
+       3200 3400 3350 3400
+Wire Wire Line
+       3350 4100 3550 4100
+Connection ~ 3350 4100
+$Comp
+L power:GND #PWR02
+U 1 1 5DE31D47
+P 3350 4100
+F 0 "#PWR02" H 3350 3850 50  0001 C CNN
+F 1 "GND" H 3355 3927 50  0000 C CNN
+F 2 "" H 3350 4100 50  0001 C CNN
+F 3 "" H 3350 4100 50  0001 C CNN
+       1    3350 4100
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       3200 3200 3200 2700
+Wire Wire Line
+       2350 2650 2350 3200
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R4
+U 1 1 5DE819BA
+P 2150 2850
+F 0 "R4" V 2150 2900 45  0000 L CNN
+F 1 "470" V 2250 2900 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 2150 3000 20  0001 C CNN
+F 3 "" H 2150 2850 60  0001 C CNN
+F 4 " " V 2192 2918 60  0000 L CNN "Field4"
+       1    2150 2850
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       2350 3200 2400 3200
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R6
+U 1 1 5DE395AF
+P 3550 3750
+F 0 "R6" V 3500 3800 45  0000 L CNN
+F 1 "5K (200mA)" V 3600 3800 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 3550 3900 20  0001 C CNN
+F 3 "" H 3550 3750 60  0001 C CNN
+F 4 " " V 3592 3818 60  0000 L CNN "Field4"
+       1    3550 3750
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       3200 3300 3550 3300
+$Comp
+L Device:LED D1
+U 1 1 5DDB0404
+P 2150 3200
+F 0 "D1" V 2189 3083 50  0000 R CNN
+F 1 "LED" V 2098 3083 50  0000 R CNN
+F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 2150 3200 50  0001 C CNN
+F 3 "~" H 2150 3200 50  0001 C CNN
+       1    2150 3200
+       0    -1   -1   0   
+$EndComp
+$Comp
+L Device:Battery_Cell LiPo1
+U 1 1 5DCEE429
+P 3350 2900
+F 0 "LiPo1" H 3468 2996 50  0000 L CNN
+F 1 "Battery_Cell" H 3468 2905 50  0001 L CNN
+F 2 "Shalnoff:CONTACT_2_10mm" V 3350 2960 50  0001 C CNN
+F 3 "~" V 3350 2960 50  0001 C CNN
+       1    3350 2900
+       1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR04
+U 1 1 5DCD1CC1
+P 5350 4150
+F 0 "#PWR04" H 5350 3900 50  0001 C CNN
+F 1 "GND" H 5355 3977 50  0000 C CNN
+F 2 "" H 5350 4150 50  0001 C CNN
+F 3 "" H 5350 4150 50  0001 C CNN
+       1    5350 4150
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R8
+U 1 1 5DC67D82
+P 5350 3750
+F 0 "R8" V 5300 3800 45  0000 L CNN
+F 1 "100K" V 5400 3800 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 5350 3900 20  0001 C CNN
+F 3 "" H 5350 3750 60  0001 C CNN
+F 4 " " V 5392 3818 60  0000 L CNN "Field4"
+       1    5350 3750
+       0    1    1    0   
+$EndComp
+$Comp
+L SparkFun-Switches:MOMENTARY-SWITCH-SPST-2-SMD-5.2MM S3
+U 1 1 5DC11587
+P 6250 3750
+F 0 "S3" H 6250 3995 45  0000 C CNN
+F 1 "MOMENTARY-SWITCH-SPST-2-SMD-5.2MM" H 6250 4101 45  0001 C CNN
+F 2 "Switches:TACTILE_SWITCH_SMD_5.2MM" H 6250 4000 20  0001 C CNN
+F 3 "" H 6250 3750 50  0001 C CNN
+F 4 "SWCH-08247" H 6250 4006 60  0001 C CNN "Field4"
+       1    6250 3750
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Switches:MOMENTARY-SWITCH-SPST-2-SMD-5.2MM S2
+U 1 1 5DC102D0
+P 5750 3150
+F 0 "S2" H 5750 3395 45  0000 C CNN
+F 1 "MOMENTARY-SWITCH-SPST-2-SMD-5.2MM" H 5750 3395 45  0001 C CNN
+F 2 "Switches:TACTILE_SWITCH_SMD_5.2MM" H 5750 3400 20  0001 C CNN
+F 3 "" H 5750 3150 50  0001 C CNN
+F 4 "SWCH-08247" H 5750 3406 60  0001 C CNN "Field4"
+       1    5750 3150
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-IC-Power:MCP73831 U1
+U 1 1 5DC01989
+P 2800 3300
+F 0 "U1" H 2800 3760 45  0000 C CNN
+F 1 "MCP73831" H 2800 3676 45  0000 C CNN
+F 2 "Silicon-Standard:SOT23-5" H 2800 3600 20  0001 C CNN
+F 3 "" H 2800 3300 60  0001 C CNN
+F 4 "IC-09995" H 2800 3581 60  0000 C CNN "Field4"
+       1    2800 3300
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Switches:SWITCH-SPDT-PTH-11.6X4.0MM S1
+U 1 1 5DFADD4B
+P 4000 3400
+F 0 "S1" H 4050 3586 45  0000 C CNN
+F 1 "SWITCH-SPDT-PTH-11.6X4.0MM" H 4050 3586 45  0001 C CNN
+F 2 "Switches:SWITCH_SPST_SMD_A" H 4000 3650 20  0001 C CNN
+F 3 "" H 4000 3400 50  0001 C CNN
+F 4 "SWCH-08261" H 4050 3597 60  0001 C CNN "Field4"
+       1    4000 3400
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       4300 3400 4300 2950
+Wire Wire Line
+       4300 2950 4350 2950
+Connection ~ 3550 4100
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R5
+U 1 1 5DFD1897
+P 2150 3600
+F 0 "R5" V 2100 3650 45  0000 L CNN
+F 1 "470" V 2200 3650 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 2150 3750 20  0001 C CNN
+F 3 "" H 2150 3600 60  0001 C CNN
+F 4 " " V 2192 3668 60  0000 L CNN "Field4"
+       1    2150 3600
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       2150 4100 2350 4100
+$Comp
+L Device:LED D2
+U 1 1 5DFD1F99
+P 2150 3950
+F 0 "D2" V 2189 3833 50  0000 R CNN
+F 1 "LED" V 2098 3833 50  0000 R CNN
+F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 2150 3950 50  0001 C CNN
+F 3 "~" H 2150 3950 50  0001 C CNN
+       1    2150 3950
+       0    -1   -1   0   
+$EndComp
+$Comp
+L dk_Embedded-Microcontrollers:ATTINY85-20SU U3
+U 1 1 5DFE55A4
+P 8550 3150
+F 0 "U3" H 8778 3053 60  0000 L CNN
+F 1 "ATTINY85-20SU" H 8200 3750 60  0000 L CNN
+F 2 "digikey-footprints:SOIC-8_W5.3mm" H 8750 3350 60  0001 L CNN
+F 3 "http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894" H 8750 3450 60  0001 L CNN
+F 4 "ATTINY85-20SU-ND" H 8750 3550 60  0001 L CNN "Digi-Key_PN"
+F 5 "ATTINY85-20SU" H 8750 3650 60  0001 L CNN "MPN"
+F 6 "Integrated Circuits (ICs)" H 8750 3750 60  0001 L CNN "Category"
+F 7 "Embedded - Microcontrollers" H 8750 3850 60  0001 L CNN "Family"
+F 8 "http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894" H 8750 3950 60  0001 L CNN "DK_Datasheet_Link"
+F 9 "/product-detail/en/microchip-technology/ATTINY85-20SU/ATTINY85-20SU-ND/735470" H 8750 4050 60  0001 L CNN "DK_Detail_Page"
+F 10 "IC MCU 8BIT 8KB FLASH 8SOIC" H 8750 4150 60  0001 L CNN "Description"
+F 11 "Microchip Technology" H 8750 4250 60  0001 L CNN "Manufacturer"
+F 12 "Active" H 8750 4350 60  0001 L CNN "Status"
+       1    8550 3150
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       5350 3950 5350 4100
+$Comp
+L power:+3.3V #PWR03
+U 1 1 5E0223B8
+P 5350 2600
+F 0 "#PWR03" H 5350 2450 50  0001 C CNN
+F 1 "+3.3V" H 5365 2773 50  0000 C CNN
+F 2 "" H 5350 2600 50  0001 C CNN
+F 3 "" H 5350 2600 50  0001 C CNN
+       1    5350 2600
+       1    0    0    -1  
+$EndComp
+$Comp
+L Device:LED D3
+U 1 1 5E0121D1
+P 6800 3150
+F 0 "D3" H 6350 3150 50  0000 C CNN
+F 1 "LED" H 6500 3150 50  0000 C CNN
+F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 6800 3150 50  0001 C CNN
+F 3 "~" H 6800 3150 50  0001 C CNN
+       1    6800 3150
+       1    0    0    1   
+$EndComp
+Wire Wire Line
+       6650 3150 6650 3500
+Text Label 8650 4150 0    50   ~ 0
+GND
+$Comp
+L SparkFun-Capacitors:2.2UF-0805-25V-_+80_-20%_ C3
+U 1 1 5E19AB03
+P 4150 3800
+F 0 "C3" H 4258 3892 45  0000 L CNN
+F 1 "4.7uF" H 4258 3808 45  0000 L CNN
+F 2 "Capacitors_SMD:C_0805" H 4150 4050 20  0001 C CNN
+F 3 "" H 4150 3800 50  0001 C CNN
+       1    4150 3800
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       8650 3750 8650 4050
+Wire Wire Line
+       8850 4150 9400 4150
+Wire Wire Line
+       8150 2700 8150 3050
+Wire Wire Line
+       8150 3050 8250 3050
+$Comp
+L SparkFun-Connectors:CONN_05X2NO_SILK J2
+U 1 1 5E21FA62
+P 6200 4750
+F 0 "J2" V 6200 5028 45  0000 L CNN
+F 1 "CONN_05X2NO_SILK" V 6189 5028 45  0001 L CNN
+F 2 "Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD" H 6200 5150 20  0001 C CNN
+F 3 "" H 6200 4750 50  0001 C CNN
+F 4 "XXX-00000" V 6284 5028 60  0001 L CNN "Field4"
+       1    6200 4750
+       -1   0    0    1   
+$EndComp
+Connection ~ 10300 3450
+Wire Wire Line
+       10000 3450 10000 3850
+Wire Wire Line
+       10300 3150 10300 3450
+Connection ~ 10000 3450
+Wire Wire Line
+       10000 3150 10000 3450
+$Comp
+L dk_Transistors-FETs-MOSFETs-Single:2N7002 Q1
+U 1 1 5E33C7DE
+P 7250 3750
+F 0 "Q1" H 7357 3803 60  0000 L CNN
+F 1 "2N7002" H 6750 3550 60  0000 L CNN
+F 2 "digikey-footprints:SOT-23-3" H 7450 3950 60  0001 L CNN
+F 3 "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" H 7450 4050 60  0001 L CNN
+F 4 "2N7002NCT-ND" H 7450 4150 60  0001 L CNN "Digi-Key_PN"
+F 5 "2N7002" H 7450 4250 60  0001 L CNN "MPN"
+F 6 "Discrete Semiconductor Products" H 7450 4350 60  0001 L CNN "Category"
+F 7 "Transistors - FETs, MOSFETs - Single" H 7450 4450 60  0001 L CNN "Family"
+F 8 "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" H 7450 4550 60  0001 L CNN "DK_Datasheet_Link"
+F 9 "/product-detail/en/on-semiconductor/2N7002/2N7002NCT-ND/244664" H 7450 4650 60  0001 L CNN "DK_Detail_Page"
+F 10 "MOSFET N-CH 60V 115MA SOT-23" H 7450 4750 60  0001 L CNN "Description"
+F 11 "ON Semiconductor" H 7450 4850 60  0001 L CNN "Manufacturer"
+F 12 "Active" H 7450 4950 60  0001 L CNN "Status"
+       1    7250 3750
+       -1   0    0    -1  
+$EndComp
+Wire Wire Line
+       8150 2700 8850 2700
+Connection ~ 8850 2700
+Wire Wire Line
+       6950 3150 7600 3150
+Wire Wire Line
+       7550 3850 7600 3850
+Wire Wire Line
+       7600 3850 7600 3150
+$Comp
+L dk_Alarms-Buzzers-and-Sirens:PS1240P02BT BZ1
+U 1 1 5E3EE254
+P 7100 4050
+F 0 "BZ1" H 7198 4281 60  0000 C CNN
+F 1 "PS1240P02BT" H 7198 4281 60  0001 C CNN
+F 2 "Capacitor_SMD:C_1812_4532Metric" H 7300 4250 60  0001 L CNN
+F 3 "https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf" H 7300 4350 60  0001 L CNN
+F 4 "445-2525-1-ND" H 7300 4450 60  0001 L CNN "Digi-Key_PN"
+F 5 "PS1240P02BT" H 7300 4550 60  0001 L CNN "MPN"
+F 6 "Audio Products" H 7300 4650 60  0001 L CNN "Category"
+F 7 "Alarms, Buzzers, and Sirens" H 7300 4750 60  0001 L CNN "Family"
+F 8 "https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf" H 7300 4850 60  0001 L CNN "DK_Datasheet_Link"
+F 9 "/product-detail/en/tdk-corporation/PS1240P02BT/445-2525-1-ND/935930" H 7300 4950 60  0001 L CNN "DK_Detail_Page"
+F 10 "AUDIO PIEZO TRANSDUCER 30V TH" H 7300 5050 60  0001 L CNN "Description"
+F 11 "TDK Corporation" H 7300 5150 60  0001 L CNN "Manufacturer"
+F 12 "Active" H 7300 5250 60  0001 L CNN "Status"
+       1    7100 4050
+       -1   0    0    -1  
+$EndComp
+Connection ~ 8650 4050
+Wire Wire Line
+       8650 4050 8650 4150
+Wire Wire Line
+       7250 2650 7250 3550
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R10
+U 1 1 5E410B16
+P 8050 3550
+F 0 "R10" H 8100 3650 45  0000 L CNN
+F 1 "10K" H 7900 3650 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 8050 3700 20  0001 C CNN
+F 3 "" H 8050 3550 60  0001 C CNN
+F 4 " " V 8092 3618 60  0000 L CNN "Field4"
+       1    8050 3550
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       1200 2950 1200 2650
+$Comp
+L Shalnoff:USB_A_SMT_MALE_PCB J1
+U 1 1 5DBC8501
+P 950 3100
+F 0 "J1" H 1128 3195 45  0000 L CNN
+F 1 "USB_A_SMT_MALE_PCB" H 1128 3111 45  0001 L CNN
+F 2 "Shalnoff:USB_A_SMT_MALE_PCB" H 950 3500 20  0001 C CNN
+F 3 "" H 950 3100 50  0001 C CNN
+F 4 "CONN-11499" H 1128 3016 60  0001 L CNN "Field4"
+       1    950  3100
+       -1   0    0    -1  
+$EndComp
+Connection ~ 2150 2650
+Connection ~ 2150 4100
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R3
+U 1 1 5DC811B8
+P 1950 3550
+F 0 "R3" V 2000 3600 45  0000 L CNN
+F 1 "68" V 2100 3600 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 1950 3700 20  0001 C CNN
+F 3 "" H 1950 3550 60  0001 C CNN
+F 4 " " V 1992 3618 60  0000 L CNN "Field4"
+       1    1950 3550
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       1200 3150 1750 3150
+Wire Wire Line
+       1750 3150 1750 3350
+Wire Wire Line
+       1950 3050 1950 3350
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R2
+U 1 1 5DCC28CC
+P 1950 2850
+F 0 "R2" V 1900 2650 45  0000 L CNN
+F 1 "2K2 (1K5)" V 2000 2450 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 1950 3000 20  0001 C CNN
+F 3 "" H 1950 2850 60  0001 C CNN
+F 4 " " V 1992 2918 60  0000 L CNN "Field4"
+       1    1950 2850
+       0    1    1    0   
+$EndComp
+Connection ~ 1950 2650
+Wire Wire Line
+       1950 2650 2150 2650
+Connection ~ 1950 3050
+Wire Wire Line
+       5350 4100 5550 4100
+Connection ~ 5550 4100
+Wire Wire Line
+       5550 4100 6050 4100
+Connection ~ 6050 4100
+Wire Wire Line
+       6050 4100 6650 4100
+Wire Wire Line
+       6450 4550 6450 3850
+Wire Wire Line
+       6450 4650 6550 4650
+Wire Wire Line
+       6550 4650 6550 4400
+Wire Wire Line
+       6550 4400 1950 4400
+Wire Wire Line
+       5950 4650 1750 4650
+Wire Wire Line
+       5950 3250 5950 3150
+Connection ~ 5950 3250
+Wire Wire Line
+       5550 3150 5550 3250
+Connection ~ 5550 3250
+Wire Wire Line
+       5550 3250 5550 4100
+Wire Wire Line
+       5950 3250 5950 4550
+Wire Wire Line
+       1200 4100 1400 4100
+Wire Wire Line
+       1200 3050 1950 3050
+Wire Wire Line
+       1200 2650 1400 2650
+Wire Wire Line
+       1400 3350 1400 2650
+Connection ~ 1400 2650
+Wire Wire Line
+       1400 2650 1950 2650
+Connection ~ 1400 4100
+Wire Wire Line
+       1400 4100 2150 4100
+Wire Wire Line
+       1200 3250 1200 4100
+Wire Wire Line
+       1400 3650 1400 4100
+Wire Wire Line
+       1750 3750 1750 4650
+Wire Wire Line
+       1950 3750 1950 4400
+Wire Wire Line
+       2150 3400 2400 3400
+Wire Wire Line
+       2150 3400 2150 3350
+Connection ~ 2150 3400
+Wire Wire Line
+       3350 3400 3350 4100
+Connection ~ 3350 3400
+Wire Wire Line
+       3550 3950 3550 4100
+Wire Wire Line
+       4650 3250 4650 4100
+Wire Wire Line
+       10000 2850 10000 3150
+Wire Wire Line
+       10300 3450 10300 3650
+Wire Wire Line
+       9400 3700 9400 3650
+Wire Wire Line
+       9400 3650 9800 3650
+Connection ~ 10300 3650
+Wire Wire Line
+       10300 3650 10300 3850
+Wire Wire Line
+       9400 4100 9400 4150
+Connection ~ 9400 4150
+Wire Wire Line
+       5950 4750 5800 4750
+Connection ~ 9800 3650
+Wire Wire Line
+       9800 3650 10300 3650
+$Comp
+L SparkFun-Capacitors:2.2UF-0805-25V-_+80_-20%_ C4
+U 1 1 5DE5BCDF
+P 4950 3550
+F 0 "C4" H 4750 3600 45  0000 L CNN
+F 1 "[470pF]" H 4650 3500 45  0000 L CNN
+F 2 "Capacitors_SMD:C_0805" H 4950 3800 20  0001 C CNN
+F 3 "" H 4950 3550 50  0001 C CNN
+       1    4950 3550
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       4950 3350 4950 2950
+Wire Wire Line
+       4950 3650 4950 4100
+Wire Wire Line
+       4950 4100 4650 4100
+Connection ~ 4650 4100
+Wire Wire Line
+       3350 2700 3800 2700
+Wire Wire Line
+       3550 4100 3800 4100
+Wire Wire Line
+       4100 3400 4300 3400
+Wire Wire Line
+       3800 3300 3800 2700
+Connection ~ 3800 2700
+Wire Wire Line
+       3800 2700 4150 2700
+Wire Wire Line
+       3800 3500 3800 4100
+Connection ~ 3800 4100
+Wire Wire Line
+       3800 4100 4150 4100
+Wire Wire Line
+       4150 3600 4150 2700
+Connection ~ 4150 2700
+Wire Wire Line
+       4150 2700 4250 2700
+Wire Wire Line
+       4150 3900 4150 4100
+Connection ~ 4150 4100
+Wire Wire Line
+       4150 4100 4650 4100
+$Comp
+L SparkFun-Capacitors:2.2UF-0805-25V-_+80_-20%_ C2
+U 1 1 5DEE36ED
+P 2350 3850
+F 0 "C2" H 2458 3942 45  0000 L CNN
+F 1 "4.7uF" H 2458 3858 45  0000 L CNN
+F 2 "Capacitors_SMD:C_0805" H 2350 4100 20  0001 C CNN
+F 3 "" H 2350 3850 50  0001 C CNN
+       1    2350 3850
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       2350 3650 2350 3200
+Connection ~ 2350 3200
+Wire Wire Line
+       2350 3950 2350 4100
+Connection ~ 2350 4100
+Wire Wire Line
+       2350 4100 3350 4100
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R1
+U 1 1 5DC80BBF
+P 1750 3550
+F 0 "R1" V 1800 3600 45  0000 L CNN
+F 1 "68" V 1900 3600 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 1750 3700 20  0001 C CNN
+F 3 "" H 1750 3550 60  0001 C CNN
+F 4 " " V 1792 3618 60  0000 L CNN "Field4"
+       1    1750 3550
+       0    1    1    0   
+$EndComp
+Connection ~ 7850 2850
+Wire Wire Line
+       7850 2850 8650 2850
+Wire Wire Line
+       5100 2850 7850 2850
+Connection ~ 5100 2850
+Wire Wire Line
+       5950 3250 8250 3250
+Wire Wire Line
+       6450 3450 8250 3450
+Wire Wire Line
+       6450 4750 9600 4750
+Wire Wire Line
+       7200 3950 7250 3950
+Wire Wire Line
+       7200 4050 8650 4050
+Wire Wire Line
+       9100 2700 9100 4000
+Wire Wire Line
+       8850 2700 9100 2700
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R7
+U 1 1 5DC63B88
+P 5350 2800
+F 0 "R7" V 5350 2850 45  0000 L CNN
+F 1 "1M" V 5450 2850 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 5350 2950 20  0001 C CNN
+F 3 "" H 5350 2800 60  0001 C CNN
+F 4 " " V 5392 2868 60  0000 L CNN "Field4"
+       1    5350 2800
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       5350 3350 8250 3350
+Connection ~ 5350 3350
+Wire Wire Line
+       5350 3350 5350 3550
+Wire Wire Line
+       5350 3000 5350 3350
+Wire Wire Line
+       5800 5150 9800 5150
+Wire Wire Line
+       5800 4750 5800 5150
+Wire Wire Line
+       9800 3650 9800 5150
+Wire Wire Line
+       9600 3150 9600 4750
+Wire Wire Line
+       9600 2650 9600 3150
+Connection ~ 9600 3150
+Wire Wire Line
+       6050 3850 6050 4100
+Wire Wire Line
+       6450 3450 6450 3750
+Wire Wire Line
+       6450 3750 6450 3850
+Connection ~ 6450 3750
+Connection ~ 6450 3850
+Wire Wire Line
+       6050 3750 6050 3850
+Connection ~ 6050 3850
+Wire Wire Line
+       6650 3900 6650 4100
+$Comp
+L Shalnoff:10UF-POLAR-0603-6.3V-20%_TANT_ C1
+U 1 1 5DCC90B4
+P 1400 3450
+F 0 "C1" H 1528 3442 45  0000 L CNN
+F 1 "10uF" H 1528 3358 45  0000 L CNN
+F 2 "Capacitor_Tantalum_SMD:CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder" H 1400 3700 20  0001 C CNN
+F 3 "" H 1400 3450 50  0001 C CNN
+       1    1400 3450
+       1    0    0    -1  
+$EndComp
+$Comp
+L Device:LED D12
+U 1 1 5DE5D3FE
+P 10150 5050
+F 0 "D12" V 10097 5128 50  0000 L CNN
+F 1 "LED" V 10188 5128 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 5050 50  0001 C CNN
+F 3 "~" H 10150 5050 50  0001 C CNN
+       1    10150 5050
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       10000 4750 10000 5050
+Connection ~ 10000 4750
+Wire Wire Line
+       10300 4750 10300 5050
+Connection ~ 10300 4750
+Text Label 8650 2850 0    50   ~ 0
+VCC
+Text Label 7350 2650 0    50   ~ 0
+3.3v
+Connection ~ 7600 3150
+Wire Wire Line
+       7950 3150 7600 3150
+Wire Wire Line
+       7850 3550 7850 2850
+$Comp
+L Jumper:SolderJumper_2_Bridged JP1
+U 1 1 5DF65FF2
+P 8100 3150
+F 0 "JP1" H 8100 3263 50  0000 C CNN
+F 1 "SolderJumper_2_Bridged" H 8100 3264 50  0001 C CNN
+F 2 "Shalnoff:JP_0805" H 8100 3150 50  0001 C CNN
+F 3 "~" H 8100 3150 50  0001 C CNN
+       1    8100 3150
+       1    0    0    -1  
+$EndComp
+$Comp
+L Device:LED D13
+U 1 1 5DFB9F90
+P 6800 3000
+F 0 "D13" H 6350 3000 50  0000 C CNN
+F 1 "LED" H 6550 3000 50  0000 C CNN
+F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 6800 3000 50  0001 C CNN
+F 3 "~" H 6800 3000 50  0001 C CNN
+       1    6800 3000
+       1    0    0    1   
+$EndComp
+Wire Wire Line
+       6650 3150 6650 3000
+Connection ~ 6650 3150
+Wire Wire Line
+       6950 3000 7600 3000
+Wire Wire Line
+       7600 3000 7600 3150
+$Comp
+L SparkFun-DiscreteSemi:MOSFET-NCH-AO3404A Q2
+U 1 1 5DD0A422
+P 9300 3900
+F 0 "Q2" H 9464 3900 45  0000 L CNN
+F 1 "MOSFET-NCH-AO3404A" H 9465 3911 45  0001 L CNN
+F 2 "Silicon-Standard:SOT23-3" H 9300 4150 20  0001 C CNN
+F 3 "" H 9300 3900 50  0001 C CNN
+F 4 "TRANS-12988" H 9465 3858 60  0001 L CNN "Field4"
+       1    9300 3900
+       1    0    0    -1  
+$EndComp
+Text Label 9100 4000 0    50   ~ 0
+Gate
+Text Label 9400 3700 0    50   ~ 0
+Drain
+$Comp
+L power:+3.3V #PWR05
+U 1 1 5E40377C
+P 7250 2650
+F 0 "#PWR05" H 7250 2500 50  0001 C CNN
+F 1 "+3.3V" H 7265 2823 50  0000 C CNN
+F 2 "" H 7250 2650 50  0001 C CNN
+F 3 "" H 7250 2650 50  0001 C CNN
+       1    7250 2650
+       1    0    0    -1  
+$EndComp
+$EndSCHEMATC
diff --git a/HARDWARE/lightsticks.sch-bak b/HARDWARE/lightsticks.sch-bak
new file mode 100644 (file)
index 0000000..f3445df
--- /dev/null
@@ -0,0 +1,947 @@
+EESchema Schematic File Version 4
+LIBS:lightsticks-cache
+EELAYER 30 0
+EELAYER END
+$Descr A4 11693 8268
+encoding utf-8
+Sheet 1 1
+Title ""
+Date ""
+Rev ""
+Comp ""
+Comment1 ""
+Comment2 ""
+Comment3 ""
+Comment4 ""
+$EndDescr
+$Comp
+L Device:LED D4
+U 1 1 5DBBA50D
+P 10150 2550
+F 0 "D4" V 10097 2628 50  0000 L CNN
+F 1 "LED" V 10188 2628 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 2550 50  0001 C CNN
+F 3 "~" H 10150 2550 50  0001 C CNN
+       1    10150 2550
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D5
+U 1 1 5DBBA842
+P 10150 2850
+F 0 "D5" V 10097 2928 50  0000 L CNN
+F 1 "LED" V 10188 2928 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 2850 50  0001 C CNN
+F 3 "~" H 10150 2850 50  0001 C CNN
+       1    10150 2850
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D6
+U 1 1 5DBBAA77
+P 10150 3150
+F 0 "D6" V 10097 3228 50  0000 L CNN
+F 1 "LED" V 10188 3228 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 3150 50  0001 C CNN
+F 3 "~" H 10150 3150 50  0001 C CNN
+       1    10150 3150
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D7
+U 1 1 5DBBAD6A
+P 10150 3450
+F 0 "D7" V 10097 3528 50  0000 L CNN
+F 1 "LED" V 10188 3528 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 3450 50  0001 C CNN
+F 3 "~" H 10150 3450 50  0001 C CNN
+       1    10150 3450
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D8
+U 1 1 5DBBB05D
+P 10150 3850
+F 0 "D8" V 10097 3928 50  0000 L CNN
+F 1 "LED" V 10188 3928 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 3850 50  0001 C CNN
+F 3 "~" H 10150 3850 50  0001 C CNN
+       1    10150 3850
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D9
+U 1 1 5DBBB3AD
+P 10150 4150
+F 0 "D9" V 10097 4228 50  0000 L CNN
+F 1 "LED" V 10188 4228 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 4150 50  0001 C CNN
+F 3 "~" H 10150 4150 50  0001 C CNN
+       1    10150 4150
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D10
+U 1 1 5DBBB570
+P 10150 4450
+F 0 "D10" V 10097 4528 50  0000 L CNN
+F 1 "LED" V 10188 4528 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 4450 50  0001 C CNN
+F 3 "~" H 10150 4450 50  0001 C CNN
+       1    10150 4450
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D11
+U 1 1 5DBBE1B7
+P 10150 4750
+F 0 "D11" V 10097 4828 50  0000 L CNN
+F 1 "LED" V 10188 4828 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 4750 50  0001 C CNN
+F 3 "~" H 10150 4750 50  0001 C CNN
+       1    10150 4750
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       10300 2550 10300 2850
+Connection ~ 10300 2850
+Wire Wire Line
+       10300 2850 10300 3150
+Connection ~ 10300 3150
+Connection ~ 10300 3850
+Wire Wire Line
+       10300 3850 10300 4150
+Connection ~ 10300 4150
+Wire Wire Line
+       10300 4150 10300 4450
+Connection ~ 10300 4450
+Wire Wire Line
+       10300 4450 10300 4750
+Wire Wire Line
+       10000 2550 10000 2850
+Connection ~ 10000 2850
+Connection ~ 10000 3150
+Connection ~ 10000 3850
+Wire Wire Line
+       10000 3850 10000 4150
+Connection ~ 10000 4150
+Wire Wire Line
+       10000 4150 10000 4450
+Connection ~ 10000 4450
+Wire Wire Line
+       10000 4450 10000 4750
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R12
+U 1 1 5DC54CBB
+P 9800 3150
+F 0 "R12" H 9800 3250 45  0000 L CNN
+F 1 "1R" H 9650 3250 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 9800 3300 20  0001 C CNN
+F 3 "" H 9800 3150 60  0001 C CNN
+F 4 " " V 9842 3218 60  0000 L CNN "Field4"
+       1    9800 3150
+       -1   0    0    1   
+$EndComp
+$Comp
+L power:+3.3V #PWR08
+U 1 1 5DC82CC1
+P 9600 2650
+F 0 "#PWR08" H 9600 2500 50  0001 C CNN
+F 1 "+3.3V" H 9615 2823 50  0000 C CNN
+F 2 "" H 9600 2650 50  0001 C CNN
+F 3 "" H 9600 2650 50  0001 C CNN
+       1    9600 2650
+       1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR06
+U 1 1 5DC873FE
+P 8650 4150
+F 0 "#PWR06" H 8650 3900 50  0001 C CNN
+F 1 "GND" H 8655 3977 50  0000 C CNN
+F 2 "" H 8650 4150 50  0001 C CNN
+F 3 "" H 8650 4150 50  0001 C CNN
+       1    8650 4150
+       1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR07
+U 1 1 5DC87A6F
+P 9400 4150
+F 0 "#PWR07" H 9400 3900 50  0001 C CNN
+F 1 "GND" H 9405 3977 50  0000 C CNN
+F 2 "" H 9400 4150 50  0001 C CNN
+F 3 "" H 9400 4150 50  0001 C CNN
+       1    9400 4150
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R9
+U 1 1 5DC8FBDE
+P 6650 3700
+F 0 "R9" V 6600 3750 45  0000 L CNN
+F 1 "220R" V 6700 3750 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 6650 3850 20  0001 C CNN
+F 3 "" H 6650 3700 60  0001 C CNN
+F 4 " " V 6692 3768 60  0000 L CNN "Field4"
+       1    6650 3700
+       0    1    1    0   
+$EndComp
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R11
+U 1 1 5DC9745B
+P 8850 2900
+F 0 "R11" V 8800 2950 45  0000 L CNN
+F 1 "10K" V 8900 2950 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 8850 3050 20  0001 C CNN
+F 3 "" H 8850 2900 60  0001 C CNN
+F 4 " " V 8892 2968 60  0000 L CNN "Field4"
+       1    8850 2900
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       8850 3100 8850 4150
+Wire Wire Line
+       3350 2550 3350 2700
+Connection ~ 3350 2700
+Wire Wire Line
+       4250 2850 4350 2850
+Wire Wire Line
+       4250 2700 4250 2850
+Wire Wire Line
+       3350 3000 3350 3400
+Wire Wire Line
+       3550 3300 3550 3550
+Wire Wire Line
+       2150 2650 2350 2650
+$Comp
+L power:+3.3V #PWR01
+U 1 1 5DF15658
+P 3350 2550
+F 0 "#PWR01" H 3350 2400 50  0001 C CNN
+F 1 "+3.3V" H 3365 2723 50  0000 C CNN
+F 2 "" H 3350 2550 50  0001 C CNN
+F 3 "" H 3350 2550 50  0001 C CNN
+       1    3350 2550
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       5350 4100 5350 4150
+Connection ~ 5350 4100
+Wire Wire Line
+       5100 4100 5350 4100
+Wire Wire Line
+       5100 3150 5100 4100
+Wire Wire Line
+       3200 2700 3350 2700
+$Comp
+L Regulator_Linear:MIC5205-3.3YM5 U2
+U 1 1 5DC01F70
+P 4650 2950
+F 0 "U2" H 4650 3292 50  0000 C CNN
+F 1 "MIC5205-3.3YM5" H 4650 3201 50  0000 C CNN
+F 2 "Package_TO_SOT_SMD:SOT-23-5" H 4650 3275 50  0001 C CNN
+F 3 "http://ww1.microchip.com/downloads/en/DeviceDoc/20005785A.pdf" H 4650 2950 50  0001 C CNN
+       1    4650 2950
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Capacitors:2.2UF-0805-25V-_+80_-20%_ C5
+U 1 1 5DD31F10
+P 5100 3050
+F 0 "C5" H 5208 3142 45  0000 L CNN
+F 1 ">2.2UF" H 5208 3058 45  0000 L CNN
+F 2 "Capacitors_SMD:C_0805" H 5100 3300 20  0001 C CNN
+F 3 "" H 5100 3050 50  0001 C CNN
+       1    5100 3050
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       4950 2850 5100 2850
+Wire Wire Line
+       3200 3400 3350 3400
+Wire Wire Line
+       3350 4100 3550 4100
+Connection ~ 3350 4100
+$Comp
+L power:GND #PWR02
+U 1 1 5DE31D47
+P 3350 4100
+F 0 "#PWR02" H 3350 3850 50  0001 C CNN
+F 1 "GND" H 3355 3927 50  0000 C CNN
+F 2 "" H 3350 4100 50  0001 C CNN
+F 3 "" H 3350 4100 50  0001 C CNN
+       1    3350 4100
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       3200 3200 3200 2700
+Wire Wire Line
+       2350 2650 2350 3200
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R4
+U 1 1 5DE819BA
+P 2150 2850
+F 0 "R4" V 2150 2900 45  0000 L CNN
+F 1 "470" V 2250 2900 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 2150 3000 20  0001 C CNN
+F 3 "" H 2150 2850 60  0001 C CNN
+F 4 " " V 2192 2918 60  0000 L CNN "Field4"
+       1    2150 2850
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       2350 3200 2400 3200
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R6
+U 1 1 5DE395AF
+P 3550 3750
+F 0 "R6" V 3500 3800 45  0000 L CNN
+F 1 "5K (200mA)" V 3600 3800 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 3550 3900 20  0001 C CNN
+F 3 "" H 3550 3750 60  0001 C CNN
+F 4 " " V 3592 3818 60  0000 L CNN "Field4"
+       1    3550 3750
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       3200 3300 3550 3300
+$Comp
+L Device:LED D1
+U 1 1 5DDB0404
+P 2150 3200
+F 0 "D1" V 2189 3083 50  0000 R CNN
+F 1 "LED" V 2098 3083 50  0000 R CNN
+F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 2150 3200 50  0001 C CNN
+F 3 "~" H 2150 3200 50  0001 C CNN
+       1    2150 3200
+       0    -1   -1   0   
+$EndComp
+$Comp
+L Device:Battery_Cell LiPo1
+U 1 1 5DCEE429
+P 3350 2900
+F 0 "LiPo1" H 3468 2996 50  0000 L CNN
+F 1 "Battery_Cell" H 3468 2905 50  0001 L CNN
+F 2 "Shalnoff:CONTACT_2_10mm" V 3350 2960 50  0001 C CNN
+F 3 "~" V 3350 2960 50  0001 C CNN
+       1    3350 2900
+       1    0    0    -1  
+$EndComp
+$Comp
+L power:GND #PWR04
+U 1 1 5DCD1CC1
+P 5350 4150
+F 0 "#PWR04" H 5350 3900 50  0001 C CNN
+F 1 "GND" H 5355 3977 50  0000 C CNN
+F 2 "" H 5350 4150 50  0001 C CNN
+F 3 "" H 5350 4150 50  0001 C CNN
+       1    5350 4150
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R8
+U 1 1 5DC67D82
+P 5350 3750
+F 0 "R8" V 5297 3818 45  0000 L CNN
+F 1 "RESISTOR0805" V 5339 3818 45  0001 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 5350 3900 20  0001 C CNN
+F 3 "" H 5350 3750 60  0001 C CNN
+F 4 " " V 5392 3818 60  0000 L CNN "Field4"
+       1    5350 3750
+       0    1    1    0   
+$EndComp
+$Comp
+L SparkFun-Switches:MOMENTARY-SWITCH-SPST-2-SMD-5.2MM S3
+U 1 1 5DC11587
+P 6250 3750
+F 0 "S3" H 6250 3995 45  0000 C CNN
+F 1 "MOMENTARY-SWITCH-SPST-2-SMD-5.2MM" H 6250 4101 45  0001 C CNN
+F 2 "Switches:TACTILE_SWITCH_SMD_5.2MM" H 6250 4000 20  0001 C CNN
+F 3 "" H 6250 3750 50  0001 C CNN
+F 4 "SWCH-08247" H 6250 4006 60  0001 C CNN "Field4"
+       1    6250 3750
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Switches:MOMENTARY-SWITCH-SPST-2-SMD-5.2MM S2
+U 1 1 5DC102D0
+P 5750 3150
+F 0 "S2" H 5750 3395 45  0000 C CNN
+F 1 "MOMENTARY-SWITCH-SPST-2-SMD-5.2MM" H 5750 3395 45  0001 C CNN
+F 2 "Switches:TACTILE_SWITCH_SMD_5.2MM" H 5750 3400 20  0001 C CNN
+F 3 "" H 5750 3150 50  0001 C CNN
+F 4 "SWCH-08247" H 5750 3406 60  0001 C CNN "Field4"
+       1    5750 3150
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-IC-Power:MCP73831 U1
+U 1 1 5DC01989
+P 2800 3300
+F 0 "U1" H 2800 3760 45  0000 C CNN
+F 1 "MCP73831" H 2800 3676 45  0000 C CNN
+F 2 "Silicon-Standard:SOT23-5" H 2800 3600 20  0001 C CNN
+F 3 "" H 2800 3300 60  0001 C CNN
+F 4 "IC-09995" H 2800 3581 60  0000 C CNN "Field4"
+       1    2800 3300
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Switches:SWITCH-SPDT-PTH-11.6X4.0MM S1
+U 1 1 5DFADD4B
+P 4000 3400
+F 0 "S1" H 4050 3586 45  0000 C CNN
+F 1 "SWITCH-SPDT-PTH-11.6X4.0MM" H 4050 3586 45  0001 C CNN
+F 2 "Switches:SWITCH_SPST_SMD_A" H 4000 3650 20  0001 C CNN
+F 3 "" H 4000 3400 50  0001 C CNN
+F 4 "SWCH-08261" H 4050 3597 60  0001 C CNN "Field4"
+       1    4000 3400
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       4300 3400 4300 2950
+Wire Wire Line
+       4300 2950 4350 2950
+Connection ~ 3550 4100
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R5
+U 1 1 5DFD1897
+P 2150 3600
+F 0 "R5" V 2100 3650 45  0000 L CNN
+F 1 "470" V 2200 3650 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 2150 3750 20  0001 C CNN
+F 3 "" H 2150 3600 60  0001 C CNN
+F 4 " " V 2192 3668 60  0000 L CNN "Field4"
+       1    2150 3600
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       2150 4100 2350 4100
+$Comp
+L Device:LED D2
+U 1 1 5DFD1F99
+P 2150 3950
+F 0 "D2" V 2189 3833 50  0000 R CNN
+F 1 "LED" V 2098 3833 50  0000 R CNN
+F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 2150 3950 50  0001 C CNN
+F 3 "~" H 2150 3950 50  0001 C CNN
+       1    2150 3950
+       0    -1   -1   0   
+$EndComp
+$Comp
+L dk_Embedded-Microcontrollers:ATTINY85-20SU U3
+U 1 1 5DFE55A4
+P 8550 3150
+F 0 "U3" H 8778 3053 60  0000 L CNN
+F 1 "ATTINY85-20SU" H 8200 3750 60  0000 L CNN
+F 2 "digikey-footprints:SOIC-8_W5.3mm" H 8750 3350 60  0001 L CNN
+F 3 "http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894" H 8750 3450 60  0001 L CNN
+F 4 "ATTINY85-20SU-ND" H 8750 3550 60  0001 L CNN "Digi-Key_PN"
+F 5 "ATTINY85-20SU" H 8750 3650 60  0001 L CNN "MPN"
+F 6 "Integrated Circuits (ICs)" H 8750 3750 60  0001 L CNN "Category"
+F 7 "Embedded - Microcontrollers" H 8750 3850 60  0001 L CNN "Family"
+F 8 "http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894" H 8750 3950 60  0001 L CNN "DK_Datasheet_Link"
+F 9 "/product-detail/en/microchip-technology/ATTINY85-20SU/ATTINY85-20SU-ND/735470" H 8750 4050 60  0001 L CNN "DK_Detail_Page"
+F 10 "IC MCU 8BIT 8KB FLASH 8SOIC" H 8750 4150 60  0001 L CNN "Description"
+F 11 "Microchip Technology" H 8750 4250 60  0001 L CNN "Manufacturer"
+F 12 "Active" H 8750 4350 60  0001 L CNN "Status"
+       1    8550 3150
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       5350 3950 5350 4100
+$Comp
+L power:+3.3V #PWR03
+U 1 1 5E0223B8
+P 5350 2600
+F 0 "#PWR03" H 5350 2450 50  0001 C CNN
+F 1 "+3.3V" H 5365 2773 50  0000 C CNN
+F 2 "" H 5350 2600 50  0001 C CNN
+F 3 "" H 5350 2600 50  0001 C CNN
+       1    5350 2600
+       1    0    0    -1  
+$EndComp
+$Comp
+L Device:LED D3
+U 1 1 5E0121D1
+P 6800 3150
+F 0 "D3" H 6350 3150 50  0000 C CNN
+F 1 "LED" H 6500 3150 50  0000 C CNN
+F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 6800 3150 50  0001 C CNN
+F 3 "~" H 6800 3150 50  0001 C CNN
+       1    6800 3150
+       1    0    0    1   
+$EndComp
+Wire Wire Line
+       6650 3150 6650 3500
+Text Label 8650 4150 0    50   ~ 0
+GND
+$Comp
+L SparkFun-Capacitors:2.2UF-0805-25V-_+80_-20%_ C3
+U 1 1 5E19AB03
+P 4150 3800
+F 0 "C3" H 4258 3892 45  0000 L CNN
+F 1 "4.7uF" H 4258 3808 45  0000 L CNN
+F 2 "Capacitors_SMD:C_0805" H 4150 4050 20  0001 C CNN
+F 3 "" H 4150 3800 50  0001 C CNN
+       1    4150 3800
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       8650 3750 8650 4050
+Wire Wire Line
+       8850 4150 9400 4150
+Wire Wire Line
+       8150 2700 8150 3050
+Wire Wire Line
+       8150 3050 8250 3050
+$Comp
+L SparkFun-Connectors:CONN_05X2NO_SILK J2
+U 1 1 5E21FA62
+P 6200 4750
+F 0 "J2" V 6200 5028 45  0000 L CNN
+F 1 "CONN_05X2NO_SILK" V 6189 5028 45  0001 L CNN
+F 2 "Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD" H 6200 5150 20  0001 C CNN
+F 3 "" H 6200 4750 50  0001 C CNN
+F 4 "XXX-00000" V 6284 5028 60  0001 L CNN "Field4"
+       1    6200 4750
+       -1   0    0    1   
+$EndComp
+Connection ~ 10300 3450
+Wire Wire Line
+       10000 3450 10000 3850
+Wire Wire Line
+       10300 3150 10300 3450
+Connection ~ 10000 3450
+Wire Wire Line
+       10000 3150 10000 3450
+$Comp
+L dk_Transistors-FETs-MOSFETs-Single:2N7002 Q1
+U 1 1 5E33C7DE
+P 7250 3750
+F 0 "Q1" H 7357 3803 60  0000 L CNN
+F 1 "2N7002" H 6750 3550 60  0000 L CNN
+F 2 "digikey-footprints:SOT-23-3" H 7450 3950 60  0001 L CNN
+F 3 "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" H 7450 4050 60  0001 L CNN
+F 4 "2N7002NCT-ND" H 7450 4150 60  0001 L CNN "Digi-Key_PN"
+F 5 "2N7002" H 7450 4250 60  0001 L CNN "MPN"
+F 6 "Discrete Semiconductor Products" H 7450 4350 60  0001 L CNN "Category"
+F 7 "Transistors - FETs, MOSFETs - Single" H 7450 4450 60  0001 L CNN "Family"
+F 8 "https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF" H 7450 4550 60  0001 L CNN "DK_Datasheet_Link"
+F 9 "/product-detail/en/on-semiconductor/2N7002/2N7002NCT-ND/244664" H 7450 4650 60  0001 L CNN "DK_Detail_Page"
+F 10 "MOSFET N-CH 60V 115MA SOT-23" H 7450 4750 60  0001 L CNN "Description"
+F 11 "ON Semiconductor" H 7450 4850 60  0001 L CNN "Manufacturer"
+F 12 "Active" H 7450 4950 60  0001 L CNN "Status"
+       1    7250 3750
+       -1   0    0    -1  
+$EndComp
+Wire Wire Line
+       8150 2700 8850 2700
+Connection ~ 8850 2700
+Wire Wire Line
+       6950 3150 7600 3150
+Wire Wire Line
+       7550 3850 7600 3850
+Wire Wire Line
+       7600 3850 7600 3150
+$Comp
+L dk_Alarms-Buzzers-and-Sirens:PS1240P02BT BZ1
+U 1 1 5E3EE254
+P 7100 4050
+F 0 "BZ1" H 7198 4281 60  0000 C CNN
+F 1 "PS1240P02BT" H 7198 4281 60  0001 C CNN
+F 2 "Capacitor_SMD:C_1812_4532Metric" H 7300 4250 60  0001 L CNN
+F 3 "https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf" H 7300 4350 60  0001 L CNN
+F 4 "445-2525-1-ND" H 7300 4450 60  0001 L CNN "Digi-Key_PN"
+F 5 "PS1240P02BT" H 7300 4550 60  0001 L CNN "MPN"
+F 6 "Audio Products" H 7300 4650 60  0001 L CNN "Category"
+F 7 "Alarms, Buzzers, and Sirens" H 7300 4750 60  0001 L CNN "Family"
+F 8 "https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf" H 7300 4850 60  0001 L CNN "DK_Datasheet_Link"
+F 9 "/product-detail/en/tdk-corporation/PS1240P02BT/445-2525-1-ND/935930" H 7300 4950 60  0001 L CNN "DK_Detail_Page"
+F 10 "AUDIO PIEZO TRANSDUCER 30V TH" H 7300 5050 60  0001 L CNN "Description"
+F 11 "TDK Corporation" H 7300 5150 60  0001 L CNN "Manufacturer"
+F 12 "Active" H 7300 5250 60  0001 L CNN "Status"
+       1    7100 4050
+       -1   0    0    -1  
+$EndComp
+Connection ~ 8650 4050
+Wire Wire Line
+       8650 4050 8650 4150
+Wire Wire Line
+       7250 2650 7250 3550
+$Comp
+L power:+3.3V #PWR05
+U 1 1 5E40377C
+P 7250 2650
+F 0 "#PWR05" H 7250 2500 50  0001 C CNN
+F 1 "+3.3V" H 7265 2823 50  0000 C CNN
+F 2 "" H 7250 2650 50  0001 C CNN
+F 3 "" H 7250 2650 50  0001 C CNN
+       1    7250 2650
+       1    0    0    -1  
+$EndComp
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R10
+U 1 1 5E410B16
+P 8050 3550
+F 0 "R10" H 8100 3650 45  0000 L CNN
+F 1 "10K" H 7900 3650 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 8050 3700 20  0001 C CNN
+F 3 "" H 8050 3550 60  0001 C CNN
+F 4 " " V 8092 3618 60  0000 L CNN "Field4"
+       1    8050 3550
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       1200 2950 1200 2650
+$Comp
+L Shalnoff:USB_A_SMT_MALE_PCB J1
+U 1 1 5DBC8501
+P 950 3100
+F 0 "J1" H 1128 3195 45  0000 L CNN
+F 1 "USB_A_SMT_MALE_PCB" H 1128 3111 45  0001 L CNN
+F 2 "Shalnoff:USB_A_SMT_MALE_PCB" H 950 3500 20  0001 C CNN
+F 3 "" H 950 3100 50  0001 C CNN
+F 4 "CONN-11499" H 1128 3016 60  0001 L CNN "Field4"
+       1    950  3100
+       -1   0    0    -1  
+$EndComp
+Connection ~ 2150 2650
+Connection ~ 2150 4100
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R3
+U 1 1 5DC811B8
+P 1950 3550
+F 0 "R3" V 2000 3600 45  0000 L CNN
+F 1 "68" V 2100 3600 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 1950 3700 20  0001 C CNN
+F 3 "" H 1950 3550 60  0001 C CNN
+F 4 " " V 1992 3618 60  0000 L CNN "Field4"
+       1    1950 3550
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       1200 3150 1750 3150
+Wire Wire Line
+       1750 3150 1750 3350
+Wire Wire Line
+       1950 3050 1950 3350
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R2
+U 1 1 5DCC28CC
+P 1950 2850
+F 0 "R2" V 1900 2650 45  0000 L CNN
+F 1 "2K2 (1K5)" V 2000 2450 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 1950 3000 20  0001 C CNN
+F 3 "" H 1950 2850 60  0001 C CNN
+F 4 " " V 1992 2918 60  0000 L CNN "Field4"
+       1    1950 2850
+       0    1    1    0   
+$EndComp
+Connection ~ 1950 2650
+Wire Wire Line
+       1950 2650 2150 2650
+Connection ~ 1950 3050
+Wire Wire Line
+       5350 4100 5550 4100
+Connection ~ 5550 4100
+Wire Wire Line
+       5550 4100 6050 4100
+Connection ~ 6050 4100
+Wire Wire Line
+       6050 4100 6650 4100
+Wire Wire Line
+       6450 4550 6450 3850
+Wire Wire Line
+       6450 4650 6550 4650
+Wire Wire Line
+       6550 4650 6550 4400
+Wire Wire Line
+       6550 4400 1950 4400
+Wire Wire Line
+       5950 4650 1750 4650
+Wire Wire Line
+       5950 3250 5950 3150
+Connection ~ 5950 3250
+Wire Wire Line
+       5550 3150 5550 3250
+Connection ~ 5550 3250
+Wire Wire Line
+       5550 3250 5550 4100
+Wire Wire Line
+       5950 3250 5950 4550
+Wire Wire Line
+       1200 4100 1400 4100
+Wire Wire Line
+       1200 3050 1950 3050
+Wire Wire Line
+       1200 2650 1400 2650
+Wire Wire Line
+       1400 3350 1400 2650
+Connection ~ 1400 2650
+Wire Wire Line
+       1400 2650 1950 2650
+Connection ~ 1400 4100
+Wire Wire Line
+       1400 4100 2150 4100
+Wire Wire Line
+       1200 3250 1200 4100
+Wire Wire Line
+       1400 3650 1400 4100
+Wire Wire Line
+       1750 3750 1750 4650
+Wire Wire Line
+       1950 3750 1950 4400
+Wire Wire Line
+       2150 3400 2400 3400
+Wire Wire Line
+       2150 3400 2150 3350
+Connection ~ 2150 3400
+Wire Wire Line
+       3350 3400 3350 4100
+Connection ~ 3350 3400
+Wire Wire Line
+       3550 3950 3550 4100
+Wire Wire Line
+       4650 3250 4650 4100
+Wire Wire Line
+       10000 2850 10000 3150
+Wire Wire Line
+       10300 3450 10300 3650
+Wire Wire Line
+       9400 3700 9400 3650
+Wire Wire Line
+       9400 3650 9800 3650
+Connection ~ 10300 3650
+Wire Wire Line
+       10300 3650 10300 3850
+Wire Wire Line
+       9400 4100 9400 4150
+Connection ~ 9400 4150
+Wire Wire Line
+       5950 4750 5800 4750
+Connection ~ 9800 3650
+Wire Wire Line
+       9800 3650 10300 3650
+$Comp
+L SparkFun-Capacitors:2.2UF-0805-25V-_+80_-20%_ C4
+U 1 1 5DE5BCDF
+P 4950 3550
+F 0 "C4" H 5058 3642 45  0000 L CNN
+F 1 "[470pF]" H 5058 3558 45  0000 L CNN
+F 2 "Capacitors_SMD:C_0805" H 4950 3800 20  0001 C CNN
+F 3 "" H 4950 3550 50  0001 C CNN
+       1    4950 3550
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       4950 3350 4950 2950
+Wire Wire Line
+       4950 3650 4950 4100
+Wire Wire Line
+       4950 4100 4650 4100
+Connection ~ 4650 4100
+Wire Wire Line
+       3350 2700 3800 2700
+Wire Wire Line
+       3550 4100 3800 4100
+Wire Wire Line
+       4100 3400 4300 3400
+Wire Wire Line
+       3800 3300 3800 2700
+Connection ~ 3800 2700
+Wire Wire Line
+       3800 2700 4150 2700
+Wire Wire Line
+       3800 3500 3800 4100
+Connection ~ 3800 4100
+Wire Wire Line
+       3800 4100 4150 4100
+Wire Wire Line
+       4150 3600 4150 2700
+Connection ~ 4150 2700
+Wire Wire Line
+       4150 2700 4250 2700
+Wire Wire Line
+       4150 3900 4150 4100
+Connection ~ 4150 4100
+Wire Wire Line
+       4150 4100 4650 4100
+$Comp
+L SparkFun-Capacitors:2.2UF-0805-25V-_+80_-20%_ C2
+U 1 1 5DEE36ED
+P 2350 3850
+F 0 "C2" H 2458 3942 45  0000 L CNN
+F 1 "4.7uF" H 2458 3858 45  0000 L CNN
+F 2 "Capacitors_SMD:C_0805" H 2350 4100 20  0001 C CNN
+F 3 "" H 2350 3850 50  0001 C CNN
+       1    2350 3850
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       2350 3650 2350 3200
+Connection ~ 2350 3200
+Wire Wire Line
+       2350 3950 2350 4100
+Connection ~ 2350 4100
+Wire Wire Line
+       2350 4100 3350 4100
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R1
+U 1 1 5DC80BBF
+P 1750 3550
+F 0 "R1" V 1800 3600 45  0000 L CNN
+F 1 "68" V 1900 3600 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 1750 3700 20  0001 C CNN
+F 3 "" H 1750 3550 60  0001 C CNN
+F 4 " " V 1792 3618 60  0000 L CNN "Field4"
+       1    1750 3550
+       0    1    1    0   
+$EndComp
+Connection ~ 7850 2850
+Wire Wire Line
+       7850 2850 8650 2850
+Wire Wire Line
+       5100 2850 7850 2850
+Connection ~ 5100 2850
+Wire Wire Line
+       5950 3250 8250 3250
+Wire Wire Line
+       6450 3450 8250 3450
+Wire Wire Line
+       6450 4750 9600 4750
+Wire Wire Line
+       7200 3950 7250 3950
+Wire Wire Line
+       7200 4050 8650 4050
+Wire Wire Line
+       9100 2700 9100 4000
+Wire Wire Line
+       8850 2700 9100 2700
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R7
+U 1 1 5DC63B88
+P 5350 2800
+F 0 "R7" V 5297 2868 45  0000 L CNN
+F 1 "RESISTOR0805" V 5339 2868 45  0001 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 5350 2950 20  0001 C CNN
+F 3 "" H 5350 2800 60  0001 C CNN
+F 4 " " V 5392 2868 60  0000 L CNN "Field4"
+       1    5350 2800
+       0    1    1    0   
+$EndComp
+Wire Wire Line
+       5350 3350 8250 3350
+Connection ~ 5350 3350
+Wire Wire Line
+       5350 3350 5350 3550
+Wire Wire Line
+       5350 3000 5350 3350
+Wire Wire Line
+       5800 5150 9800 5150
+Wire Wire Line
+       5800 4750 5800 5150
+Wire Wire Line
+       9800 3650 9800 5150
+Wire Wire Line
+       9600 3150 9600 4750
+Wire Wire Line
+       9600 2650 9600 3150
+Connection ~ 9600 3150
+Wire Wire Line
+       6050 3850 6050 4100
+Wire Wire Line
+       6450 3450 6450 3750
+Wire Wire Line
+       6450 3750 6450 3850
+Connection ~ 6450 3750
+Connection ~ 6450 3850
+Wire Wire Line
+       6050 3750 6050 3850
+Connection ~ 6050 3850
+Wire Wire Line
+       6650 3900 6650 4100
+$Comp
+L Shalnoff:10UF-POLAR-0603-6.3V-20%_TANT_ C1
+U 1 1 5DCC90B4
+P 1400 3450
+F 0 "C1" H 1528 3442 45  0000 L CNN
+F 1 "10uF" H 1528 3358 45  0000 L CNN
+F 2 "Capacitor_Tantalum_SMD:CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder" H 1400 3700 20  0001 C CNN
+F 3 "" H 1400 3450 50  0001 C CNN
+       1    1400 3450
+       1    0    0    -1  
+$EndComp
+$Comp
+L Device:LED D12
+U 1 1 5DE5D3FE
+P 10150 5050
+F 0 "D12" V 10097 5128 50  0000 L CNN
+F 1 "LED" V 10188 5128 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 10150 5050 50  0001 C CNN
+F 3 "~" H 10150 5050 50  0001 C CNN
+       1    10150 5050
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       10000 4750 10000 5050
+Connection ~ 10000 4750
+Wire Wire Line
+       10300 4750 10300 5050
+Connection ~ 10300 4750
+Text Label 8650 2850 0    50   ~ 0
+VCC
+Text Label 7250 2650 0    50   ~ 0
+3.3v
+Connection ~ 7600 3150
+Wire Wire Line
+       7950 3150 7600 3150
+Wire Wire Line
+       7850 3550 7850 2850
+$Comp
+L Jumper:SolderJumper_2_Bridged JP1
+U 1 1 5DF65FF2
+P 8100 3150
+F 0 "JP1" H 8100 3263 50  0000 C CNN
+F 1 "SolderJumper_2_Bridged" H 8100 3264 50  0001 C CNN
+F 2 "Shalnoff:JP_0805" H 8100 3150 50  0001 C CNN
+F 3 "~" H 8100 3150 50  0001 C CNN
+       1    8100 3150
+       1    0    0    -1  
+$EndComp
+$Comp
+L Device:LED D13
+U 1 1 5DFB9F90
+P 6800 3000
+F 0 "D13" H 6350 3000 50  0000 C CNN
+F 1 "LED" H 6550 3000 50  0000 C CNN
+F 2 "LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 6800 3000 50  0001 C CNN
+F 3 "~" H 6800 3000 50  0001 C CNN
+       1    6800 3000
+       1    0    0    1   
+$EndComp
+Wire Wire Line
+       6650 3150 6650 3000
+Connection ~ 6650 3150
+Wire Wire Line
+       6950 3000 7600 3000
+Wire Wire Line
+       7600 3000 7600 3150
+$Comp
+L SparkFun-DiscreteSemi:MOSFET-NCH-AO3404A Q2
+U 1 1 5DD0A422
+P 9300 3900
+F 0 "Q2" H 9464 3900 45  0000 L CNN
+F 1 "MOSFET-NCH-AO3404A" H 9465 3911 45  0001 L CNN
+F 2 "Silicon-Standard:SOT23-3" H 9300 4150 20  0001 C CNN
+F 3 "" H 9300 3900 50  0001 C CNN
+F 4 "TRANS-12988" H 9465 3858 60  0001 L CNN "Field4"
+       1    9300 3900
+       1    0    0    -1  
+$EndComp
+Text Label 9100 4000 0    50   ~ 0
+Gate
+Text Label 9400 3700 0    50   ~ 0
+Drain
+$EndSCHEMATC
diff --git a/HARDWARE/lightsticks.xml b/HARDWARE/lightsticks.xml
new file mode 100644 (file)
index 0000000..8dc3b73
--- /dev/null
@@ -0,0 +1,996 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<export version="D">
+  <design>
+    <source>/home/dmitry/Projects/DAILYBEER.EU/LIGHTSTICKS/HARDWARE/lightsticks.sch</source>
+    <date>Fri 16 Oct 2020 06:47:53 PM CEST</date>
+    <tool>Eeschema 5.1.4-e60b266~84~ubuntu18.04.1</tool>
+    <sheet number="1" name="/" tstamps="/">
+      <title_block>
+        <title/>
+        <company/>
+        <rev/>
+        <date/>
+        <source>lightsticks.sch</source>
+        <comment number="1" value=""/>
+        <comment number="2" value=""/>
+        <comment number="3" value=""/>
+        <comment number="4" value=""/>
+      </title_block>
+    </sheet>
+  </design>
+  <components>
+    <comp ref="D4">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DBBA50D</tstamp>
+    </comp>
+    <comp ref="D5">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DBBA842</tstamp>
+    </comp>
+    <comp ref="D6">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DBBAA77</tstamp>
+    </comp>
+    <comp ref="D7">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DBBAD6A</tstamp>
+    </comp>
+    <comp ref="D8">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DBBB05D</tstamp>
+    </comp>
+    <comp ref="D9">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DBBB3AD</tstamp>
+    </comp>
+    <comp ref="D10">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DBBB570</tstamp>
+    </comp>
+    <comp ref="D11">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DBBE1B7</tstamp>
+    </comp>
+    <comp ref="R12">
+      <value>1R</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC54CBB</tstamp>
+    </comp>
+    <comp ref="R9">
+      <value>220R</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC8FBDE</tstamp>
+    </comp>
+    <comp ref="R11">
+      <value>10K</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC9745B</tstamp>
+    </comp>
+    <comp ref="U2">
+      <value>MIC5205-3.3YM5</value>
+      <footprint>Package_TO_SOT_SMD:SOT-23-5</footprint>
+      <datasheet>http://ww1.microchip.com/downloads/en/DeviceDoc/20005785A.pdf</datasheet>
+      <libsource lib="Regulator_Linear" part="MIC5205-3.3YM5" description="150mA low dropout linear regulator, fixed 3.3V output, SOT-23-5"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC01F70</tstamp>
+    </comp>
+    <comp ref="C5">
+      <value>&gt;2.2UF</value>
+      <footprint>Capacitors_SMD:C_0805</footprint>
+      <libsource lib="SparkFun-Capacitors" part="2.2UF-0805-25V-_+80_-20%_" description="2.2uF ceramic capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field."/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DD31F10</tstamp>
+    </comp>
+    <comp ref="R4">
+      <value>470</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DE819BA</tstamp>
+    </comp>
+    <comp ref="R6">
+      <value>5K (200mA)</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DE395AF</tstamp>
+    </comp>
+    <comp ref="D1">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DDB0404</tstamp>
+    </comp>
+    <comp ref="LiPo1">
+      <value>Battery_Cell</value>
+      <footprint>Shalnoff:CONTACT_2_10mm</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="Battery_Cell" description="Single-cell battery"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DCEE429</tstamp>
+    </comp>
+    <comp ref="R8">
+      <value>RESISTOR0805</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC67D82</tstamp>
+    </comp>
+    <comp ref="S3">
+      <value>MOMENTARY-SWITCH-SPST-2-SMD-5.2MM</value>
+      <footprint>Switches:TACTILE_SWITCH_SMD_5.2MM</footprint>
+      <fields>
+        <field name="Field4">SWCH-08247</field>
+      </fields>
+      <libsource lib="SparkFun-Switches" part="MOMENTARY-SWITCH-SPST-2-SMD-5.2MM" description="Momentary Switch (Pushbutton) - SPST - Two Circuits Normally-open (NO) SPST momentary switches (buttons, pushbuttons). Schematic symbol includes two switch circuits. &lt;h4&gt;Variants&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;SMD-4.6MMX2.8MM&lt;/b&gt; -  4.60mm x 2.80mm Tactile Momentary Button Switch  - Used on &lt;a href=&quot;https://www.sparkfun.com/products/13664&quot;&gt;SparkFun SAMD21 Mini Breakout&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;SMD-5.2MM&lt;/b&gt; - &lt;a href=&quot;https://www.sparkfun.com/products/8720&quot;&gt;Mini Pushbutton Switch - SMD&lt;/a&gt; - Used on &lt;a href=&quot;https://www.sparkfun.com/products/11114&quot;&gt;Arduino Pro Mini&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC11587</tstamp>
+    </comp>
+    <comp ref="S2">
+      <value>MOMENTARY-SWITCH-SPST-2-SMD-5.2MM</value>
+      <footprint>Switches:TACTILE_SWITCH_SMD_5.2MM</footprint>
+      <fields>
+        <field name="Field4">SWCH-08247</field>
+      </fields>
+      <libsource lib="SparkFun-Switches" part="MOMENTARY-SWITCH-SPST-2-SMD-5.2MM" description="Momentary Switch (Pushbutton) - SPST - Two Circuits Normally-open (NO) SPST momentary switches (buttons, pushbuttons). Schematic symbol includes two switch circuits. &lt;h4&gt;Variants&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;SMD-4.6MMX2.8MM&lt;/b&gt; -  4.60mm x 2.80mm Tactile Momentary Button Switch  - Used on &lt;a href=&quot;https://www.sparkfun.com/products/13664&quot;&gt;SparkFun SAMD21 Mini Breakout&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;SMD-5.2MM&lt;/b&gt; - &lt;a href=&quot;https://www.sparkfun.com/products/8720&quot;&gt;Mini Pushbutton Switch - SMD&lt;/a&gt; - Used on &lt;a href=&quot;https://www.sparkfun.com/products/11114&quot;&gt;Arduino Pro Mini&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC102D0</tstamp>
+    </comp>
+    <comp ref="U1">
+      <value>MCP73831</value>
+      <footprint>Silicon-Standard:SOT23-5</footprint>
+      <fields>
+        <field name="Field4">IC-09995</field>
+      </fields>
+      <libsource lib="SparkFun-IC-Power" part="MCP73831" description="MCP73831T Li-Ion, Li-Pol Controller Miniature single cell, fully integrated Li-Ion, Li-polymer charge management controller&lt;li&gt;&lt;a href= http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf &gt;Datasheet&lt;/a&gt;&lt;/li&gt; &lt;b&gt;SparkFun Products:&lt;/b&gt;&lt;ul&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/13907 &gt;SparkFun ESP32 Thing&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/14001 &gt;SparkFun 9DoF Razor IMU M0&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC01989</tstamp>
+    </comp>
+    <comp ref="S1">
+      <value>SWITCH-SPDT-PTH-11.6X4.0MM</value>
+      <footprint>Switches:SWITCH_SPST_SMD_A</footprint>
+      <fields>
+        <field name="Field4">SWCH-08261</field>
+      </fields>
+      <libsource lib="SparkFun-Switches" part="SWITCH-SPDT-PTH-11.6X4.0MM" description="Single Pole, Double Throw (SPDT) Switch Single-pole, double-throw (SPDT) switch. &lt;h4&gt;Variant Overview&lt;/h4&gt;&lt;h5&gt;SMD-AYZ0202&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/597&quot;&gt;Surface Mount DPDT Switch&lt;/a&gt; (COM-00597)&lt;/li&gt;&lt;li&gt;Used on e.g. &lt;a href=&quot;https://www.sparkfun.com/products/12049&quot;&gt;LilyPad Arduino USB - ATmega32U4 Board&lt;/a&gt;&lt;/ul&gt;&lt;h5&gt;PTH-11.6X4.0MM&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/102&quot;&gt;SPDT Mini Power Switch&lt;/a&gt; (COM-00102)&lt;/li&gt;&lt;li&gt;Used on e.g. &lt;a href=&quot;https://www.sparkfun.com/products/10547&quot;&gt;SparkFun Simon Says - Through-Hole Soldering Kit&lt;/a&gt; (KIT-10547)&lt;/li&gt;&lt;/ul&gt;&lt;h5&gt;PTH-11.6X4.0MM-KIT&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;KIT version of SPDT Mini Power Switch - Simplifies soldering by removing tStop of switch pins - only one side can be soldered.&lt;/li&gt;&lt;/ul&gt;&lt;h5&gt;PTH-11.6X4.0MM-LOCK&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;LOCK version of SPDT Mini Power Switch - Offset pins hold switch in place for easier soldering.&lt;/li&gt;&lt;/ul&gt;&lt;h5&gt;SMD-RIGHT-ANGLE&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/10860&quot;&gt;Surface Mount Right Angle Switch&lt;/a&gt; (COM-10860)&lt;/li&gt;&lt;li&gt;Used on e.g. &lt;a href=&quot;https://www.sparkfun.com/products/13231&quot;&gt;SparkFun ESP8266 Thing&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DFADD4B</tstamp>
+    </comp>
+    <comp ref="R5">
+      <value>470</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DFD1897</tstamp>
+    </comp>
+    <comp ref="D2">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DFD1F99</tstamp>
+    </comp>
+    <comp ref="U3">
+      <value>ATTINY85-20SU</value>
+      <footprint>digikey-footprints:SOIC-8_W5.3mm</footprint>
+      <datasheet>http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894</datasheet>
+      <fields>
+        <field name="Category">Integrated Circuits (ICs)</field>
+        <field name="DK_Datasheet_Link">http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894</field>
+        <field name="DK_Detail_Page">/product-detail/en/microchip-technology/ATTINY85-20SU/ATTINY85-20SU-ND/735470</field>
+        <field name="Description">IC MCU 8BIT 8KB FLASH 8SOIC</field>
+        <field name="Digi-Key_PN">ATTINY85-20SU-ND</field>
+        <field name="Family">Embedded - Microcontrollers</field>
+        <field name="MPN">ATTINY85-20SU</field>
+        <field name="Manufacturer">Microchip Technology</field>
+        <field name="Status">Active</field>
+      </fields>
+      <libsource lib="dk_Embedded-Microcontrollers" part="ATTINY85-20SU" description="IC MCU 8BIT 8KB FLASH 8SOIC"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DFE55A4</tstamp>
+    </comp>
+    <comp ref="D3">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5E0121D1</tstamp>
+    </comp>
+    <comp ref="C3">
+      <value>4.7uF</value>
+      <footprint>Capacitors_SMD:C_0805</footprint>
+      <libsource lib="SparkFun-Capacitors" part="2.2UF-0805-25V-_+80_-20%_" description="2.2uF ceramic capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field."/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5E19AB03</tstamp>
+    </comp>
+    <comp ref="J2">
+      <value>CONN_05X2NO_SILK</value>
+      <footprint>Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD</footprint>
+      <fields>
+        <field name="Field4">XXX-00000</field>
+      </fields>
+      <libsource lib="SparkFun-Connectors" part="CONN_05X2NO_SILK" description="Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections  For AVR SPI programming port, see special device with nice symbol: &quot;AVR_SPI_PROG_5x2.dev&quot;  &lt;b&gt;You can populate with any combo of single row headers, but if you'd like an exact match, check these:&lt;/b&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/778&quot;&gt; 2x5 AVR ICSP Male Header&lt;/a&gt; (PRT-00778)&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/8506&quot;&gt; 2x5 Pin Shrouded Header&lt;/a&gt; (PRT-08506)&lt;/li&gt;&lt;/ul&gt; &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/116&quot;&gt; Break Away Headers - Straight&lt;/a&gt; (PRT-00116)&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/553&quot;&gt; Break Away Male Headers - Right Angle&lt;/a&gt; (PRT-00553)&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/115&quot;&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/117&quot;&gt; Break Away Headers - Machine Pin&lt;/a&gt; (PRT-00117)&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/743&quot;&gt; Break Away Female Headers - Swiss Machine Pin&lt;/a&gt; (PRT-00743)&lt;/li&gt;&lt;/ul&gt; &lt;b&gt;Special note: the shrouded connector mates well with our 5x2 ribbon cables:&lt;/b&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.sparkfun.com/products/8535&quot;&gt; 2x5 Pin IDC Ribbon Cable&lt;/a&gt; (PRT-08535)&lt;/li&gt;&lt;/ul&gt;"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5E21FA62</tstamp>
+    </comp>
+    <comp ref="Q1">
+      <value>2N7002</value>
+      <footprint>digikey-footprints:SOT-23-3</footprint>
+      <datasheet>https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF</datasheet>
+      <fields>
+        <field name="Category">Discrete Semiconductor Products</field>
+        <field name="DK_Datasheet_Link">https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF</field>
+        <field name="DK_Detail_Page">/product-detail/en/on-semiconductor/2N7002/2N7002NCT-ND/244664</field>
+        <field name="Description">MOSFET N-CH 60V 115MA SOT-23</field>
+        <field name="Digi-Key_PN">2N7002NCT-ND</field>
+        <field name="Family">Transistors - FETs, MOSFETs - Single</field>
+        <field name="MPN">2N7002</field>
+        <field name="Manufacturer">ON Semiconductor</field>
+        <field name="Status">Active</field>
+      </fields>
+      <libsource lib="dk_Transistors-FETs-MOSFETs-Single" part="2N7002" description="MOSFET N-CH 60V 115MA SOT-23"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5E33C7DE</tstamp>
+    </comp>
+    <comp ref="BZ1">
+      <value>PS1240P02BT</value>
+      <footprint>Capacitor_SMD:C_1812_4532Metric</footprint>
+      <datasheet>https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf</datasheet>
+      <fields>
+        <field name="Category">Audio Products</field>
+        <field name="DK_Datasheet_Link">https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf</field>
+        <field name="DK_Detail_Page">/product-detail/en/tdk-corporation/PS1240P02BT/445-2525-1-ND/935930</field>
+        <field name="Description">AUDIO PIEZO TRANSDUCER 30V TH</field>
+        <field name="Digi-Key_PN">445-2525-1-ND</field>
+        <field name="Family">Alarms, Buzzers, and Sirens</field>
+        <field name="MPN">PS1240P02BT</field>
+        <field name="Manufacturer">TDK Corporation</field>
+        <field name="Status">Active</field>
+      </fields>
+      <libsource lib="dk_Alarms-Buzzers-and-Sirens" part="PS1240P02BT" description="AUDIO PIEZO TRANSDUCER 30V TH"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5E3EE254</tstamp>
+    </comp>
+    <comp ref="R10">
+      <value>10K</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5E410B16</tstamp>
+    </comp>
+    <comp ref="J1">
+      <value>USB_A_SMT_MALE_PCB</value>
+      <footprint>Shalnoff:USB_A_SMT_MALE_PCB</footprint>
+      <fields>
+        <field name="Field4">CONN-11499</field>
+      </fields>
+      <libsource lib="Shalnoff" part="USB_A_SMT_MALE_PCB" description="USB-A Connector Male and female variants, as well as PTH and SMT variants SparkFun Products:&lt;ul&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/11697 &gt;SparkFun XBee Explorer Dongle&lt;/a&gt; PTH Male&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/12924 &gt;SparkFun MicroView-USB Programmer&lt;/a&gt; SMT Male&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/12700 &gt;SparkFun USB Type A Female Breakout&lt;/a&gt; SMT Female&lt;/li&gt;&lt;/ul&gt;"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DBC8501</tstamp>
+    </comp>
+    <comp ref="R3">
+      <value>68</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC811B8</tstamp>
+    </comp>
+    <comp ref="R2">
+      <value>2K2 (1K5)</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DCC28CC</tstamp>
+    </comp>
+    <comp ref="C4">
+      <value>[470pF]</value>
+      <footprint>Capacitors_SMD:C_0805</footprint>
+      <libsource lib="SparkFun-Capacitors" part="2.2UF-0805-25V-_+80_-20%_" description="2.2uF ceramic capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field."/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DE5BCDF</tstamp>
+    </comp>
+    <comp ref="C2">
+      <value>4.7uF</value>
+      <footprint>Capacitors_SMD:C_0805</footprint>
+      <libsource lib="SparkFun-Capacitors" part="2.2UF-0805-25V-_+80_-20%_" description="2.2uF ceramic capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field."/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DEE36ED</tstamp>
+    </comp>
+    <comp ref="R1">
+      <value>68</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC80BBF</tstamp>
+    </comp>
+    <comp ref="R7">
+      <value>RESISTOR0805</value>
+      <footprint>Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <fields>
+        <field name="Field4"> </field>
+      </fields>
+      <libsource lib="SparkFun-Resistors" part="RESISTOR0805" description="Generic Resistor Package"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DC63B88</tstamp>
+    </comp>
+    <comp ref="C1">
+      <value>10uF</value>
+      <footprint>Capacitor_Tantalum_SMD:CP_EIA-3216-12_Kemet-S_Pad1.58x1.35mm_HandSolder</footprint>
+      <libsource lib="Shalnoff" part="10UF-POLAR-0603-6.3V-20%_TANT_" description="10.0uF polarized capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field."/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DCC90B4</tstamp>
+    </comp>
+    <comp ref="D12">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DE5D3FE</tstamp>
+    </comp>
+    <comp ref="JP1">
+      <value>SolderJumper_2_Bridged</value>
+      <footprint>Shalnoff:JP_0805</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Jumper" part="SolderJumper_2_Bridged" description="Solder Jumper, 2-pole, closed/bridged"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DF65FF2</tstamp>
+    </comp>
+    <comp ref="D13">
+      <value>LED</value>
+      <footprint>LED_SMD:LED_0805_2012Metric_Pad1.15x1.40mm_HandSolder</footprint>
+      <datasheet>~</datasheet>
+      <libsource lib="Device" part="LED" description="Light emitting diode"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DFB9F90</tstamp>
+    </comp>
+    <comp ref="Q2">
+      <value>MOSFET-NCH-AO3404A</value>
+      <footprint>Silicon-Standard:SOT23-3</footprint>
+      <fields>
+        <field name="Field4">TRANS-12988</field>
+      </fields>
+      <libsource lib="SparkFun-DiscreteSemi" part="MOSFET-NCH-AO3404A" description="N-channel MOSFETs Voltage controlled devices that allow control of high current outputs. &lt;b&gt;SparkFun Products:&lt;/b&gt;&lt;ul&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/13261 &gt;SparkFun OpenScale&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/12651 &gt;SparkFun Digital Sandbox&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/10182 &gt;SparkFun Monster Moto Shield&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/11214 &gt;SparkFun MOSFET Power Controller&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;"/>
+      <sheetpath names="/" tstamps="/"/>
+      <tstamp>5DD0A422</tstamp>
+    </comp>
+  </components>
+  <libparts>
+    <libpart lib="Device" part="Battery_Cell">
+      <description>Single-cell battery</description>
+      <docs>~</docs>
+      <fields>
+        <field name="Reference">BT</field>
+        <field name="Value">Battery_Cell</field>
+      </fields>
+      <pins>
+        <pin num="1" name="+" type="passive"/>
+        <pin num="2" name="-" type="passive"/>
+      </pins>
+    </libpart>
+    <libpart lib="Device" part="LED">
+      <description>Light emitting diode</description>
+      <docs>~</docs>
+      <footprints>
+        <fp>LED*</fp>
+        <fp>LED_SMD:*</fp>
+        <fp>LED_THT:*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">D</field>
+        <field name="Value">LED</field>
+      </fields>
+      <pins>
+        <pin num="1" name="K" type="passive"/>
+        <pin num="2" name="A" type="passive"/>
+      </pins>
+    </libpart>
+    <libpart lib="Jumper" part="SolderJumper_2_Bridged">
+      <description>Solder Jumper, 2-pole, closed/bridged</description>
+      <docs>~</docs>
+      <footprints>
+        <fp>SolderJumper*Bridged*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">JP</field>
+        <field name="Value">SolderJumper_2_Bridged</field>
+      </fields>
+      <pins>
+        <pin num="1" name="A" type="passive"/>
+        <pin num="2" name="B" type="passive"/>
+      </pins>
+    </libpart>
+    <libpart lib="Regulator_Linear" part="AP131-15">
+      <aliases>
+        <alias>AP131-18</alias>
+        <alias>AP131-20</alias>
+        <alias>AP131-25</alias>
+        <alias>AP131-28</alias>
+        <alias>AP131-29</alias>
+        <alias>AP131-30</alias>
+        <alias>AP131-33</alias>
+        <alias>AP131-35</alias>
+        <alias>MIC5205-2.5YM5</alias>
+        <alias>MIC5205-2.7YM5</alias>
+        <alias>MIC5205-2.8YM5</alias>
+        <alias>MIC5205-2.85YM5</alias>
+        <alias>MIC5205-2.9YM5</alias>
+        <alias>MIC5205-3.0YM5</alias>
+        <alias>MIC5205-3.1YM5</alias>
+        <alias>MIC5205-3.2YM5</alias>
+        <alias>MIC5205-3.3YM5</alias>
+        <alias>MIC5205-3.6YM5</alias>
+        <alias>MIC5205-3.8YM5</alias>
+        <alias>MIC5205-4.0YM5</alias>
+        <alias>MIC5205-5.0YM5</alias>
+        <alias>MIC5219-2.5YM5</alias>
+        <alias>MIC5219-2.6YM5</alias>
+        <alias>MIC5219-2.7YM5</alias>
+        <alias>MIC5219-2.8YM5</alias>
+        <alias>MIC5219-2.85YM5</alias>
+        <alias>MIC5219-2.9YM5</alias>
+        <alias>MIC5219-3.0YM5</alias>
+        <alias>MIC5219-3.1YM5</alias>
+        <alias>MIC5219-3.3YM5</alias>
+        <alias>MIC5219-3.6YM5</alias>
+        <alias>MIC5219-5.0YM5</alias>
+        <alias>SPX3819M5-L-1-2</alias>
+        <alias>SPX3819M5-L-1-5</alias>
+        <alias>SPX3819M5-L-1-8</alias>
+        <alias>SPX3819M5-L-2-5</alias>
+        <alias>SPX3819M5-L-3-0</alias>
+        <alias>SPX3819M5-L-3-3</alias>
+        <alias>SPX3819M5-L-5-0</alias>
+      </aliases>
+      <description>300mA low dropout linear regulator, shutdown pin, 1.5V fixed positive output, SOT-23-5 package</description>
+      <docs>http://www.diodes.com/_files/datasheets/AP131.pdf</docs>
+      <footprints>
+        <fp>SOT?23*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">U</field>
+        <field name="Value">AP131-15</field>
+        <field name="Footprint">Package_TO_SOT_SMD:SOT-23-5</field>
+      </fields>
+      <pins>
+        <pin num="1" name="IN" type="power_in"/>
+        <pin num="2" name="GND" type="power_in"/>
+        <pin num="3" name="EN" type="input"/>
+        <pin num="4" name="BP" type="input"/>
+        <pin num="5" name="OUT" type="power_out"/>
+      </pins>
+    </libpart>
+    <libpart lib="Shalnoff" part="10UF-POLAR-0603-6.3V-20%_TANT_">
+      <description>10.0uF polarized capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field.</description>
+      <footprints>
+        <fp>*0603-POLAR*</fp>
+        <fp>*EIA3216*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">C</field>
+        <field name="Value">10UF-POLAR-0603-6.3V-20%_TANT_</field>
+        <field name="Footprint">0603-POLAR</field>
+      </fields>
+      <pins>
+        <pin num="1" name="+" type="passive"/>
+        <pin num="2" name="-" type="passive"/>
+      </pins>
+    </libpart>
+    <libpart lib="Shalnoff" part="USB_A_SMT_MALE_PCB">
+      <description>USB-A Connector Male and female variants, as well as PTH and SMT variants SparkFun Products:&lt;ul&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/11697 &gt;SparkFun XBee Explorer Dongle&lt;/a&gt; PTH Male&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/12924 &gt;SparkFun MicroView-USB Programmer&lt;/a&gt; SMT Male&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/12700 &gt;SparkFun USB Type A Female Breakout&lt;/a&gt; SMT Female&lt;/li&gt;&lt;/ul&gt;</description>
+      <footprints>
+        <fp>*USB-A-SMT-MALE*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">J</field>
+        <field name="Value">USB_A_SMT_MALE_PCB</field>
+        <field name="Footprint">USB-A-SMT-MALE</field>
+        <field name="Field4">CONN-11499</field>
+      </fields>
+      <pins>
+        <pin num="1" name="VBUS" type="power_in"/>
+        <pin num="2" name="D-" type="BiDi"/>
+        <pin num="3" name="D+" type="BiDi"/>
+        <pin num="4" name="GND" type="power_in"/>
+      </pins>
+    </libpart>
+    <libpart lib="SparkFun-Capacitors" part="2.2UF-0805-25V-_+80_-20%_">
+      <description>2.2uF ceramic capacitors A capacitor is a passive two-terminal electrical component used to store electrical energy temporarily in an electric field.</description>
+      <footprints>
+        <fp>*0805*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">C</field>
+        <field name="Value">2.2UF-0805-25V-_+80_-20%_</field>
+        <field name="Footprint">0805</field>
+      </fields>
+      <pins>
+        <pin num="1" name="1" type="passive"/>
+        <pin num="2" name="2" type="passive"/>
+      </pins>
+    </libpart>
+    <libpart lib="SparkFun-Connectors" part="CONN_05X2NO_SILK">
+      <description>Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections  For AVR SPI programming port, see special device with nice symbol: "AVR_SPI_PROG_5x2.dev"  &lt;b&gt;You can populate with any combo of single row headers, but if you'd like an exact match, check these:&lt;/b&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/778"&gt; 2x5 AVR ICSP Male Header&lt;/a&gt; (PRT-00778)&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/8506"&gt; 2x5 Pin Shrouded Header&lt;/a&gt; (PRT-08506)&lt;/li&gt;&lt;/ul&gt; &lt;b&gt;On any of the 0.1 inch spaced packages, you can populate with these:&lt;/b&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/116"&gt; Break Away Headers - Straight&lt;/a&gt; (PRT-00116)&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/553"&gt; Break Away Male Headers - Right Angle&lt;/a&gt; (PRT-00553)&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/115"&gt; Female Headers&lt;/a&gt; (PRT-00115)&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/117"&gt; Break Away Headers - Machine Pin&lt;/a&gt; (PRT-00117)&lt;/li&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/743"&gt; Break Away Female Headers - Swiss Machine Pin&lt;/a&gt; (PRT-00743)&lt;/li&gt;&lt;/ul&gt; &lt;b&gt;Special note: the shrouded connector mates well with our 5x2 ribbon cables:&lt;/b&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/8535"&gt; 2x5 Pin IDC Ribbon Cable&lt;/a&gt; (PRT-08535)&lt;/li&gt;&lt;/ul&gt;</description>
+      <footprints>
+        <fp>*2X5_NOSILK*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">J</field>
+        <field name="Value">CONN_05X2NO_SILK</field>
+        <field name="Footprint">2X5_NOSILK</field>
+        <field name="Field4">XXX-00000</field>
+      </fields>
+      <pins>
+        <pin num="1" name="1" type="passive"/>
+        <pin num="2" name="2" type="passive"/>
+        <pin num="3" name="3" type="passive"/>
+        <pin num="4" name="4" type="passive"/>
+        <pin num="5" name="5" type="passive"/>
+        <pin num="6" name="6" type="passive"/>
+        <pin num="7" name="7" type="passive"/>
+        <pin num="8" name="8" type="passive"/>
+        <pin num="9" name="9" type="passive"/>
+        <pin num="10" name="10" type="passive"/>
+      </pins>
+    </libpart>
+    <libpart lib="SparkFun-DiscreteSemi" part="MOSFET-NCH-AO3404A">
+      <description>N-channel MOSFETs Voltage controlled devices that allow control of high current outputs. &lt;b&gt;SparkFun Products:&lt;/b&gt;&lt;ul&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/13261 &gt;SparkFun OpenScale&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/12651 &gt;SparkFun Digital Sandbox&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/10182 &gt;SparkFun Monster Moto Shield&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/11214 &gt;SparkFun MOSFET Power Controller&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
+      <footprints>
+        <fp>*SOT23-3*</fp>
+        <fp>*SOT23-3*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">Q</field>
+        <field name="Value">MOSFET-NCH-AO3404A</field>
+        <field name="Footprint">SOT23-3</field>
+        <field name="Field4">TRANS-12988</field>
+      </fields>
+      <pins>
+        <pin num="1" name="G" type="BiDi"/>
+        <pin num="2" name="S" type="BiDi"/>
+        <pin num="3" name="D" type="BiDi"/>
+      </pins>
+    </libpart>
+    <libpart lib="SparkFun-IC-Power" part="MCP73831">
+      <description>MCP73831T Li-Ion, Li-Pol Controller Miniature single cell, fully integrated Li-Ion, Li-polymer charge management controller&lt;li&gt;&lt;a href= http://ww1.microchip.com/downloads/en/DeviceDoc/20001984g.pdf &gt;Datasheet&lt;/a&gt;&lt;/li&gt; &lt;b&gt;SparkFun Products:&lt;/b&gt;&lt;ul&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/13907 &gt;SparkFun ESP32 Thing&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href= https://www.sparkfun.com/products/14001 &gt;SparkFun 9DoF Razor IMU M0&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
+      <footprints>
+        <fp>*SOT23-5*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">U</field>
+        <field name="Value">MCP73831</field>
+        <field name="Footprint">SOT23-5</field>
+        <field name="Field4">IC-09995</field>
+      </fields>
+      <pins>
+        <pin num="1" name="STAT" type="output"/>
+        <pin num="2" name="VSS" type="power_in"/>
+        <pin num="3" name="VBAT" type="power_in"/>
+        <pin num="4" name="VIN" type="power_in"/>
+        <pin num="5" name="PROG" type="input"/>
+      </pins>
+    </libpart>
+    <libpart lib="SparkFun-Resistors" part="RESISTOR0805">
+      <description>Generic Resistor Package</description>
+      <footprints>
+        <fp>*0805*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">R</field>
+        <field name="Value">RESISTOR0805</field>
+        <field name="Footprint">0805</field>
+        <field name="Field4"> </field>
+      </fields>
+      <pins>
+        <pin num="1" name="1" type="passive"/>
+        <pin num="2" name="2" type="passive"/>
+      </pins>
+    </libpart>
+    <libpart lib="SparkFun-Switches" part="MOMENTARY-SWITCH-SPST-2-SMD-5.2MM">
+      <description>Momentary Switch (Pushbutton) - SPST - Two Circuits Normally-open (NO) SPST momentary switches (buttons, pushbuttons). Schematic symbol includes two switch circuits. &lt;h4&gt;Variants&lt;/h4&gt;&lt;ul&gt;&lt;li&gt;&lt;b&gt;SMD-4.6MMX2.8MM&lt;/b&gt; -  4.60mm x 2.80mm Tactile Momentary Button Switch  - Used on &lt;a href="https://www.sparkfun.com/products/13664"&gt;SparkFun SAMD21 Mini Breakout&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;b&gt;SMD-5.2MM&lt;/b&gt; - &lt;a href="https://www.sparkfun.com/products/8720"&gt;Mini Pushbutton Switch - SMD&lt;/a&gt; - Used on &lt;a href="https://www.sparkfun.com/products/11114"&gt;Arduino Pro Mini&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
+      <footprints>
+        <fp>*TACTILE_SWITCH_SMD_5.2MM*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">S</field>
+        <field name="Value">MOMENTARY-SWITCH-SPST-2-SMD-5.2MM</field>
+        <field name="Footprint">TACTILE_SWITCH_SMD_5.2MM</field>
+        <field name="Field4">SWCH-08247</field>
+      </fields>
+      <pins>
+        <pin num="1" name="1" type="passive"/>
+        <pin num="2" name="2" type="passive"/>
+        <pin num="3" name="3" type="passive"/>
+        <pin num="4" name="4" type="passive"/>
+      </pins>
+    </libpart>
+    <libpart lib="SparkFun-Switches" part="SWITCH-SPDT-PTH-11.6X4.0MM">
+      <description>Single Pole, Double Throw (SPDT) Switch Single-pole, double-throw (SPDT) switch. &lt;h4&gt;Variant Overview&lt;/h4&gt;&lt;h5&gt;SMD-AYZ0202&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/597"&gt;Surface Mount DPDT Switch&lt;/a&gt; (COM-00597)&lt;/li&gt;&lt;li&gt;Used on e.g. &lt;a href="https://www.sparkfun.com/products/12049"&gt;LilyPad Arduino USB - ATmega32U4 Board&lt;/a&gt;&lt;/ul&gt;&lt;h5&gt;PTH-11.6X4.0MM&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/102"&gt;SPDT Mini Power Switch&lt;/a&gt; (COM-00102)&lt;/li&gt;&lt;li&gt;Used on e.g. &lt;a href="https://www.sparkfun.com/products/10547"&gt;SparkFun Simon Says - Through-Hole Soldering Kit&lt;/a&gt; (KIT-10547)&lt;/li&gt;&lt;/ul&gt;&lt;h5&gt;PTH-11.6X4.0MM-KIT&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;KIT version of SPDT Mini Power Switch - Simplifies soldering by removing tStop of switch pins - only one side can be soldered.&lt;/li&gt;&lt;/ul&gt;&lt;h5&gt;PTH-11.6X4.0MM-LOCK&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;LOCK version of SPDT Mini Power Switch - Offset pins hold switch in place for easier soldering.&lt;/li&gt;&lt;/ul&gt;&lt;h5&gt;SMD-RIGHT-ANGLE&lt;/h5&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://www.sparkfun.com/products/10860"&gt;Surface Mount Right Angle Switch&lt;/a&gt; (COM-10860)&lt;/li&gt;&lt;li&gt;Used on e.g. &lt;a href="https://www.sparkfun.com/products/13231"&gt;SparkFun ESP8266 Thing&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;</description>
+      <footprints>
+        <fp>*SWITCH_SPDT_PTH_11.6X4.0MM*</fp>
+        <fp>*SWITCH_SPDT_PTH_11.6X4.0MM_KIT*</fp>
+        <fp>*SWITCH_SPDT_PTH_11.6X4.0MM_LOCK*</fp>
+        <fp>*SWITCH_DPDT_SMD_AYZ0202*</fp>
+        <fp>*SWITCH_SPST_SMD_A*</fp>
+      </footprints>
+      <fields>
+        <field name="Reference">S</field>
+        <field name="Value">SWITCH-SPDT-PTH-11.6X4.0MM</field>
+        <field name="Footprint">SWITCH_SPDT_PTH_11.6X4.0MM</field>
+        <field name="Field4">SWCH-08261</field>
+      </fields>
+      <pins>
+        <pin num="1" name="O" type="passive"/>
+        <pin num="2" name="P" type="passive"/>
+        <pin num="3" name="S" type="passive"/>
+      </pins>
+    </libpart>
+    <libpart lib="dk_Alarms-Buzzers-and-Sirens" part="PS1240P02BT">
+      <description>AUDIO PIEZO TRANSDUCER 30V TH</description>
+      <docs>https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf</docs>
+      <fields>
+        <field name="Reference">BZ</field>
+        <field name="Value">PS1240P02BT</field>
+        <field name="Footprint">digikey-footprints:Piezo_Transducer_THT_PS1240P02BT</field>
+        <field name="Datasheet">https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf</field>
+        <field name="Digi-Key_PN">445-2525-1-ND</field>
+        <field name="MPN">PS1240P02BT</field>
+        <field name="Category">Audio Products</field>
+        <field name="Family">Alarms, Buzzers, and Sirens</field>
+        <field name="DK_Datasheet_Link">https://product.tdk.com/info/en/catalog/datasheets/piezoelectronic_buzzer_ps_en.pdf</field>
+        <field name="DK_Detail_Page">/product-detail/en/tdk-corporation/PS1240P02BT/445-2525-1-ND/935930</field>
+        <field name="Description">AUDIO PIEZO TRANSDUCER 30V TH</field>
+        <field name="Manufacturer">TDK Corporation</field>
+        <field name="Status">Active</field>
+      </fields>
+      <pins>
+        <pin num="1" name="~" type="input"/>
+        <pin num="2" name="~" type="input"/>
+      </pins>
+    </libpart>
+    <libpart lib="dk_Embedded-Microcontrollers" part="ATTINY85-20SU">
+      <description>IC MCU 8BIT 8KB FLASH 8SOIC</description>
+      <docs>http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894</docs>
+      <fields>
+        <field name="Reference">U</field>
+        <field name="Value">ATTINY85-20SU</field>
+        <field name="Footprint">digikey-footprints:SOIC-8_W5.3mm</field>
+        <field name="Datasheet">http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894</field>
+        <field name="Digi-Key_PN">ATTINY85-20SU-ND</field>
+        <field name="MPN">ATTINY85-20SU</field>
+        <field name="Category">Integrated Circuits (ICs)</field>
+        <field name="Family">Embedded - Microcontrollers</field>
+        <field name="DK_Datasheet_Link">http://www.microchip.com/mymicrochip/filehandler.aspx?ddocname=en589894</field>
+        <field name="DK_Detail_Page">/product-detail/en/microchip-technology/ATTINY85-20SU/ATTINY85-20SU-ND/735470</field>
+        <field name="Description">IC MCU 8BIT 8KB FLASH 8SOIC</field>
+        <field name="Manufacturer">Microchip Technology</field>
+        <field name="Status">Active</field>
+      </fields>
+      <pins>
+        <pin num="1" name="PB5" type="BiDi"/>
+        <pin num="2" name="PB3" type="BiDi"/>
+        <pin num="3" name="PB4" type="BiDi"/>
+        <pin num="4" name="GND" type="power_in"/>
+        <pin num="5" name="PB0" type="BiDi"/>
+        <pin num="6" name="PB1" type="BiDi"/>
+        <pin num="7" name="PB2" type="BiDi"/>
+        <pin num="8" name="VCC" type="power_in"/>
+      </pins>
+    </libpart>
+    <libpart lib="dk_Transistors-FETs-MOSFETs-Single" part="2N7002">
+      <description>MOSFET N-CH 60V 115MA SOT-23</description>
+      <docs>https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF</docs>
+      <fields>
+        <field name="Reference">Q</field>
+        <field name="Value">2N7002</field>
+        <field name="Footprint">digikey-footprints:SOT-23-3</field>
+        <field name="Datasheet">https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF</field>
+        <field name="Digi-Key_PN">2N7002NCT-ND</field>
+        <field name="MPN">2N7002</field>
+        <field name="Category">Discrete Semiconductor Products</field>
+        <field name="Family">Transistors - FETs, MOSFETs - Single</field>
+        <field name="DK_Datasheet_Link">https://www.onsemi.com/pub/Collateral/NDS7002A-D.PDF</field>
+        <field name="DK_Detail_Page">/product-detail/en/on-semiconductor/2N7002/2N7002NCT-ND/244664</field>
+        <field name="Description">MOSFET N-CH 60V 115MA SOT-23</field>
+        <field name="Manufacturer">ON Semiconductor</field>
+        <field name="Status">Active</field>
+      </fields>
+      <pins>
+        <pin num="1" name="G" type="BiDi"/>
+        <pin num="2" name="S" type="BiDi"/>
+        <pin num="3" name="D" type="BiDi"/>
+      </pins>
+    </libpart>
+  </libparts>
+  <libraries>
+    <library logical="Device">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/kicad-symbols/Device.lib</uri>
+    </library>
+    <library logical="Jumper">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/kicad-symbols/Jumper.lib</uri>
+    </library>
+    <library logical="Regulator_Linear">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/kicad-symbols/Regulator_Linear.lib</uri>
+    </library>
+    <library logical="Shalnoff">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/Shalnoff/Shalnoff.lib</uri>
+    </library>
+    <library logical="SparkFun-Capacitors">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-Capacitors.lib</uri>
+    </library>
+    <library logical="SparkFun-Connectors">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-Connectors.lib</uri>
+    </library>
+    <library logical="SparkFun-DiscreteSemi">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-DiscreteSemi.lib</uri>
+    </library>
+    <library logical="SparkFun-IC-Power">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-IC-Power.lib</uri>
+    </library>
+    <library logical="SparkFun-Resistors">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-Resistors.lib</uri>
+    </library>
+    <library logical="SparkFun-Switches">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-Switches.lib</uri>
+    </library>
+    <library logical="dk_Alarms-Buzzers-and-Sirens">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/digikey-kicad-library/digikey-symbols/dk_Alarms-Buzzers-and-Sirens.lib</uri>
+    </library>
+    <library logical="dk_Embedded-Microcontrollers">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/digikey-kicad-library/digikey-symbols/dk_Embedded-Microcontrollers.lib</uri>
+    </library>
+    <library logical="dk_Transistors-FETs-MOSFETs-Single">
+      <uri>/home/dmitry/Bin/ELECTRONICS/KiCad5/digikey-kicad-library/digikey-symbols/dk_Transistors-FETs-MOSFETs-Single.lib</uri>
+    </library>
+  </libraries>
+  <nets>
+    <net code="1" name="Net-(D1-Pad1)">
+      <node ref="R5" pin="1"/>
+      <node ref="D1" pin="1"/>
+      <node ref="U1" pin="1"/>
+    </net>
+    <net code="2" name="Net-(J2-Pad7)">
+      <node ref="R3" pin="2"/>
+      <node ref="J2" pin="7"/>
+    </net>
+    <net code="3" name="Net-(J2-Pad8)">
+      <node ref="R1" pin="2"/>
+      <node ref="J2" pin="8"/>
+    </net>
+    <net code="4" name="Net-(J2-Pad10)">
+      <node ref="J2" pin="10"/>
+      <node ref="U3" pin="7"/>
+      <node ref="S2" pin="4"/>
+      <node ref="S2" pin="3"/>
+    </net>
+    <net code="5" name="Net-(C4-Pad1)">
+      <node ref="U2" pin="4"/>
+      <node ref="C4" pin="1"/>
+    </net>
+    <net code="6" name="Net-(J1-Pad3)">
+      <node ref="J1" pin="3"/>
+      <node ref="R1" pin="1"/>
+    </net>
+    <net code="7" name="Net-(J1-Pad2)">
+      <node ref="R2" pin="2"/>
+      <node ref="R3" pin="1"/>
+      <node ref="J1" pin="2"/>
+    </net>
+    <net code="8" name="Net-(C1-Pad1)">
+      <node ref="R4" pin="1"/>
+      <node ref="U1" pin="4"/>
+      <node ref="J1" pin="1"/>
+      <node ref="R2" pin="1"/>
+      <node ref="C2" pin="1"/>
+      <node ref="C1" pin="1"/>
+    </net>
+    <net code="9" name="Net-(R10-Pad1)">
+      <node ref="U3" pin="1"/>
+      <node ref="R10" pin="1"/>
+    </net>
+    <net code="10" name="+3V3">
+      <node ref="U1" pin="3"/>
+      <node ref="S1" pin="3"/>
+      <node ref="LiPo1" pin="1"/>
+      <node ref="J2" pin="5"/>
+      <node ref="Q1" pin="3"/>
+      <node ref="C3" pin="1"/>
+      <node ref="R12" pin="2"/>
+      <node ref="R7" pin="1"/>
+      <node ref="U2" pin="1"/>
+    </net>
+    <net code="11" name="Net-(J2-Pad9)">
+      <node ref="J2" pin="9"/>
+      <node ref="S3" pin="4"/>
+      <node ref="U3" pin="3"/>
+      <node ref="S3" pin="3"/>
+    </net>
+    <net code="12" name="Net-(JP1-Pad2)">
+      <node ref="U3" pin="6"/>
+      <node ref="JP1" pin="2"/>
+    </net>
+    <net code="13" name="Net-(BZ1-Pad1)">
+      <node ref="Q1" pin="2"/>
+      <node ref="BZ1" pin="1"/>
+    </net>
+    <net code="14" name="Net-(R7-Pad2)">
+      <node ref="R7" pin="2"/>
+      <node ref="R8" pin="1"/>
+      <node ref="U3" pin="2"/>
+    </net>
+    <net code="15" name="/VCC">
+      <node ref="U3" pin="8"/>
+      <node ref="U2" pin="5"/>
+      <node ref="C5" pin="1"/>
+      <node ref="R10" pin="2"/>
+    </net>
+    <net code="16" name="Net-(R6-Pad1)">
+      <node ref="R6" pin="1"/>
+      <node ref="U1" pin="5"/>
+    </net>
+    <net code="17" name="GND">
+      <node ref="S3" pin="1"/>
+      <node ref="U1" pin="2"/>
+      <node ref="U2" pin="2"/>
+      <node ref="C5" pin="2"/>
+      <node ref="LiPo1" pin="2"/>
+      <node ref="S3" pin="2"/>
+      <node ref="S1" pin="1"/>
+      <node ref="J1" pin="4"/>
+      <node ref="R6" pin="2"/>
+      <node ref="D2" pin="1"/>
+      <node ref="C4" pin="2"/>
+      <node ref="C3" pin="2"/>
+      <node ref="R8" pin="2"/>
+      <node ref="S2" pin="2"/>
+      <node ref="S2" pin="1"/>
+      <node ref="U3" pin="4"/>
+      <node ref="Q2" pin="2"/>
+      <node ref="C1" pin="2"/>
+      <node ref="C2" pin="2"/>
+      <node ref="R9" pin="2"/>
+      <node ref="R11" pin="2"/>
+      <node ref="BZ1" pin="2"/>
+    </net>
+    <net code="18" name="Net-(D13-Pad1)">
+      <node ref="R9" pin="1"/>
+      <node ref="D13" pin="1"/>
+      <node ref="D3" pin="1"/>
+    </net>
+    <net code="19" name="Net-(D1-Pad2)">
+      <node ref="D1" pin="2"/>
+      <node ref="R4" pin="2"/>
+    </net>
+    <net code="20" name="Net-(S1-Pad2)">
+      <node ref="U2" pin="3"/>
+      <node ref="S1" pin="2"/>
+    </net>
+    <net code="21" name="/Drain">
+      <node ref="D4" pin="1"/>
+      <node ref="J2" pin="6"/>
+      <node ref="Q2" pin="3"/>
+      <node ref="D12" pin="1"/>
+      <node ref="D6" pin="1"/>
+      <node ref="D7" pin="1"/>
+      <node ref="D9" pin="1"/>
+      <node ref="D10" pin="1"/>
+      <node ref="D11" pin="1"/>
+      <node ref="D8" pin="1"/>
+      <node ref="D5" pin="1"/>
+    </net>
+    <net code="22" name="Net-(D10-Pad2)">
+      <node ref="D12" pin="2"/>
+      <node ref="D4" pin="2"/>
+      <node ref="D5" pin="2"/>
+      <node ref="D6" pin="2"/>
+      <node ref="D10" pin="2"/>
+      <node ref="D7" pin="2"/>
+      <node ref="D8" pin="2"/>
+      <node ref="D9" pin="2"/>
+      <node ref="R12" pin="1"/>
+      <node ref="D11" pin="2"/>
+    </net>
+    <net code="23" name="Net-(J2-Pad2)">
+      <node ref="J2" pin="2"/>
+    </net>
+    <net code="24" name="Net-(J2-Pad1)">
+      <node ref="J2" pin="1"/>
+    </net>
+    <net code="25" name="/Gate">
+      <node ref="Q2" pin="1"/>
+      <node ref="R11" pin="1"/>
+      <node ref="U3" pin="5"/>
+    </net>
+    <net code="26" name="Net-(J2-Pad3)">
+      <node ref="J2" pin="3"/>
+    </net>
+    <net code="27" name="Net-(D13-Pad2)">
+      <node ref="D3" pin="2"/>
+      <node ref="Q1" pin="1"/>
+      <node ref="D13" pin="2"/>
+      <node ref="JP1" pin="1"/>
+    </net>
+    <net code="28" name="Net-(J2-Pad4)">
+      <node ref="J2" pin="4"/>
+    </net>
+    <net code="29" name="Net-(D2-Pad2)">
+      <node ref="R5" pin="2"/>
+      <node ref="D2" pin="2"/>
+    </net>
+  </nets>
+</export>
diff --git a/HARDWARE/lightsticks_extender-cache.lib b/HARDWARE/lightsticks_extender-cache.lib
new file mode 100644 (file)
index 0000000..16ed4a0
--- /dev/null
@@ -0,0 +1,79 @@
+EESchema-LIBRARY Version 2.4
+#encoding utf-8
+#
+# Device_LED
+#
+DEF Device_LED D 0 40 N N 1 F N
+F0 "D" 0 100 50 H V C CNN
+F1 "Device_LED" 0 -100 50 H V C CNN
+F2 "" 0 0 50 H I C CNN
+F3 "" 0 0 50 H I C CNN
+$FPLIST
+ LED*
+ LED_SMD:*
+ LED_THT:*
+$ENDFPLIST
+DRAW
+P 2 0 1 8 -50 -50 -50 50 N
+P 2 0 1 0 -50 0 50 0 N
+P 4 0 1 8 50 -50 50 50 -50 0 50 -50 N
+P 5 0 1 0 -120 -30 -180 -90 -150 -90 -180 -90 -180 -60 N
+P 5 0 1 0 -70 -30 -130 -90 -100 -90 -130 -90 -130 -60 N
+X K 1 -150 0 100 R 50 50 1 1 P
+X A 2 150 0 100 L 50 50 1 1 P
+ENDDRAW
+ENDDEF
+#
+# SparkFun-Connectors_CONN_05X2NO_SILK
+#
+DEF SparkFun-Connectors_CONN_05X2NO_SILK J 0 40 N Y 1 L N
+F0 "J" -150 300 45 H V L BNN
+F1 "SparkFun-Connectors_CONN_05X2NO_SILK" -150 -350 45 H V L BNN
+F2 "2X5_NOSILK" 0 400 20 H I C CNN
+F3 "" 0 0 50 H I C CNN
+F4 "XXX-00000" 0 450 60 H V C CNN
+$FPLIST
+ *2X5_NOSILK*
+$ENDFPLIST
+DRAW
+S 150 -250 -150 250 0 1 0 f
+X 1 1 -250 200 100 R 40 40 1 1 P
+X 10 10 250 -200 100 L 40 40 1 1 P
+X 2 2 250 200 100 L 40 40 1 1 P
+X 3 3 -250 100 100 R 40 40 1 1 P
+X 4 4 250 100 100 L 40 40 1 1 P
+X 5 5 -250 0 100 R 40 40 1 1 P
+X 6 6 250 0 100 L 40 40 1 1 P
+X 7 7 -250 -100 100 R 40 40 1 1 P
+X 8 8 250 -100 100 L 40 40 1 1 P
+X 9 9 -250 -200 100 R 40 40 1 1 P
+ENDDRAW
+ENDDEF
+#
+# SparkFun-Resistors_RESISTOR0805
+#
+DEF SparkFun-Resistors_RESISTOR0805 R 0 40 N N 1 L N
+F0 "R" -200 50 45 H V L BNN
+F1 "SparkFun-Resistors_RESISTOR0805" -200 -150 45 H V L BNN
+F2 "0805" 0 150 20 H I C CNN
+F3 "" 0 0 60 H I C CNN
+F4 " " 0 200 60 H V C CNN
+$FPLIST
+ *0805*
+$ENDFPLIST
+DRAW
+P 2 1 0 0 -100 0 -85 40 N
+P 2 1 0 0 -85 40 -60 -40 N
+P 2 1 0 0 -60 -40 -35 40 N
+P 2 1 0 0 -35 40 -10 -40 N
+P 2 1 0 0 -10 -40 15 40 N
+P 2 1 0 0 15 40 40 -40 N
+P 2 1 0 0 40 -40 65 40 N
+P 2 1 0 0 65 40 90 -40 N
+P 2 1 0 0 90 -40 100 0 N
+X 1 1 -200 0 100 R 40 40 1 1 P
+X 2 2 200 0 100 L 40 40 1 1 P
+ENDDRAW
+ENDDEF
+#
+#End Library
diff --git a/HARDWARE/lightsticks_extender.kicad_pcb b/HARDWARE/lightsticks_extender.kicad_pcb
new file mode 100644 (file)
index 0000000..a424c67
--- /dev/null
@@ -0,0 +1,1125 @@
+(kicad_pcb (version 20171130) (host pcbnew 5.1.4-e60b266~84~ubuntu18.04.1)
+
+  (general
+    (thickness 1.6)
+    (drawings 10)
+    (tracks 82)
+    (zones 0)
+    (modules 13)
+    (nets 10)
+  )
+
+  (page A4)
+  (layers
+    (0 F.Cu signal)
+    (31 B.Cu signal)
+    (32 B.Adhes user)
+    (33 F.Adhes user)
+    (34 B.Paste user)
+    (35 F.Paste user)
+    (36 B.SilkS user)
+    (37 F.SilkS user)
+    (38 B.Mask user)
+    (39 F.Mask user)
+    (40 Dwgs.User user)
+    (41 Cmts.User user)
+    (42 Eco1.User user)
+    (43 Eco2.User user)
+    (44 Edge.Cuts user)
+    (45 Margin user)
+    (46 B.CrtYd user)
+    (47 F.CrtYd user)
+    (48 B.Fab user)
+    (49 F.Fab user)
+  )
+
+  (setup
+    (last_trace_width 0.25)
+    (user_trace_width 0.5)
+    (trace_clearance 0.2)
+    (zone_clearance 0.508)
+    (zone_45_only no)
+    (trace_min 0.2)
+    (via_size 0.8)
+    (via_drill 0.4)
+    (via_min_size 0.4)
+    (via_min_drill 0.3)
+    (user_via 0.8 0.4)
+    (uvia_size 0.3)
+    (uvia_drill 0.1)
+    (uvias_allowed no)
+    (uvia_min_size 0.2)
+    (uvia_min_drill 0.1)
+    (edge_width 0.05)
+    (segment_width 0.2)
+    (pcb_text_width 0.3)
+    (pcb_text_size 1.5 1.5)
+    (mod_edge_width 0.12)
+    (mod_text_size 1 1)
+    (mod_text_width 0.15)
+    (pad_size 1.524 1.524)
+    (pad_drill 0.762)
+    (pad_to_mask_clearance 0.051)
+    (solder_mask_min_width 0.25)
+    (aux_axis_origin 0 0)
+    (visible_elements FFFFFF7F)
+    (pcbplotparams
+      (layerselection 0x010fc_ffffffff)
+      (usegerberextensions false)
+      (usegerberattributes false)
+      (usegerberadvancedattributes false)
+      (creategerberjobfile false)
+      (excludeedgelayer true)
+      (linewidth 0.100000)
+      (plotframeref false)
+      (viasonmask false)
+      (mode 1)
+      (useauxorigin false)
+      (hpglpennumber 1)
+      (hpglpenspeed 20)
+      (hpglpendiameter 15.000000)
+      (psnegative false)
+      (psa4output false)
+      (plotreference true)
+      (plotvalue true)
+      (plotinvisibletext false)
+      (padsonsilk false)
+      (subtractmaskfromsilk false)
+      (outputformat 1)
+      (mirror false)
+      (drillshape 1)
+      (scaleselection 1)
+      (outputdirectory ""))
+  )
+
+  (net 0 "")
+  (net 1 "Net-(D10-Pad2)")
+  (net 2 "Net-(D10-Pad1)")
+  (net 3 "Net-(J1-Pad1)")
+  (net 4 "Net-(J1-Pad2)")
+  (net 5 "Net-(J1-Pad7)")
+  (net 6 "Net-(J1-Pad10)")
+  (net 7 /+3v3)
+  (net 8 "Net-(J1-Pad3)")
+  (net 9 "Net-(J1-Pad4)")
+
+  (net_class Default "This is the default net class."
+    (clearance 0.2)
+    (trace_width 0.25)
+    (via_dia 0.8)
+    (via_drill 0.4)
+    (uvia_dia 0.3)
+    (uvia_drill 0.1)
+    (add_net /+3v3)
+    (add_net "Net-(D10-Pad1)")
+    (add_net "Net-(D10-Pad2)")
+    (add_net "Net-(J1-Pad1)")
+    (add_net "Net-(J1-Pad10)")
+    (add_net "Net-(J1-Pad2)")
+    (add_net "Net-(J1-Pad3)")
+    (add_net "Net-(J1-Pad4)")
+    (add_net "Net-(J1-Pad7)")
+  )
+
+  (module Shalnoff:dailybeer_logo_bw_inv (layer B.Cu) (tedit 5DC7F1D4) (tstamp 5DC893BD)
+    (at 106 104 90)
+    (descr "Imported from dailybeer_logo_bw_inv.svg")
+    (tags svg2mod)
+    (attr smd)
+    (fp_text reference "dailybeer.eu logo" (at 0 6.248126 270) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_text value G*** (at 0 -6.248126 270) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_poly (pts (xy 1.196341 0.053649) (xy 1.196341 -0.834253) (xy 1.420996 -0.773906) (xy 1.580348 -0.61495)
+      (xy 1.640907 -0.390509) (xy 1.580348 -0.16596) (xy 1.420996 -0.006805) (xy 1.196341 0.053649)) (layer B.SilkS) (width 0))
+    (fp_poly (pts (xy -0.000235 3.2) (xy -1.633016 1.624102) (xy -1.452523 1.763627) (xy -1.239451 1.853558)
+      (xy -1.002293 1.885377) (xy -0.828243 1.867767) (xy -0.660992 1.816566) (xy -0.552016 2.03165)
+      (xy -0.366164 2.176625) (xy -0.131051 2.229867) (xy 0.052892 2.197738) (xy 0.213326 2.107254)
+      (xy 0.336021 1.966485) (xy 0.525485 2.115832) (xy 0.760725 2.169263) (xy 0.966499 2.129032)
+      (xy 1.137016 2.01896) (xy 1.255977 1.854513) (xy 1.307083 1.651156) (xy 1.49951 1.53493)
+      (xy 1.627132 1.355275) (xy 1.67344 1.135329) (xy 1.636451 0.938148) (xy 1.534795 0.77218)
+      (xy 1.381594 0.652108) (xy 1.189973 0.592617) (xy 1.189973 0.492371) (xy 1.421725 0.461311)
+      (xy 1.629886 0.373628) (xy 1.806187 0.237567) (xy 1.942356 0.061374) (xy 2.030122 -0.146707)
+      (xy 2.061216 -0.37843) (xy 2.030119 -0.610152) (xy 1.942351 -0.818232) (xy 1.806183 -0.994426)
+      (xy 1.629884 -1.130487) (xy 1.421724 -1.218171) (xy 1.189973 -1.249231) (xy 1.189973 -1.574127)
+      (xy 1.156416 -1.782207) (xy 1.062944 -1.962312) (xy 0.920359 -2.103948) (xy 0.739461 -2.196625)
+      (xy 0.531051 -2.229849) (xy 0.478677 -2.229849) (xy 0.460331 -2.229849) (xy -0.709397 -2.229849)
+      (xy -0.726677 -2.229849) (xy -0.744811 -2.229849) (xy -0.953214 -2.196625) (xy -1.134103 -2.103948)
+      (xy -1.276681 -1.962312) (xy -1.370146 -1.782207) (xy -1.403701 -1.574127) (xy -1.403701 -1.310746)
+      (xy -1.169035 -1.310746) (xy -1.169035 -1.528561) (xy -1.106069 -1.762006) (xy -0.940427 -1.927651)
+      (xy -0.706987 -1.990618) (xy -0.67104 -1.990618) (xy 0.443605 -1.99063) (xy 0.516459 -1.99063)
+      (xy 0.749314 -1.927664) (xy 0.913861 -1.762019) (xy 0.976235 -1.528574) (xy 0.976235 0.436311)
+      (xy 0.443552 0.436311) (xy -0.301931 0.436779) (xy -0.337344 0.393941) (xy -0.328811 0.349739)
+      (xy -0.328811 -0.799482) (xy -0.376619 -0.915037) (xy -0.492395 -0.962615) (xy -0.608187 -0.915024)
+      (xy -0.655979 -0.799482) (xy -0.655979 0.171113) (xy -0.821347 0.121454) (xy -0.993195 0.104595)
+      (xy -1.169077 0.122825) (xy -1.169077 -1.289777) (xy -1.403755 -1.289777) (xy -1.403755 0.197556)
+      (xy -1.607149 0.338451) (xy -1.761575 0.525945) (xy -1.859666 0.748146) (xy -1.894059 0.993159)
+      (xy -1.862279 1.230349) (xy -1.772433 1.443503) (xy -1.633016 1.624102) (xy -0.000235 3.2)
+      (xy -0.262683 3.189377) (xy -0.519287 3.158086) (xy -0.769223 3.106953) (xy -1.011668 3.036799)
+      (xy -1.245799 2.94845) (xy -1.47079 2.842728) (xy -1.685821 2.720458) (xy -1.890065 2.582462)
+      (xy -2.082702 2.429565) (xy -2.262905 2.262591) (xy -2.429853 2.082362) (xy -2.582722 1.889703)
+      (xy -2.720688 1.685437) (xy -2.842928 1.470388) (xy -2.948618 1.245379) (xy -3.036935 1.011235)
+      (xy -3.107055 0.768778) (xy -3.158155 0.518833) (xy -3.189411 0.262223) (xy -3.2 -0.000228)
+      (xy -3.189378 -0.262654) (xy -3.158094 -0.519237) (xy -3.10697 -0.769154) (xy -3.03683 -1.011581)
+      (xy -2.948497 -1.245696) (xy -2.842794 -1.470674) (xy -2.720546 -1.685693) (xy -2.582575 -1.889929)
+      (xy -2.429704 -2.082558) (xy -2.262757 -2.262758) (xy -2.082558 -2.429705) (xy -1.889929 -2.582576)
+      (xy -1.685694 -2.720548) (xy -1.470675 -2.842796) (xy -1.245698 -2.948498) (xy -1.011584 -3.036831)
+      (xy -0.769158 -3.106971) (xy -0.519242 -3.158095) (xy -0.26266 -3.189379) (xy -0.000235 -3.2)
+      (xy 0.262217 -3.189411) (xy 0.518827 -3.158154) (xy 0.768773 -3.107054) (xy 1.011229 -3.036934)
+      (xy 1.245374 -2.948617) (xy 1.470383 -2.842927) (xy 1.685432 -2.720688) (xy 1.889698 -2.582722)
+      (xy 2.082358 -2.429853) (xy 2.262587 -2.262905) (xy 2.429562 -2.082701) (xy 2.582459 -1.890064)
+      (xy 2.720454 -1.685819) (xy 2.842725 -1.470789) (xy 2.948447 -1.245796) (xy 3.036797 -1.011666)
+      (xy 3.106951 -0.76922) (xy 3.158085 -0.519283) (xy 3.189376 -0.262678) (xy 3.2 -0.000228)
+      (xy 3.189409 0.262247) (xy 3.158147 0.518879) (xy 3.107037 0.768844) (xy 3.036904 1.011319)
+      (xy 2.94857 1.24548) (xy 2.842861 1.470503) (xy 2.720599 1.685564) (xy 2.582609 1.889839)
+      (xy 2.429714 2.082505) (xy 2.262739 2.262737) (xy 2.082506 2.429713) (xy 1.88984 2.582608)
+      (xy 1.685564 2.720598) (xy 1.470502 2.84286) (xy 1.245479 2.948569) (xy 1.011317 3.036903)
+      (xy 0.768841 3.107036) (xy 0.518875 3.158146) (xy 0.262242 3.189409) (xy -0.000235 3.2)) (layer B.SilkS) (width 0))
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC821EA)
+    (at 106 94 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBE1B7)
+    (attr smd)
+    (fp_text reference D11 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Shalnoff:ce_logo_2mm (layer F.Cu) (tedit 5DC7F32E) (tstamp 5DC88D7B)
+    (at 102.25 39 90)
+    (descr "Imported from ce_logo.svg")
+    (tags svg2mod)
+    (attr smd)
+    (fp_text reference "copyleft electronics logo" (at 0 -4.114755 90) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_text value G*** (at 0 4.114755 90) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_circle (center -0.45 0) (end -0.43 0) (layer F.SilkS) (width 0.15))
+    (fp_poly (pts (xy -0.218821 -0.223565) (xy -0.239195 -0.174338) (xy -0.218821 -0.125122) (xy -0.169648 -0.104695)
+      (xy -0.120475 -0.125122) (xy -0.062506 -0.163816) (xy 0.003104 -0.176714) (xy 0.068714 -0.163816)
+      (xy 0.126683 -0.125122) (xy 0.165353 -0.067179) (xy 0.178203 -0.001625) (xy 0.165293 0.06393)
+      (xy 0.126683 0.121874) (xy 0.068728 0.16058) (xy 0.003147 0.173504) (xy -0.062434 0.160633)
+      (xy -0.120389 0.121954) (xy -0.169989 0.100311) (xy -0.220229 0.120642) (xy -0.240603 0.170829)
+      (xy -0.218843 0.220482) (xy -0.162242 0.265291) (xy -0.098832 0.295148) (xy -0.031336 0.310057)
+      (xy 0.037522 0.310026) (xy 0.105018 0.29506) (xy 0.168429 0.265166) (xy 0.225029 0.220349)
+      (xy 0.269857 0.163748) (xy 0.299756 0.100338) (xy 0.31472 0.032843) (xy 0.314738 -0.036015)
+      (xy 0.299801 -0.103511) (xy 0.269901 -0.166921) (xy 0.225029 -0.223521) (xy 0.158242 -0.274347)
+      (xy 0.082793 -0.30483) (xy 0.003013 -0.314988) (xy -0.076788 -0.304833) (xy -0.152243 -0.274352)
+      (xy -0.219024 -0.223521) (xy -0.219024 -0.223535) (xy -0.218821 -0.223565)) (layer F.SilkS) (width 0))
+    (fp_poly (pts (xy -0.802992 -0.271406) (xy -0.841699 -0.226109) (xy -0.872325 -0.176579) (xy -0.893059 -0.129407)
+      (xy -0.906992 -0.080291) (xy -0.914459 -0.02943) (xy -0.915525 0.019943) (xy -0.909299 0.076015)
+      (xy -0.894512 0.130787) (xy -0.894416 0.13088) (xy -1.066661 0.302966) (xy -0.905787 0.464013)
+      (xy -0.760699 0.318914) (xy -0.616005 0.463613) (xy -0.761019 0.608779) (xy -0.600133 0.769664)
+      (xy -0.455045 0.624565) (xy -0.318672 0.760784) (xy -0.46392 0.90587) (xy -0.303045 1.066755)
+      (xy -0.132432 0.896295) (xy -0.074848 0.912534) (xy -0.01576 0.919773) (xy 0.033453 0.918826)
+      (xy 0.082267 0.911879) (xy 0.134547 0.897097) (xy 0.184667 0.874866) (xy 0.232187 0.844901)
+      (xy 0.275867 0.807367) (xy 0.536197 0.547024) (xy 0.375323 0.386151) (xy 0.114992 0.646481)
+      (xy 0.067952 0.679804) (xy -0.003088 0.69446) (xy -0.053541 0.68422) (xy -0.111035 0.646438)
+      (xy -0.642341 0.115472) (xy -0.679568 0.059024) (xy -0.690341 -0.000773) (xy -0.678821 -0.056187)
+      (xy -0.642448 -0.110587) (xy -0.111077 -0.641793) (xy -0.057741 -0.67779) (xy 0.002011 -0.689772)
+      (xy 0.061643 -0.677794) (xy 0.114907 -0.641793) (xy 0.645947 -0.110601) (xy 0.681975 -0.05726)
+      (xy 0.693936 0.002441) (xy 0.681881 0.06214) (xy 0.645861 0.115475) (xy 0.375248 0.386085)
+      (xy 0.536123 0.546971) (xy 0.806747 0.276362) (xy 0.854941 0.217548) (xy 0.889793 0.152239)
+      (xy 0.911299 0.082522) (xy 0.919455 0.010486) (xy 0.914259 -0.06178) (xy 0.895707 -0.132188)
+      (xy 1.066661 -0.30314) (xy 0.905787 -0.464013) (xy 0.760101 -0.318169) (xy 0.623803 -0.454452)
+      (xy 0.769573 -0.600231) (xy 0.608688 -0.761104) (xy 0.462843 -0.615419) (xy 0.318139 -0.760277)
+      (xy 0.46392 -0.90587) (xy 0.302864 -1.066755) (xy 0.129861 -0.893909) (xy 0.066675 -0.910033)
+      (xy 0.001968 -0.915413) (xy -0.072205 -0.908372) (xy -0.144097 -0.887241) (xy -0.211448 -0.852012)
+      (xy -0.271995 -0.802676) (xy -0.803376 -0.27147) (xy -0.803365 -0.27147) (xy -0.802992 -0.271406)) (layer F.SilkS) (width 0))
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC821B4)
+    (at 106 31 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBA50D)
+    (attr smd)
+    (fp_text reference D4 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC8217E)
+    (at 106 40 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBA842)
+    (attr smd)
+    (fp_text reference D5 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC82148)
+    (at 106 49 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBAA77)
+    (attr smd)
+    (fp_text reference D6 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC82112)
+    (at 106 58 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBAD6A)
+    (attr smd)
+    (fp_text reference D7 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC82256)
+    (at 106 67 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB05D)
+    (attr smd)
+    (fp_text reference D8 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC822C2)
+    (at 106 103 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB3AD)
+    (attr smd)
+    (fp_text reference D9 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC82220)
+    (at 106 76 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB570)
+    (attr smd)
+    (fp_text reference D10 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC8228C)
+    (at 106 85 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DE5D3FE)
+    (attr smd)
+    (fp_text reference D12 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DC804EC)
+    (at 106 25)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC54CBB)
+    (attr smd)
+    (fp_text reference R12 (at 0 -1.65) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 1R (at 0 1.65) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 1 "Net-(D10-Pad2)"))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 7 /+3v3))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD (layer F.Cu) (tedit 59FED667) (tstamp 5DC81F9C)
+    (at 106 17.1)
+    (descr "surface-mounted straight pin header, 2x05, 2.00mm pitch, double rows")
+    (tags "Surface mounted pin header SMD 2x05 2.00mm double row")
+    (path /5DC8206E)
+    (attr smd)
+    (fp_text reference J1 (at 0 -6.06) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value CONN_05X2NO_SILK (at 0 6.06) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 2 5) (end -2 5) (layer F.Fab) (width 0.1))
+    (fp_line (start -1.25 -5) (end 2 -5) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 5) (end -2 -4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 -4.25) (end -1.25 -5) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 -5) (end 2 5) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 -4.25) (end -2.875 -4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 -4.25) (end -2.875 -3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 -3.75) (end -2 -3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 -4.25) (end 2.875 -4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 -4.25) (end 2.875 -3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 -3.75) (end 2 -3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 -2.25) (end -2.875 -2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 -2.25) (end -2.875 -1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 -1.75) (end -2 -1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 -2.25) (end 2.875 -2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 -2.25) (end 2.875 -1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 -1.75) (end 2 -1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 -0.25) (end -2.875 -0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 -0.25) (end -2.875 0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 0.25) (end -2 0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 -0.25) (end 2.875 -0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 -0.25) (end 2.875 0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 0.25) (end 2 0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 1.75) (end -2.875 1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 1.75) (end -2.875 2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 2.25) (end -2 2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 1.75) (end 2.875 1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 1.75) (end 2.875 2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 2.25) (end 2 2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 3.75) (end -2.875 3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 3.75) (end -2.875 4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 4.25) (end -2 4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 3.75) (end 2.875 3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 3.75) (end 2.875 4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 4.25) (end 2 4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.06 -5.06) (end 2.06 -5.06) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 5.06) (end 2.06 5.06) (layer F.SilkS) (width 0.12))
+    (fp_line (start -3.315 -4.76) (end -2.06 -4.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 -5.06) (end -2.06 -4.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 -5.06) (end 2.06 -4.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 4.76) (end -2.06 5.06) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 4.76) (end 2.06 5.06) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 -3.24) (end -2.06 -2.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 -3.24) (end 2.06 -2.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 -1.24) (end -2.06 -0.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 -1.24) (end 2.06 -0.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 0.76) (end -2.06 1.24) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 0.76) (end 2.06 1.24) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 2.76) (end -2.06 3.24) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 2.76) (end 2.06 3.24) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.9 -5.5) (end -4.9 5.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.9 5.5) (end 4.9 5.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4.9 5.5) (end 4.9 -5.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4.9 -5.5) (end -4.9 -5.5) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd rect (at -2.085 -4) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 3 "Net-(J1-Pad1)"))
+    (pad 2 smd rect (at 2.085 -4) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 4 "Net-(J1-Pad2)"))
+    (pad 3 smd rect (at -2.085 -2) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 8 "Net-(J1-Pad3)"))
+    (pad 4 smd rect (at 2.085 -2) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 9 "Net-(J1-Pad4)"))
+    (pad 5 smd rect (at -2.085 0) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 7 /+3v3))
+    (pad 6 smd rect (at 2.085 0) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 7 smd rect (at -2.085 2) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 5 "Net-(J1-Pad7)"))
+    (pad 8 smd rect (at 2.085 2) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 6 "Net-(J1-Pad10)"))
+    (pad 9 smd rect (at -2.085 4) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 5 "Net-(J1-Pad7)"))
+    (pad 10 smd rect (at 2.085 4) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 6 "Net-(J1-Pad10)"))
+    (model ${KISYS3DMOD}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_2x05_P2.00mm_Vertical_SMD.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (gr_text https://dailybeer.eu/merch/lightstick (at 109.8 66 90) (layer F.SilkS) (tstamp 5DC88D8A)
+    (effects (font (size 1 1) (thickness 0.13)) (justify left))
+  )
+  (gr_text "Pocket photo-lightstick extender     rev 0.1 (1119)" (at 102.15 66.04 90) (layer F.SilkS) (tstamp 5DC88D66)
+    (effects (font (size 1 1) (thickness 0.13)) (justify left))
+  )
+  (gr_line (start 102 110) (end 110 110) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530DC))
+  (gr_arc (start 110 108) (end 110 110) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530D0))
+  (gr_arc (start 102 108) (end 100 108) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530CF))
+  (gr_line (start 102 10) (end 110 10) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530CA))
+  (gr_arc (start 102 12) (end 102 10) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530C5))
+  (gr_arc (start 110 12) (end 112 12) (angle -90) (layer Edge.Cuts) (width 0.12))
+  (gr_line (start 112 12) (end 112 108) (layer Edge.Cuts) (width 0.12) (tstamp 5DC53073))
+  (gr_line (start 100 12) (end 100 108) (layer Edge.Cuts) (width 0.12))
+
+  (via (at 105 23) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 104.975 25) (end 104.975 23.025) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 104.975 23.025) (end 105 23) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 105 30) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 105 23) (end 105 30) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 105 29.0125) (end 106 28.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105 30) (end 105 29.0125) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 105 39) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 105 30) (end 105 39) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 105 38.0125) (end 106 37.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105 39) (end 105 38.0125) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 105 48) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 105 39) (end 105 48) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 105 47.0125) (end 106 46.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105 48) (end 105 47.0125) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 105 57) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 105 48) (end 105 57) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 105 56.0125) (end 106 55.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105 57) (end 105 56.0125) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 105 66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 105 57) (end 105 66) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 105 65.0125) (end 106 64.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105 66) (end 105 65.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105.16679 72.17929) (end 106 73.0125) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 70.88749) (end 105.16679 72.17929) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 67.12501) (end 103.87499 70.88749) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 105 66) (end 103.87499 67.12501) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 105.16679 81.17929) (end 106 82.0125) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 79.88749) (end 105.16679 81.17929) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 104.225 73.0125) (end 103.87499 73.36251) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 73.36251) (end 103.87499 79.88749) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 106 73.0125) (end 104.225 73.0125) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 105.16679 90.17929) (end 106 91.0125) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 88.88749) (end 105.16679 90.17929) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 84.13751) (end 103.87499 88.88749) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 106 82.0125) (end 103.87499 84.13751) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 105.16679 99.17929) (end 106 100.0125) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 97.88749) (end 105.16679 99.17929) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 91.36251) (end 103.87499 97.88749) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 104.225 91.0125) (end 103.87499 91.36251) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 106 91.0125) (end 104.225 91.0125) (width 0.5) (layer F.Cu) (net 1))
+  (via (at 106 16) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 106 32) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106 16) (end 106 32) (width 0.5) (layer B.Cu) (net 2) (tstamp 5DC83BC0))
+  (segment (start 106 32) (end 106 33.9875) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 106 41) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106 32) (end 106 41) (width 0.5) (layer B.Cu) (net 2))
+  (segment (start 106 41) (end 106 42.9875) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 106 50) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106 41) (end 106 50) (width 0.5) (layer B.Cu) (net 2))
+  (segment (start 106 50) (end 106 51.9875) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 106 59) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106 50) (end 106 59) (width 0.5) (layer B.Cu) (net 2))
+  (segment (start 106 59) (end 106 60.9875) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 106 68) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106 59) (end 106 68) (width 0.5) (layer B.Cu) (net 2))
+  (segment (start 106 68) (end 106 69.9875) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 106.83321 97.82071) (end 106 96.9875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.5 99.4875) (end 106.83321 97.82071) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.5 103.4875) (end 108.5 99.4875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106 105.9875) (end 108.5 103.4875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106.83321 79.82071) (end 106 78.9875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 81.11251) (end 106.83321 79.82071) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 85.86249) (end 108.12501 81.11251) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106 87.9875) (end 108.12501 85.86249) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106.83321 96.15429) (end 106 96.9875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 94.86249) (end 106.83321 96.15429) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 90.11251) (end 108.12501 94.86249) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106 87.9875) (end 108.12501 90.11251) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106.83321 78.15429) (end 106 78.9875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 72.11251) (end 108.12501 76.86249) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 76.86249) (end 106.83321 78.15429) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106 69.9875) (end 108.12501 72.11251) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.085 17.1) (end 107.295 17.1) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 107.1 17.1) (end 108.085 17.1) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106 16) (end 107.1 17.1) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 103.915 19.1) (end 103.915 21.1) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 108.085 19.1) (end 108.085 21.1) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 23.975) (end 107.025 25) (width 0.5) (layer F.Cu) (net 7))
+  (segment (start 106 18.395) (end 106 23.975) (width 0.5) (layer F.Cu) (net 7))
+  (segment (start 104.705 17.1) (end 103.915 17.1) (width 0.5) (layer F.Cu) (net 7))
+  (segment (start 106 18.395) (end 104.705 17.1) (width 0.5) (layer F.Cu) (net 7))
+
+  (zone (net 0) (net_name "") (layer F.Cu) (tstamp 0) (hatch edge 0.508)
+    (connect_pads (clearance 0.508))
+    (min_thickness 0.254)
+    (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
+    (polygon
+      (pts
+        (xy 111.76 10.16) (xy 100.33 10.16) (xy 99.06 11.43) (xy 99.06 110.49) (xy 113.03 110.49)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.252829 10.723123) (xy 110.496026 10.796549) (xy 110.720331 10.915814) (xy 110.917199 11.076375) (xy 111.079131 11.272117)
+        (xy 111.199957 11.49558) (xy 111.27508 11.738264) (xy 111.305 12.022929) (xy 111.305001 107.965998) (xy 111.276877 108.252831)
+        (xy 111.203451 108.496028) (xy 111.084185 108.720333) (xy 110.923625 108.917198) (xy 110.727881 109.079132) (xy 110.504416 109.199959)
+        (xy 110.261737 109.27508) (xy 109.97707 109.305) (xy 102.033992 109.305) (xy 101.747169 109.276877) (xy 101.503972 109.203451)
+        (xy 101.279667 109.084185) (xy 101.082802 108.923625) (xy 100.920868 108.727881) (xy 100.800041 108.504416) (xy 100.72492 108.261737)
+        (xy 100.695 107.97707) (xy 100.695 67.12501) (xy 102.985709 67.12501) (xy 102.98999 67.168479) (xy 102.989991 70.844011)
+        (xy 102.985709 70.88749) (xy 103.002795 71.06098) (xy 103.053402 71.227803) (xy 103.13558 71.381549) (xy 103.218458 71.482536)
+        (xy 103.218461 71.482539) (xy 103.246174 71.516307) (xy 103.279941 71.544019) (xy 103.803831 72.06791) (xy 103.754528 72.160149)
+        (xy 103.716731 72.284751) (xy 103.596183 72.383683) (xy 103.568466 72.417456) (xy 103.279946 72.705976) (xy 103.246173 72.733693)
+        (xy 103.135579 72.868452) (xy 103.053401 73.022198) (xy 103.002795 73.189021) (xy 102.98999 73.319034) (xy 102.98999 73.319041)
+        (xy 102.985709 73.36251) (xy 102.98999 73.405979) (xy 102.989991 79.844011) (xy 102.985709 79.88749) (xy 103.002795 80.06098)
+        (xy 103.053402 80.227803) (xy 103.13558 80.381549) (xy 103.218458 80.482536) (xy 103.218461 80.482539) (xy 103.246174 80.516307)
+        (xy 103.279941 80.544019) (xy 103.803831 81.06791) (xy 103.754528 81.160149) (xy 103.703992 81.326745) (xy 103.686928 81.499999)
+        (xy 103.686928 82.525001) (xy 103.703992 82.698255) (xy 103.754528 82.864851) (xy 103.803831 82.957091) (xy 103.279946 83.480976)
+        (xy 103.246173 83.508693) (xy 103.135579 83.643452) (xy 103.053401 83.797198) (xy 103.002795 83.964021) (xy 102.98999 84.094034)
+        (xy 102.98999 84.094041) (xy 102.985709 84.13751) (xy 102.98999 84.180979) (xy 102.989991 88.844011) (xy 102.985709 88.88749)
+        (xy 103.002795 89.06098) (xy 103.053402 89.227803) (xy 103.13558 89.381549) (xy 103.218458 89.482536) (xy 103.218461 89.482539)
+        (xy 103.246174 89.516307) (xy 103.279941 89.544019) (xy 103.803831 90.06791) (xy 103.754528 90.160149) (xy 103.716731 90.284751)
+        (xy 103.596183 90.383683) (xy 103.568466 90.417456) (xy 103.279946 90.705976) (xy 103.246173 90.733693) (xy 103.135579 90.868452)
+        (xy 103.053401 91.022198) (xy 103.002795 91.189021) (xy 102.98999 91.319034) (xy 102.98999 91.319041) (xy 102.985709 91.36251)
+        (xy 102.98999 91.405979) (xy 102.989991 97.844011) (xy 102.985709 97.88749) (xy 103.002795 98.06098) (xy 103.053402 98.227803)
+        (xy 103.13558 98.381549) (xy 103.218458 98.482536) (xy 103.218461 98.482539) (xy 103.246174 98.516307) (xy 103.279941 98.544019)
+        (xy 103.803831 99.06791) (xy 103.754528 99.160149) (xy 103.703992 99.326745) (xy 103.686928 99.499999) (xy 103.686928 100.525001)
+        (xy 103.703992 100.698255) (xy 103.754528 100.864851) (xy 103.836595 101.018387) (xy 103.947038 101.152962) (xy 104.081613 101.263405)
+        (xy 104.235149 101.345472) (xy 104.401745 101.396008) (xy 104.574999 101.413072) (xy 107.425001 101.413072) (xy 107.598255 101.396008)
+        (xy 107.615001 101.390928) (xy 107.615 103.120921) (xy 106.148994 104.586928) (xy 104.574999 104.586928) (xy 104.401745 104.603992)
+        (xy 104.235149 104.654528) (xy 104.081613 104.736595) (xy 103.947038 104.847038) (xy 103.836595 104.981613) (xy 103.754528 105.135149)
+        (xy 103.703992 105.301745) (xy 103.686928 105.474999) (xy 103.686928 106.500001) (xy 103.703992 106.673255) (xy 103.754528 106.839851)
+        (xy 103.836595 106.993387) (xy 103.947038 107.127962) (xy 104.081613 107.238405) (xy 104.235149 107.320472) (xy 104.401745 107.371008)
+        (xy 104.574999 107.388072) (xy 107.425001 107.388072) (xy 107.598255 107.371008) (xy 107.764851 107.320472) (xy 107.918387 107.238405)
+        (xy 108.052962 107.127962) (xy 108.163405 106.993387) (xy 108.245472 106.839851) (xy 108.296008 106.673255) (xy 108.313072 106.500001)
+        (xy 108.313072 105.474999) (xy 108.296008 105.301745) (xy 108.245472 105.135149) (xy 108.196169 105.04291) (xy 109.09505 104.144029)
+        (xy 109.128817 104.116317) (xy 109.239411 103.981559) (xy 109.321589 103.827813) (xy 109.372195 103.66099) (xy 109.385 103.530977)
+        (xy 109.385 103.530969) (xy 109.389281 103.4875) (xy 109.385 103.444031) (xy 109.385 99.530966) (xy 109.389281 99.487499)
+        (xy 109.385 99.444033) (xy 109.385 99.444023) (xy 109.372195 99.31401) (xy 109.321589 99.147187) (xy 109.239411 98.993441)
+        (xy 109.128817 98.858683) (xy 109.095049 98.83097) (xy 108.196169 97.93209) (xy 108.245472 97.839851) (xy 108.296008 97.673255)
+        (xy 108.313072 97.500001) (xy 108.313072 96.474999) (xy 108.296008 96.301745) (xy 108.245472 96.135149) (xy 108.196169 96.04291)
+        (xy 108.720059 95.51902) (xy 108.753827 95.491307) (xy 108.816551 95.414879) (xy 108.86442 95.35655) (xy 108.904217 95.282095)
+        (xy 108.946599 95.202803) (xy 108.997205 95.03598) (xy 109.01001 94.905967) (xy 109.01001 94.905957) (xy 109.014291 94.862491)
+        (xy 109.01001 94.819024) (xy 109.01001 90.155979) (xy 109.014291 90.11251) (xy 109.01001 90.069041) (xy 109.01001 90.069033)
+        (xy 108.997205 89.93902) (xy 108.946599 89.772197) (xy 108.864421 89.618451) (xy 108.836347 89.584243) (xy 108.781542 89.517463)
+        (xy 108.78154 89.517461) (xy 108.753827 89.483693) (xy 108.72006 89.455981) (xy 108.196169 88.93209) (xy 108.245472 88.839851)
+        (xy 108.296008 88.673255) (xy 108.313072 88.500001) (xy 108.313072 87.474999) (xy 108.296008 87.301745) (xy 108.245472 87.135149)
+        (xy 108.196169 87.04291) (xy 108.72006 86.519019) (xy 108.753827 86.491307) (xy 108.864421 86.356549) (xy 108.946599 86.202803)
+        (xy 108.997205 86.03598) (xy 109.01001 85.905967) (xy 109.01001 85.905959) (xy 109.014291 85.86249) (xy 109.01001 85.819021)
+        (xy 109.01001 81.155976) (xy 109.014291 81.112509) (xy 109.01001 81.069043) (xy 109.01001 81.069033) (xy 108.997205 80.93902)
+        (xy 108.946599 80.772197) (xy 108.864421 80.618451) (xy 108.836347 80.584243) (xy 108.781542 80.517463) (xy 108.78154 80.517461)
+        (xy 108.753827 80.483693) (xy 108.720059 80.45598) (xy 108.196169 79.93209) (xy 108.245472 79.839851) (xy 108.296008 79.673255)
+        (xy 108.313072 79.500001) (xy 108.313072 78.474999) (xy 108.296008 78.301745) (xy 108.245472 78.135149) (xy 108.196169 78.04291)
+        (xy 108.720059 77.51902) (xy 108.753827 77.491307) (xy 108.816551 77.414879) (xy 108.86442 77.35655) (xy 108.904217 77.282095)
+        (xy 108.946599 77.202803) (xy 108.997205 77.03598) (xy 109.01001 76.905967) (xy 109.01001 76.905957) (xy 109.014291 76.862491)
+        (xy 109.01001 76.819024) (xy 109.01001 72.155979) (xy 109.014291 72.11251) (xy 109.01001 72.069041) (xy 109.01001 72.069033)
+        (xy 108.997205 71.93902) (xy 108.946599 71.772197) (xy 108.864421 71.618451) (xy 108.836347 71.584243) (xy 108.781542 71.517463)
+        (xy 108.78154 71.517461) (xy 108.753827 71.483693) (xy 108.72006 71.455981) (xy 108.196169 70.93209) (xy 108.245472 70.839851)
+        (xy 108.296008 70.673255) (xy 108.313072 70.500001) (xy 108.313072 69.474999) (xy 108.296008 69.301745) (xy 108.245472 69.135149)
+        (xy 108.163405 68.981613) (xy 108.052962 68.847038) (xy 107.918387 68.736595) (xy 107.764851 68.654528) (xy 107.598255 68.603992)
+        (xy 107.425001 68.586928) (xy 106.852611 68.586928) (xy 106.917205 68.490256) (xy 106.995226 68.301898) (xy 107.035 68.101939)
+        (xy 107.035 67.898061) (xy 106.995226 67.698102) (xy 106.917205 67.509744) (xy 106.803937 67.340226) (xy 106.659774 67.196063)
+        (xy 106.490256 67.082795) (xy 106.301898 67.004774) (xy 106.101939 66.965) (xy 105.898061 66.965) (xy 105.698102 67.004774)
+        (xy 105.509744 67.082795) (xy 105.340226 67.196063) (xy 105.196063 67.340226) (xy 105.082795 67.509744) (xy 105.004774 67.698102)
+        (xy 104.965 67.898061) (xy 104.965 68.101939) (xy 105.004774 68.301898) (xy 105.082795 68.490256) (xy 105.147389 68.586928)
+        (xy 104.75999 68.586928) (xy 104.75999 67.491588) (xy 105.245044 67.006535) (xy 105.301898 66.995226) (xy 105.490256 66.917205)
+        (xy 105.659774 66.803937) (xy 105.803937 66.659774) (xy 105.917205 66.490256) (xy 105.995226 66.301898) (xy 106.035 66.101939)
+        (xy 106.035 65.898061) (xy 105.995226 65.698102) (xy 105.917205 65.509744) (xy 105.852611 65.413072) (xy 107.425001 65.413072)
+        (xy 107.598255 65.396008) (xy 107.764851 65.345472) (xy 107.918387 65.263405) (xy 108.052962 65.152962) (xy 108.163405 65.018387)
+        (xy 108.245472 64.864851) (xy 108.296008 64.698255) (xy 108.313072 64.525001) (xy 108.313072 63.499999) (xy 108.296008 63.326745)
+        (xy 108.245472 63.160149) (xy 108.163405 63.006613) (xy 108.052962 62.872038) (xy 107.918387 62.761595) (xy 107.764851 62.679528)
+        (xy 107.598255 62.628992) (xy 107.425001 62.611928) (xy 104.574999 62.611928) (xy 104.401745 62.628992) (xy 104.235149 62.679528)
+        (xy 104.081613 62.761595) (xy 103.947038 62.872038) (xy 103.836595 63.006613) (xy 103.754528 63.160149) (xy 103.703992 63.326745)
+        (xy 103.686928 63.499999) (xy 103.686928 64.525001) (xy 103.703992 64.698255) (xy 103.754528 64.864851) (xy 103.836595 65.018387)
+        (xy 103.947038 65.152962) (xy 104.081613 65.263405) (xy 104.206259 65.33003) (xy 104.196063 65.340226) (xy 104.082795 65.509744)
+        (xy 104.004774 65.698102) (xy 103.993465 65.754956) (xy 103.279946 66.468476) (xy 103.246173 66.496193) (xy 103.135579 66.630952)
+        (xy 103.053401 66.784698) (xy 103.002795 66.951521) (xy 102.98999 67.081534) (xy 102.98999 67.081541) (xy 102.985709 67.12501)
+        (xy 100.695 67.12501) (xy 100.695 60.474999) (xy 103.686928 60.474999) (xy 103.686928 61.500001) (xy 103.703992 61.673255)
+        (xy 103.754528 61.839851) (xy 103.836595 61.993387) (xy 103.947038 62.127962) (xy 104.081613 62.238405) (xy 104.235149 62.320472)
+        (xy 104.401745 62.371008) (xy 104.574999 62.388072) (xy 107.425001 62.388072) (xy 107.598255 62.371008) (xy 107.764851 62.320472)
+        (xy 107.918387 62.238405) (xy 108.052962 62.127962) (xy 108.163405 61.993387) (xy 108.245472 61.839851) (xy 108.296008 61.673255)
+        (xy 108.313072 61.500001) (xy 108.313072 60.474999) (xy 108.296008 60.301745) (xy 108.245472 60.135149) (xy 108.163405 59.981613)
+        (xy 108.052962 59.847038) (xy 107.918387 59.736595) (xy 107.764851 59.654528) (xy 107.598255 59.603992) (xy 107.425001 59.586928)
+        (xy 106.852611 59.586928) (xy 106.917205 59.490256) (xy 106.995226 59.301898) (xy 107.035 59.101939) (xy 107.035 58.898061)
+        (xy 106.995226 58.698102) (xy 106.917205 58.509744) (xy 106.803937 58.340226) (xy 106.659774 58.196063) (xy 106.490256 58.082795)
+        (xy 106.301898 58.004774) (xy 106.101939 57.965) (xy 105.898061 57.965) (xy 105.698102 58.004774) (xy 105.509744 58.082795)
+        (xy 105.340226 58.196063) (xy 105.196063 58.340226) (xy 105.082795 58.509744) (xy 105.004774 58.698102) (xy 104.965 58.898061)
+        (xy 104.965 59.101939) (xy 105.004774 59.301898) (xy 105.082795 59.490256) (xy 105.147389 59.586928) (xy 104.574999 59.586928)
+        (xy 104.401745 59.603992) (xy 104.235149 59.654528) (xy 104.081613 59.736595) (xy 103.947038 59.847038) (xy 103.836595 59.981613)
+        (xy 103.754528 60.135149) (xy 103.703992 60.301745) (xy 103.686928 60.474999) (xy 100.695 60.474999) (xy 100.695 54.499999)
+        (xy 103.686928 54.499999) (xy 103.686928 55.525001) (xy 103.703992 55.698255) (xy 103.754528 55.864851) (xy 103.836595 56.018387)
+        (xy 103.947038 56.152962) (xy 104.081613 56.263405) (xy 104.206259 56.33003) (xy 104.196063 56.340226) (xy 104.082795 56.509744)
+        (xy 104.004774 56.698102) (xy 103.965 56.898061) (xy 103.965 57.101939) (xy 104.004774 57.301898) (xy 104.082795 57.490256)
+        (xy 104.196063 57.659774) (xy 104.340226 57.803937) (xy 104.509744 57.917205) (xy 104.698102 57.995226) (xy 104.898061 58.035)
+        (xy 105.101939 58.035) (xy 105.301898 57.995226) (xy 105.490256 57.917205) (xy 105.659774 57.803937) (xy 105.803937 57.659774)
+        (xy 105.917205 57.490256) (xy 105.995226 57.301898) (xy 106.035 57.101939) (xy 106.035 56.898061) (xy 105.995226 56.698102)
+        (xy 105.917205 56.509744) (xy 105.852611 56.413072) (xy 107.425001 56.413072) (xy 107.598255 56.396008) (xy 107.764851 56.345472)
+        (xy 107.918387 56.263405) (xy 108.052962 56.152962) (xy 108.163405 56.018387) (xy 108.245472 55.864851) (xy 108.296008 55.698255)
+        (xy 108.313072 55.525001) (xy 108.313072 54.499999) (xy 108.296008 54.326745) (xy 108.245472 54.160149) (xy 108.163405 54.006613)
+        (xy 108.052962 53.872038) (xy 107.918387 53.761595) (xy 107.764851 53.679528) (xy 107.598255 53.628992) (xy 107.425001 53.611928)
+        (xy 104.574999 53.611928) (xy 104.401745 53.628992) (xy 104.235149 53.679528) (xy 104.081613 53.761595) (xy 103.947038 53.872038)
+        (xy 103.836595 54.006613) (xy 103.754528 54.160149) (xy 103.703992 54.326745) (xy 103.686928 54.499999) (xy 100.695 54.499999)
+        (xy 100.695 51.474999) (xy 103.686928 51.474999) (xy 103.686928 52.500001) (xy 103.703992 52.673255) (xy 103.754528 52.839851)
+        (xy 103.836595 52.993387) (xy 103.947038 53.127962) (xy 104.081613 53.238405) (xy 104.235149 53.320472) (xy 104.401745 53.371008)
+        (xy 104.574999 53.388072) (xy 107.425001 53.388072) (xy 107.598255 53.371008) (xy 107.764851 53.320472) (xy 107.918387 53.238405)
+        (xy 108.052962 53.127962) (xy 108.163405 52.993387) (xy 108.245472 52.839851) (xy 108.296008 52.673255) (xy 108.313072 52.500001)
+        (xy 108.313072 51.474999) (xy 108.296008 51.301745) (xy 108.245472 51.135149) (xy 108.163405 50.981613) (xy 108.052962 50.847038)
+        (xy 107.918387 50.736595) (xy 107.764851 50.654528) (xy 107.598255 50.603992) (xy 107.425001 50.586928) (xy 106.852611 50.586928)
+        (xy 106.917205 50.490256) (xy 106.995226 50.301898) (xy 107.035 50.101939) (xy 107.035 49.898061) (xy 106.995226 49.698102)
+        (xy 106.917205 49.509744) (xy 106.803937 49.340226) (xy 106.659774 49.196063) (xy 106.490256 49.082795) (xy 106.301898 49.004774)
+        (xy 106.101939 48.965) (xy 105.898061 48.965) (xy 105.698102 49.004774) (xy 105.509744 49.082795) (xy 105.340226 49.196063)
+        (xy 105.196063 49.340226) (xy 105.082795 49.509744) (xy 105.004774 49.698102) (xy 104.965 49.898061) (xy 104.965 50.101939)
+        (xy 105.004774 50.301898) (xy 105.082795 50.490256) (xy 105.147389 50.586928) (xy 104.574999 50.586928) (xy 104.401745 50.603992)
+        (xy 104.235149 50.654528) (xy 104.081613 50.736595) (xy 103.947038 50.847038) (xy 103.836595 50.981613) (xy 103.754528 51.135149)
+        (xy 103.703992 51.301745) (xy 103.686928 51.474999) (xy 100.695 51.474999) (xy 100.695 45.499999) (xy 103.686928 45.499999)
+        (xy 103.686928 46.525001) (xy 103.703992 46.698255) (xy 103.754528 46.864851) (xy 103.836595 47.018387) (xy 103.947038 47.152962)
+        (xy 104.081613 47.263405) (xy 104.206259 47.33003) (xy 104.196063 47.340226) (xy 104.082795 47.509744) (xy 104.004774 47.698102)
+        (xy 103.965 47.898061) (xy 103.965 48.101939) (xy 104.004774 48.301898) (xy 104.082795 48.490256) (xy 104.196063 48.659774)
+        (xy 104.340226 48.803937) (xy 104.509744 48.917205) (xy 104.698102 48.995226) (xy 104.898061 49.035) (xy 105.101939 49.035)
+        (xy 105.301898 48.995226) (xy 105.490256 48.917205) (xy 105.659774 48.803937) (xy 105.803937 48.659774) (xy 105.917205 48.490256)
+        (xy 105.995226 48.301898) (xy 106.035 48.101939) (xy 106.035 47.898061) (xy 105.995226 47.698102) (xy 105.917205 47.509744)
+        (xy 105.852611 47.413072) (xy 107.425001 47.413072) (xy 107.598255 47.396008) (xy 107.764851 47.345472) (xy 107.918387 47.263405)
+        (xy 108.052962 47.152962) (xy 108.163405 47.018387) (xy 108.245472 46.864851) (xy 108.296008 46.698255) (xy 108.313072 46.525001)
+        (xy 108.313072 45.499999) (xy 108.296008 45.326745) (xy 108.245472 45.160149) (xy 108.163405 45.006613) (xy 108.052962 44.872038)
+        (xy 107.918387 44.761595) (xy 107.764851 44.679528) (xy 107.598255 44.628992) (xy 107.425001 44.611928) (xy 104.574999 44.611928)
+        (xy 104.401745 44.628992) (xy 104.235149 44.679528) (xy 104.081613 44.761595) (xy 103.947038 44.872038) (xy 103.836595 45.006613)
+        (xy 103.754528 45.160149) (xy 103.703992 45.326745) (xy 103.686928 45.499999) (xy 100.695 45.499999) (xy 100.695 42.474999)
+        (xy 103.686928 42.474999) (xy 103.686928 43.500001) (xy 103.703992 43.673255) (xy 103.754528 43.839851) (xy 103.836595 43.993387)
+        (xy 103.947038 44.127962) (xy 104.081613 44.238405) (xy 104.235149 44.320472) (xy 104.401745 44.371008) (xy 104.574999 44.388072)
+        (xy 107.425001 44.388072) (xy 107.598255 44.371008) (xy 107.764851 44.320472) (xy 107.918387 44.238405) (xy 108.052962 44.127962)
+        (xy 108.163405 43.993387) (xy 108.245472 43.839851) (xy 108.296008 43.673255) (xy 108.313072 43.500001) (xy 108.313072 42.474999)
+        (xy 108.296008 42.301745) (xy 108.245472 42.135149) (xy 108.163405 41.981613) (xy 108.052962 41.847038) (xy 107.918387 41.736595)
+        (xy 107.764851 41.654528) (xy 107.598255 41.603992) (xy 107.425001 41.586928) (xy 106.852611 41.586928) (xy 106.917205 41.490256)
+        (xy 106.995226 41.301898) (xy 107.035 41.101939) (xy 107.035 40.898061) (xy 106.995226 40.698102) (xy 106.917205 40.509744)
+        (xy 106.803937 40.340226) (xy 106.659774 40.196063) (xy 106.490256 40.082795) (xy 106.301898 40.004774) (xy 106.101939 39.965)
+        (xy 105.898061 39.965) (xy 105.698102 40.004774) (xy 105.509744 40.082795) (xy 105.340226 40.196063) (xy 105.196063 40.340226)
+        (xy 105.082795 40.509744) (xy 105.004774 40.698102) (xy 104.965 40.898061) (xy 104.965 41.101939) (xy 105.004774 41.301898)
+        (xy 105.082795 41.490256) (xy 105.147389 41.586928) (xy 104.574999 41.586928) (xy 104.401745 41.603992) (xy 104.235149 41.654528)
+        (xy 104.081613 41.736595) (xy 103.947038 41.847038) (xy 103.836595 41.981613) (xy 103.754528 42.135149) (xy 103.703992 42.301745)
+        (xy 103.686928 42.474999) (xy 100.695 42.474999) (xy 100.695 36.499999) (xy 103.686928 36.499999) (xy 103.686928 37.525001)
+        (xy 103.703992 37.698255) (xy 103.754528 37.864851) (xy 103.836595 38.018387) (xy 103.947038 38.152962) (xy 104.081613 38.263405)
+        (xy 104.206259 38.33003) (xy 104.196063 38.340226) (xy 104.082795 38.509744) (xy 104.004774 38.698102) (xy 103.965 38.898061)
+        (xy 103.965 39.101939) (xy 104.004774 39.301898) (xy 104.082795 39.490256) (xy 104.196063 39.659774) (xy 104.340226 39.803937)
+        (xy 104.509744 39.917205) (xy 104.698102 39.995226) (xy 104.898061 40.035) (xy 105.101939 40.035) (xy 105.301898 39.995226)
+        (xy 105.490256 39.917205) (xy 105.659774 39.803937) (xy 105.803937 39.659774) (xy 105.917205 39.490256) (xy 105.995226 39.301898)
+        (xy 106.035 39.101939) (xy 106.035 38.898061) (xy 105.995226 38.698102) (xy 105.917205 38.509744) (xy 105.852611 38.413072)
+        (xy 107.425001 38.413072) (xy 107.598255 38.396008) (xy 107.764851 38.345472) (xy 107.918387 38.263405) (xy 108.052962 38.152962)
+        (xy 108.163405 38.018387) (xy 108.245472 37.864851) (xy 108.296008 37.698255) (xy 108.313072 37.525001) (xy 108.313072 36.499999)
+        (xy 108.296008 36.326745) (xy 108.245472 36.160149) (xy 108.163405 36.006613) (xy 108.052962 35.872038) (xy 107.918387 35.761595)
+        (xy 107.764851 35.679528) (xy 107.598255 35.628992) (xy 107.425001 35.611928) (xy 104.574999 35.611928) (xy 104.401745 35.628992)
+        (xy 104.235149 35.679528) (xy 104.081613 35.761595) (xy 103.947038 35.872038) (xy 103.836595 36.006613) (xy 103.754528 36.160149)
+        (xy 103.703992 36.326745) (xy 103.686928 36.499999) (xy 100.695 36.499999) (xy 100.695 33.474999) (xy 103.686928 33.474999)
+        (xy 103.686928 34.500001) (xy 103.703992 34.673255) (xy 103.754528 34.839851) (xy 103.836595 34.993387) (xy 103.947038 35.127962)
+        (xy 104.081613 35.238405) (xy 104.235149 35.320472) (xy 104.401745 35.371008) (xy 104.574999 35.388072) (xy 107.425001 35.388072)
+        (xy 107.598255 35.371008) (xy 107.764851 35.320472) (xy 107.918387 35.238405) (xy 108.052962 35.127962) (xy 108.163405 34.993387)
+        (xy 108.245472 34.839851) (xy 108.296008 34.673255) (xy 108.313072 34.500001) (xy 108.313072 33.474999) (xy 108.296008 33.301745)
+        (xy 108.245472 33.135149) (xy 108.163405 32.981613) (xy 108.052962 32.847038) (xy 107.918387 32.736595) (xy 107.764851 32.654528)
+        (xy 107.598255 32.603992) (xy 107.425001 32.586928) (xy 106.852611 32.586928) (xy 106.917205 32.490256) (xy 106.995226 32.301898)
+        (xy 107.035 32.101939) (xy 107.035 31.898061) (xy 106.995226 31.698102) (xy 106.917205 31.509744) (xy 106.803937 31.340226)
+        (xy 106.659774 31.196063) (xy 106.490256 31.082795) (xy 106.301898 31.004774) (xy 106.101939 30.965) (xy 105.898061 30.965)
+        (xy 105.698102 31.004774) (xy 105.509744 31.082795) (xy 105.340226 31.196063) (xy 105.196063 31.340226) (xy 105.082795 31.509744)
+        (xy 105.004774 31.698102) (xy 104.965 31.898061) (xy 104.965 32.101939) (xy 105.004774 32.301898) (xy 105.082795 32.490256)
+        (xy 105.147389 32.586928) (xy 104.574999 32.586928) (xy 104.401745 32.603992) (xy 104.235149 32.654528) (xy 104.081613 32.736595)
+        (xy 103.947038 32.847038) (xy 103.836595 32.981613) (xy 103.754528 33.135149) (xy 103.703992 33.301745) (xy 103.686928 33.474999)
+        (xy 100.695 33.474999) (xy 100.695 27.499999) (xy 103.686928 27.499999) (xy 103.686928 28.525001) (xy 103.703992 28.698255)
+        (xy 103.754528 28.864851) (xy 103.836595 29.018387) (xy 103.947038 29.152962) (xy 104.081613 29.263405) (xy 104.206259 29.33003)
+        (xy 104.196063 29.340226) (xy 104.082795 29.509744) (xy 104.004774 29.698102) (xy 103.965 29.898061) (xy 103.965 30.101939)
+        (xy 104.004774 30.301898) (xy 104.082795 30.490256) (xy 104.196063 30.659774) (xy 104.340226 30.803937) (xy 104.509744 30.917205)
+        (xy 104.698102 30.995226) (xy 104.898061 31.035) (xy 105.101939 31.035) (xy 105.301898 30.995226) (xy 105.490256 30.917205)
+        (xy 105.659774 30.803937) (xy 105.803937 30.659774) (xy 105.917205 30.490256) (xy 105.995226 30.301898) (xy 106.035 30.101939)
+        (xy 106.035 29.898061) (xy 105.995226 29.698102) (xy 105.917205 29.509744) (xy 105.852611 29.413072) (xy 107.425001 29.413072)
+        (xy 107.598255 29.396008) (xy 107.764851 29.345472) (xy 107.918387 29.263405) (xy 108.052962 29.152962) (xy 108.163405 29.018387)
+        (xy 108.245472 28.864851) (xy 108.296008 28.698255) (xy 108.313072 28.525001) (xy 108.313072 27.499999) (xy 108.296008 27.326745)
+        (xy 108.245472 27.160149) (xy 108.163405 27.006613) (xy 108.052962 26.872038) (xy 107.918387 26.761595) (xy 107.764851 26.679528)
+        (xy 107.598255 26.628992) (xy 107.425001 26.611928) (xy 104.574999 26.611928) (xy 104.401745 26.628992) (xy 104.235149 26.679528)
+        (xy 104.081613 26.761595) (xy 103.947038 26.872038) (xy 103.836595 27.006613) (xy 103.754528 27.160149) (xy 103.703992 27.326745)
+        (xy 103.686928 27.499999) (xy 100.695 27.499999) (xy 100.695 12.6) (xy 101.986928 12.6) (xy 101.986928 13.6)
+        (xy 101.999188 13.724482) (xy 102.035498 13.84418) (xy 102.094463 13.954494) (xy 102.173815 14.051185) (xy 102.233296 14.1)
+        (xy 102.173815 14.148815) (xy 102.094463 14.245506) (xy 102.035498 14.35582) (xy 101.999188 14.475518) (xy 101.986928 14.6)
+        (xy 101.986928 15.6) (xy 101.999188 15.724482) (xy 102.035498 15.84418) (xy 102.094463 15.954494) (xy 102.173815 16.051185)
+        (xy 102.233296 16.1) (xy 102.173815 16.148815) (xy 102.094463 16.245506) (xy 102.035498 16.35582) (xy 101.999188 16.475518)
+        (xy 101.986928 16.6) (xy 101.986928 17.6) (xy 101.999188 17.724482) (xy 102.035498 17.84418) (xy 102.094463 17.954494)
+        (xy 102.173815 18.051185) (xy 102.233296 18.1) (xy 102.173815 18.148815) (xy 102.094463 18.245506) (xy 102.035498 18.35582)
+        (xy 101.999188 18.475518) (xy 101.986928 18.6) (xy 101.986928 19.6) (xy 101.999188 19.724482) (xy 102.035498 19.84418)
+        (xy 102.094463 19.954494) (xy 102.173815 20.051185) (xy 102.233296 20.1) (xy 102.173815 20.148815) (xy 102.094463 20.245506)
+        (xy 102.035498 20.35582) (xy 101.999188 20.475518) (xy 101.986928 20.6) (xy 101.986928 21.6) (xy 101.999188 21.724482)
+        (xy 102.035498 21.84418) (xy 102.094463 21.954494) (xy 102.173815 22.051185) (xy 102.270506 22.130537) (xy 102.38082 22.189502)
+        (xy 102.500518 22.225812) (xy 102.625 22.238072) (xy 104.298217 22.238072) (xy 104.196063 22.340226) (xy 104.082795 22.509744)
+        (xy 104.004774 22.698102) (xy 103.965 22.898061) (xy 103.965 23.101939) (xy 104.004774 23.301898) (xy 104.082795 23.490256)
+        (xy 104.090001 23.50104) (xy 104.090001 23.866262) (xy 104.022038 23.922038) (xy 103.911595 24.056613) (xy 103.829528 24.210149)
+        (xy 103.778992 24.376745) (xy 103.761928 24.549999) (xy 103.761928 25.450001) (xy 103.778992 25.623255) (xy 103.829528 25.789851)
+        (xy 103.911595 25.943387) (xy 104.022038 26.077962) (xy 104.156613 26.188405) (xy 104.310149 26.270472) (xy 104.476745 26.321008)
+        (xy 104.649999 26.338072) (xy 105.300001 26.338072) (xy 105.473255 26.321008) (xy 105.639851 26.270472) (xy 105.793387 26.188405)
+        (xy 105.927962 26.077962) (xy 106 25.990184) (xy 106.072038 26.077962) (xy 106.206613 26.188405) (xy 106.360149 26.270472)
+        (xy 106.526745 26.321008) (xy 106.699999 26.338072) (xy 107.350001 26.338072) (xy 107.523255 26.321008) (xy 107.689851 26.270472)
+        (xy 107.843387 26.188405) (xy 107.977962 26.077962) (xy 108.088405 25.943387) (xy 108.170472 25.789851) (xy 108.221008 25.623255)
+        (xy 108.238072 25.450001) (xy 108.238072 24.549999) (xy 108.221008 24.376745) (xy 108.170472 24.210149) (xy 108.088405 24.056613)
+        (xy 107.977962 23.922038) (xy 107.843387 23.811595) (xy 107.689851 23.729528) (xy 107.523255 23.678992) (xy 107.350001 23.661928)
+        (xy 106.938506 23.661928) (xy 106.885 23.608422) (xy 106.885 22.238072) (xy 109.375 22.238072) (xy 109.499482 22.225812)
+        (xy 109.61918 22.189502) (xy 109.729494 22.130537) (xy 109.826185 22.051185) (xy 109.905537 21.954494) (xy 109.964502 21.84418)
+        (xy 110.000812 21.724482) (xy 110.013072 21.6) (xy 110.013072 20.6) (xy 110.000812 20.475518) (xy 109.964502 20.35582)
+        (xy 109.905537 20.245506) (xy 109.826185 20.148815) (xy 109.766704 20.1) (xy 109.826185 20.051185) (xy 109.905537 19.954494)
+        (xy 109.964502 19.84418) (xy 110.000812 19.724482) (xy 110.013072 19.6) (xy 110.013072 18.6) (xy 110.000812 18.475518)
+        (xy 109.964502 18.35582) (xy 109.905537 18.245506) (xy 109.826185 18.148815) (xy 109.766704 18.1) (xy 109.826185 18.051185)
+        (xy 109.905537 17.954494) (xy 109.964502 17.84418) (xy 110.000812 17.724482) (xy 110.013072 17.6) (xy 110.013072 16.6)
+        (xy 110.000812 16.475518) (xy 109.964502 16.35582) (xy 109.905537 16.245506) (xy 109.826185 16.148815) (xy 109.766704 16.1)
+        (xy 109.826185 16.051185) (xy 109.905537 15.954494) (xy 109.964502 15.84418) (xy 110.000812 15.724482) (xy 110.013072 15.6)
+        (xy 110.013072 14.6) (xy 110.000812 14.475518) (xy 109.964502 14.35582) (xy 109.905537 14.245506) (xy 109.826185 14.148815)
+        (xy 109.766704 14.1) (xy 109.826185 14.051185) (xy 109.905537 13.954494) (xy 109.964502 13.84418) (xy 110.000812 13.724482)
+        (xy 110.013072 13.6) (xy 110.013072 12.6) (xy 110.000812 12.475518) (xy 109.964502 12.35582) (xy 109.905537 12.245506)
+        (xy 109.826185 12.148815) (xy 109.729494 12.069463) (xy 109.61918 12.010498) (xy 109.499482 11.974188) (xy 109.375 11.961928)
+        (xy 106.795 11.961928) (xy 106.670518 11.974188) (xy 106.55082 12.010498) (xy 106.440506 12.069463) (xy 106.343815 12.148815)
+        (xy 106.264463 12.245506) (xy 106.205498 12.35582) (xy 106.169188 12.475518) (xy 106.156928 12.6) (xy 106.156928 13.6)
+        (xy 106.169188 13.724482) (xy 106.205498 13.84418) (xy 106.264463 13.954494) (xy 106.343815 14.051185) (xy 106.403296 14.1)
+        (xy 106.343815 14.148815) (xy 106.264463 14.245506) (xy 106.205498 14.35582) (xy 106.169188 14.475518) (xy 106.156928 14.6)
+        (xy 106.156928 14.975938) (xy 106.101939 14.965) (xy 105.898061 14.965) (xy 105.843072 14.975938) (xy 105.843072 14.6)
+        (xy 105.830812 14.475518) (xy 105.794502 14.35582) (xy 105.735537 14.245506) (xy 105.656185 14.148815) (xy 105.596704 14.1)
+        (xy 105.656185 14.051185) (xy 105.735537 13.954494) (xy 105.794502 13.84418) (xy 105.830812 13.724482) (xy 105.843072 13.6)
+        (xy 105.843072 12.6) (xy 105.830812 12.475518) (xy 105.794502 12.35582) (xy 105.735537 12.245506) (xy 105.656185 12.148815)
+        (xy 105.559494 12.069463) (xy 105.44918 12.010498) (xy 105.329482 11.974188) (xy 105.205 11.961928) (xy 102.625 11.961928)
+        (xy 102.500518 11.974188) (xy 102.38082 12.010498) (xy 102.270506 12.069463) (xy 102.173815 12.148815) (xy 102.094463 12.245506)
+        (xy 102.035498 12.35582) (xy 101.999188 12.475518) (xy 101.986928 12.6) (xy 100.695 12.6) (xy 100.695 12.033992)
+        (xy 100.723123 11.747171) (xy 100.796549 11.503974) (xy 100.915814 11.279669) (xy 101.076375 11.082801) (xy 101.272117 10.920869)
+        (xy 101.49558 10.800043) (xy 101.738264 10.72492) (xy 102.022929 10.695) (xy 109.966008 10.695)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 106.238163 98.477242) (xy 106.238168 98.477246) (xy 106.37285 98.611928) (xy 105.851006 98.611928) (xy 105.823326 98.584248)
+        (xy 105.823322 98.584243) (xy 105.627151 98.388072) (xy 106.148993 98.388072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.240011 94.49591) (xy 106.238168 95.497754) (xy 106.238163 95.497758) (xy 106.148993 95.586928) (xy 104.75999 95.586928)
+        (xy 104.75999 92.413072) (xy 107.24001 92.413072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 106.37285 89.611928) (xy 105.851006 89.611928) (xy 105.823326 89.584248) (xy 105.823322 89.584243) (xy 105.627151 89.388072)
+        (xy 106.148994 89.388072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.24001 85.495911) (xy 106.148994 86.586928) (xy 104.75999 86.586928) (xy 104.75999 84.504088) (xy 105.851007 83.413072)
+        (xy 107.240011 83.413072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 106.238163 80.477242) (xy 106.238168 80.477246) (xy 106.37285 80.611928) (xy 105.851006 80.611928) (xy 105.823326 80.584248)
+        (xy 105.823322 80.584243) (xy 105.627151 80.388072) (xy 106.148993 80.388072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.240011 76.49591) (xy 106.238168 77.497754) (xy 106.238163 77.497758) (xy 106.148993 77.586928) (xy 104.75999 77.586928)
+        (xy 104.75999 74.413072) (xy 107.24001 74.413072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 106.37285 71.611928) (xy 105.851006 71.611928) (xy 105.823326 71.584248) (xy 105.823322 71.584243) (xy 105.627151 71.388072)
+        (xy 106.148994 71.388072)
+      )
+    )
+  )
+  (zone (net 0) (net_name "") (layer B.Cu) (tstamp 0) (hatch edge 0.508)
+    (connect_pads (clearance 0.508))
+    (min_thickness 0.254)
+    (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
+    (polygon
+      (pts
+        (xy 111.76 10.16) (xy 99.06 10.16) (xy 99.06 110.49) (xy 113.03 110.49)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.252829 10.723123) (xy 110.496026 10.796549) (xy 110.720331 10.915814) (xy 110.917199 11.076375) (xy 111.079131 11.272117)
+        (xy 111.199957 11.49558) (xy 111.27508 11.738264) (xy 111.305 12.022929) (xy 111.305001 107.965998) (xy 111.276877 108.252831)
+        (xy 111.203451 108.496028) (xy 111.084185 108.720333) (xy 110.923625 108.917198) (xy 110.727881 109.079132) (xy 110.504416 109.199959)
+        (xy 110.261737 109.27508) (xy 109.97707 109.305) (xy 102.033992 109.305) (xy 101.747169 109.276877) (xy 101.503972 109.203451)
+        (xy 101.279667 109.084185) (xy 101.082802 108.923625) (xy 100.920868 108.727881) (xy 100.800041 108.504416) (xy 100.72492 108.261737)
+        (xy 100.695 107.97707) (xy 100.695 22.898061) (xy 103.965 22.898061) (xy 103.965 23.101939) (xy 104.004774 23.301898)
+        (xy 104.082795 23.490256) (xy 104.115 23.538454) (xy 104.115001 29.461544) (xy 104.082795 29.509744) (xy 104.004774 29.698102)
+        (xy 103.965 29.898061) (xy 103.965 30.101939) (xy 104.004774 30.301898) (xy 104.082795 30.490256) (xy 104.115 30.538454)
+        (xy 104.115001 38.461544) (xy 104.082795 38.509744) (xy 104.004774 38.698102) (xy 103.965 38.898061) (xy 103.965 39.101939)
+        (xy 104.004774 39.301898) (xy 104.082795 39.490256) (xy 104.115 39.538454) (xy 104.115001 47.461544) (xy 104.082795 47.509744)
+        (xy 104.004774 47.698102) (xy 103.965 47.898061) (xy 103.965 48.101939) (xy 104.004774 48.301898) (xy 104.082795 48.490256)
+        (xy 104.115 48.538454) (xy 104.115001 56.461544) (xy 104.082795 56.509744) (xy 104.004774 56.698102) (xy 103.965 56.898061)
+        (xy 103.965 57.101939) (xy 104.004774 57.301898) (xy 104.082795 57.490256) (xy 104.115 57.538454) (xy 104.115001 65.461544)
+        (xy 104.082795 65.509744) (xy 104.004774 65.698102) (xy 103.965 65.898061) (xy 103.965 66.101939) (xy 104.004774 66.301898)
+        (xy 104.082795 66.490256) (xy 104.196063 66.659774) (xy 104.340226 66.803937) (xy 104.509744 66.917205) (xy 104.698102 66.995226)
+        (xy 104.898061 67.035) (xy 105.101939 67.035) (xy 105.115001 67.032402) (xy 105.115001 67.461544) (xy 105.082795 67.509744)
+        (xy 105.004774 67.698102) (xy 104.965 67.898061) (xy 104.965 68.101939) (xy 105.004774 68.301898) (xy 105.082795 68.490256)
+        (xy 105.196063 68.659774) (xy 105.340226 68.803937) (xy 105.509744 68.917205) (xy 105.698102 68.995226) (xy 105.898061 69.035)
+        (xy 106.101939 69.035) (xy 106.301898 68.995226) (xy 106.490256 68.917205) (xy 106.659774 68.803937) (xy 106.803937 68.659774)
+        (xy 106.917205 68.490256) (xy 106.995226 68.301898) (xy 107.035 68.101939) (xy 107.035 67.898061) (xy 106.995226 67.698102)
+        (xy 106.917205 67.509744) (xy 106.885 67.461546) (xy 106.885 59.538454) (xy 106.917205 59.490256) (xy 106.995226 59.301898)
+        (xy 107.035 59.101939) (xy 107.035 58.898061) (xy 106.995226 58.698102) (xy 106.917205 58.509744) (xy 106.885 58.461546)
+        (xy 106.885 50.538454) (xy 106.917205 50.490256) (xy 106.995226 50.301898) (xy 107.035 50.101939) (xy 107.035 49.898061)
+        (xy 106.995226 49.698102) (xy 106.917205 49.509744) (xy 106.885 49.461546) (xy 106.885 41.538454) (xy 106.917205 41.490256)
+        (xy 106.995226 41.301898) (xy 107.035 41.101939) (xy 107.035 40.898061) (xy 106.995226 40.698102) (xy 106.917205 40.509744)
+        (xy 106.885 40.461546) (xy 106.885 32.538454) (xy 106.917205 32.490256) (xy 106.995226 32.301898) (xy 107.035 32.101939)
+        (xy 107.035 31.898061) (xy 106.995226 31.698102) (xy 106.917205 31.509744) (xy 106.885 31.461546) (xy 106.885 16.538454)
+        (xy 106.917205 16.490256) (xy 106.995226 16.301898) (xy 107.035 16.101939) (xy 107.035 15.898061) (xy 106.995226 15.698102)
+        (xy 106.917205 15.509744) (xy 106.803937 15.340226) (xy 106.659774 15.196063) (xy 106.490256 15.082795) (xy 106.301898 15.004774)
+        (xy 106.101939 14.965) (xy 105.898061 14.965) (xy 105.698102 15.004774) (xy 105.509744 15.082795) (xy 105.340226 15.196063)
+        (xy 105.196063 15.340226) (xy 105.082795 15.509744) (xy 105.004774 15.698102) (xy 104.965 15.898061) (xy 104.965 16.101939)
+        (xy 105.004774 16.301898) (xy 105.082795 16.490256) (xy 105.115 16.538454) (xy 105.115 21.967598) (xy 105.101939 21.965)
+        (xy 104.898061 21.965) (xy 104.698102 22.004774) (xy 104.509744 22.082795) (xy 104.340226 22.196063) (xy 104.196063 22.340226)
+        (xy 104.082795 22.509744) (xy 104.004774 22.698102) (xy 103.965 22.898061) (xy 100.695 22.898061) (xy 100.695 12.033992)
+        (xy 100.723123 11.747171) (xy 100.796549 11.503974) (xy 100.915814 11.279669) (xy 101.076375 11.082801) (xy 101.272117 10.920869)
+        (xy 101.49558 10.800043) (xy 101.738264 10.72492) (xy 102.022929 10.695) (xy 109.966008 10.695)
+      )
+    )
+  )
+)
diff --git a/HARDWARE/lightsticks_extender.kicad_pcb-bak b/HARDWARE/lightsticks_extender.kicad_pcb-bak
new file mode 100644 (file)
index 0000000..e14ad61
--- /dev/null
@@ -0,0 +1,1130 @@
+(kicad_pcb (version 20171130) (host pcbnew 5.1.4-e60b266~84~ubuntu18.04.1)
+
+  (general
+    (thickness 1.6)
+    (drawings 10)
+    (tracks 82)
+    (zones 0)
+    (modules 13)
+    (nets 10)
+  )
+
+  (page A4)
+  (layers
+    (0 F.Cu signal)
+    (31 B.Cu signal)
+    (32 B.Adhes user)
+    (33 F.Adhes user)
+    (34 B.Paste user)
+    (35 F.Paste user)
+    (36 B.SilkS user)
+    (37 F.SilkS user)
+    (38 B.Mask user)
+    (39 F.Mask user)
+    (40 Dwgs.User user)
+    (41 Cmts.User user)
+    (42 Eco1.User user)
+    (43 Eco2.User user)
+    (44 Edge.Cuts user)
+    (45 Margin user)
+    (46 B.CrtYd user)
+    (47 F.CrtYd user)
+    (48 B.Fab user)
+    (49 F.Fab user)
+  )
+
+  (setup
+    (last_trace_width 0.25)
+    (user_trace_width 0.5)
+    (trace_clearance 0.2)
+    (zone_clearance 0.508)
+    (zone_45_only no)
+    (trace_min 0.2)
+    (via_size 0.8)
+    (via_drill 0.4)
+    (via_min_size 0.4)
+    (via_min_drill 0.3)
+    (user_via 0.8 0.4)
+    (uvia_size 0.3)
+    (uvia_drill 0.1)
+    (uvias_allowed no)
+    (uvia_min_size 0.2)
+    (uvia_min_drill 0.1)
+    (edge_width 0.05)
+    (segment_width 0.2)
+    (pcb_text_width 0.3)
+    (pcb_text_size 1.5 1.5)
+    (mod_edge_width 0.12)
+    (mod_text_size 1 1)
+    (mod_text_width 0.15)
+    (pad_size 1.524 1.524)
+    (pad_drill 0.762)
+    (pad_to_mask_clearance 0.051)
+    (solder_mask_min_width 0.25)
+    (aux_axis_origin 0 0)
+    (visible_elements FFFFFF7F)
+    (pcbplotparams
+      (layerselection 0x010fc_ffffffff)
+      (usegerberextensions false)
+      (usegerberattributes false)
+      (usegerberadvancedattributes false)
+      (creategerberjobfile false)
+      (excludeedgelayer true)
+      (linewidth 0.100000)
+      (plotframeref false)
+      (viasonmask false)
+      (mode 1)
+      (useauxorigin false)
+      (hpglpennumber 1)
+      (hpglpenspeed 20)
+      (hpglpendiameter 15.000000)
+      (psnegative false)
+      (psa4output false)
+      (plotreference true)
+      (plotvalue true)
+      (plotinvisibletext false)
+      (padsonsilk false)
+      (subtractmaskfromsilk false)
+      (outputformat 1)
+      (mirror false)
+      (drillshape 1)
+      (scaleselection 1)
+      (outputdirectory ""))
+  )
+
+  (net 0 "")
+  (net 1 "Net-(D10-Pad2)")
+  (net 2 "Net-(D10-Pad1)")
+  (net 3 "Net-(J1-Pad1)")
+  (net 4 "Net-(J1-Pad2)")
+  (net 5 "Net-(J1-Pad7)")
+  (net 6 "Net-(J1-Pad10)")
+  (net 7 /+3v3)
+  (net 8 "Net-(J1-Pad3)")
+  (net 9 "Net-(J1-Pad4)")
+
+  (net_class Default "This is the default net class."
+    (clearance 0.2)
+    (trace_width 0.25)
+    (via_dia 0.8)
+    (via_drill 0.4)
+    (uvia_dia 0.3)
+    (uvia_drill 0.1)
+    (add_net /+3v3)
+    (add_net "Net-(D10-Pad1)")
+    (add_net "Net-(D10-Pad2)")
+    (add_net "Net-(J1-Pad1)")
+    (add_net "Net-(J1-Pad10)")
+    (add_net "Net-(J1-Pad2)")
+    (add_net "Net-(J1-Pad3)")
+    (add_net "Net-(J1-Pad4)")
+    (add_net "Net-(J1-Pad7)")
+  )
+
+  (module Shalnoff:dailybeer_logo_bw_inv (layer B.Cu) (tedit 5DC7F1D4) (tstamp 5DC893BD)
+    (at 106 104 90)
+    (descr "Imported from dailybeer_logo_bw_inv.svg")
+    (tags svg2mod)
+    (attr smd)
+    (fp_text reference "dailybeer.eu logo" (at 0 6.248126 270) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_text value G*** (at 0 -6.248126 270) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_poly (pts (xy 1.196341 0.053649) (xy 1.196341 -0.834253) (xy 1.420996 -0.773906) (xy 1.580348 -0.61495)
+      (xy 1.640907 -0.390509) (xy 1.580348 -0.16596) (xy 1.420996 -0.006805) (xy 1.196341 0.053649)) (layer B.SilkS) (width 0))
+    (fp_poly (pts (xy -0.000235 3.2) (xy -1.633016 1.624102) (xy -1.452523 1.763627) (xy -1.239451 1.853558)
+      (xy -1.002293 1.885377) (xy -0.828243 1.867767) (xy -0.660992 1.816566) (xy -0.552016 2.03165)
+      (xy -0.366164 2.176625) (xy -0.131051 2.229867) (xy 0.052892 2.197738) (xy 0.213326 2.107254)
+      (xy 0.336021 1.966485) (xy 0.525485 2.115832) (xy 0.760725 2.169263) (xy 0.966499 2.129032)
+      (xy 1.137016 2.01896) (xy 1.255977 1.854513) (xy 1.307083 1.651156) (xy 1.49951 1.53493)
+      (xy 1.627132 1.355275) (xy 1.67344 1.135329) (xy 1.636451 0.938148) (xy 1.534795 0.77218)
+      (xy 1.381594 0.652108) (xy 1.189973 0.592617) (xy 1.189973 0.492371) (xy 1.421725 0.461311)
+      (xy 1.629886 0.373628) (xy 1.806187 0.237567) (xy 1.942356 0.061374) (xy 2.030122 -0.146707)
+      (xy 2.061216 -0.37843) (xy 2.030119 -0.610152) (xy 1.942351 -0.818232) (xy 1.806183 -0.994426)
+      (xy 1.629884 -1.130487) (xy 1.421724 -1.218171) (xy 1.189973 -1.249231) (xy 1.189973 -1.574127)
+      (xy 1.156416 -1.782207) (xy 1.062944 -1.962312) (xy 0.920359 -2.103948) (xy 0.739461 -2.196625)
+      (xy 0.531051 -2.229849) (xy 0.478677 -2.229849) (xy 0.460331 -2.229849) (xy -0.709397 -2.229849)
+      (xy -0.726677 -2.229849) (xy -0.744811 -2.229849) (xy -0.953214 -2.196625) (xy -1.134103 -2.103948)
+      (xy -1.276681 -1.962312) (xy -1.370146 -1.782207) (xy -1.403701 -1.574127) (xy -1.403701 -1.310746)
+      (xy -1.169035 -1.310746) (xy -1.169035 -1.528561) (xy -1.106069 -1.762006) (xy -0.940427 -1.927651)
+      (xy -0.706987 -1.990618) (xy -0.67104 -1.990618) (xy 0.443605 -1.99063) (xy 0.516459 -1.99063)
+      (xy 0.749314 -1.927664) (xy 0.913861 -1.762019) (xy 0.976235 -1.528574) (xy 0.976235 0.436311)
+      (xy 0.443552 0.436311) (xy -0.301931 0.436779) (xy -0.337344 0.393941) (xy -0.328811 0.349739)
+      (xy -0.328811 -0.799482) (xy -0.376619 -0.915037) (xy -0.492395 -0.962615) (xy -0.608187 -0.915024)
+      (xy -0.655979 -0.799482) (xy -0.655979 0.171113) (xy -0.821347 0.121454) (xy -0.993195 0.104595)
+      (xy -1.169077 0.122825) (xy -1.169077 -1.289777) (xy -1.403755 -1.289777) (xy -1.403755 0.197556)
+      (xy -1.607149 0.338451) (xy -1.761575 0.525945) (xy -1.859666 0.748146) (xy -1.894059 0.993159)
+      (xy -1.862279 1.230349) (xy -1.772433 1.443503) (xy -1.633016 1.624102) (xy -0.000235 3.2)
+      (xy -0.262683 3.189377) (xy -0.519287 3.158086) (xy -0.769223 3.106953) (xy -1.011668 3.036799)
+      (xy -1.245799 2.94845) (xy -1.47079 2.842728) (xy -1.685821 2.720458) (xy -1.890065 2.582462)
+      (xy -2.082702 2.429565) (xy -2.262905 2.262591) (xy -2.429853 2.082362) (xy -2.582722 1.889703)
+      (xy -2.720688 1.685437) (xy -2.842928 1.470388) (xy -2.948618 1.245379) (xy -3.036935 1.011235)
+      (xy -3.107055 0.768778) (xy -3.158155 0.518833) (xy -3.189411 0.262223) (xy -3.2 -0.000228)
+      (xy -3.189378 -0.262654) (xy -3.158094 -0.519237) (xy -3.10697 -0.769154) (xy -3.03683 -1.011581)
+      (xy -2.948497 -1.245696) (xy -2.842794 -1.470674) (xy -2.720546 -1.685693) (xy -2.582575 -1.889929)
+      (xy -2.429704 -2.082558) (xy -2.262757 -2.262758) (xy -2.082558 -2.429705) (xy -1.889929 -2.582576)
+      (xy -1.685694 -2.720548) (xy -1.470675 -2.842796) (xy -1.245698 -2.948498) (xy -1.011584 -3.036831)
+      (xy -0.769158 -3.106971) (xy -0.519242 -3.158095) (xy -0.26266 -3.189379) (xy -0.000235 -3.2)
+      (xy 0.262217 -3.189411) (xy 0.518827 -3.158154) (xy 0.768773 -3.107054) (xy 1.011229 -3.036934)
+      (xy 1.245374 -2.948617) (xy 1.470383 -2.842927) (xy 1.685432 -2.720688) (xy 1.889698 -2.582722)
+      (xy 2.082358 -2.429853) (xy 2.262587 -2.262905) (xy 2.429562 -2.082701) (xy 2.582459 -1.890064)
+      (xy 2.720454 -1.685819) (xy 2.842725 -1.470789) (xy 2.948447 -1.245796) (xy 3.036797 -1.011666)
+      (xy 3.106951 -0.76922) (xy 3.158085 -0.519283) (xy 3.189376 -0.262678) (xy 3.2 -0.000228)
+      (xy 3.189409 0.262247) (xy 3.158147 0.518879) (xy 3.107037 0.768844) (xy 3.036904 1.011319)
+      (xy 2.94857 1.24548) (xy 2.842861 1.470503) (xy 2.720599 1.685564) (xy 2.582609 1.889839)
+      (xy 2.429714 2.082505) (xy 2.262739 2.262737) (xy 2.082506 2.429713) (xy 1.88984 2.582608)
+      (xy 1.685564 2.720598) (xy 1.470502 2.84286) (xy 1.245479 2.948569) (xy 1.011317 3.036903)
+      (xy 0.768841 3.107036) (xy 0.518875 3.158146) (xy 0.262242 3.189409) (xy -0.000235 3.2)) (layer B.SilkS) (width 0))
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC821EA)
+    (at 106 94 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBE1B7)
+    (attr smd)
+    (fp_text reference D11 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Shalnoff:ce_logo_2mm (layer F.Cu) (tedit 5DC7F32E) (tstamp 5DC88D7B)
+    (at 102.25 39 90)
+    (descr "Imported from ce_logo.svg")
+    (tags svg2mod)
+    (attr smd)
+    (fp_text reference "copyleft electronics logo" (at 0 -4.114755 90) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_text value G*** (at 0 4.114755 90) (layer F.SilkS) hide
+      (effects (font (size 1.524 1.524) (thickness 0.3048)))
+    )
+    (fp_circle (center -0.45 0) (end -0.43 0) (layer F.SilkS) (width 0.15))
+    (fp_poly (pts (xy -0.218821 -0.223565) (xy -0.239195 -0.174338) (xy -0.218821 -0.125122) (xy -0.169648 -0.104695)
+      (xy -0.120475 -0.125122) (xy -0.062506 -0.163816) (xy 0.003104 -0.176714) (xy 0.068714 -0.163816)
+      (xy 0.126683 -0.125122) (xy 0.165353 -0.067179) (xy 0.178203 -0.001625) (xy 0.165293 0.06393)
+      (xy 0.126683 0.121874) (xy 0.068728 0.16058) (xy 0.003147 0.173504) (xy -0.062434 0.160633)
+      (xy -0.120389 0.121954) (xy -0.169989 0.100311) (xy -0.220229 0.120642) (xy -0.240603 0.170829)
+      (xy -0.218843 0.220482) (xy -0.162242 0.265291) (xy -0.098832 0.295148) (xy -0.031336 0.310057)
+      (xy 0.037522 0.310026) (xy 0.105018 0.29506) (xy 0.168429 0.265166) (xy 0.225029 0.220349)
+      (xy 0.269857 0.163748) (xy 0.299756 0.100338) (xy 0.31472 0.032843) (xy 0.314738 -0.036015)
+      (xy 0.299801 -0.103511) (xy 0.269901 -0.166921) (xy 0.225029 -0.223521) (xy 0.158242 -0.274347)
+      (xy 0.082793 -0.30483) (xy 0.003013 -0.314988) (xy -0.076788 -0.304833) (xy -0.152243 -0.274352)
+      (xy -0.219024 -0.223521) (xy -0.219024 -0.223535) (xy -0.218821 -0.223565)) (layer F.SilkS) (width 0))
+    (fp_poly (pts (xy -0.802992 -0.271406) (xy -0.841699 -0.226109) (xy -0.872325 -0.176579) (xy -0.893059 -0.129407)
+      (xy -0.906992 -0.080291) (xy -0.914459 -0.02943) (xy -0.915525 0.019943) (xy -0.909299 0.076015)
+      (xy -0.894512 0.130787) (xy -0.894416 0.13088) (xy -1.066661 0.302966) (xy -0.905787 0.464013)
+      (xy -0.760699 0.318914) (xy -0.616005 0.463613) (xy -0.761019 0.608779) (xy -0.600133 0.769664)
+      (xy -0.455045 0.624565) (xy -0.318672 0.760784) (xy -0.46392 0.90587) (xy -0.303045 1.066755)
+      (xy -0.132432 0.896295) (xy -0.074848 0.912534) (xy -0.01576 0.919773) (xy 0.033453 0.918826)
+      (xy 0.082267 0.911879) (xy 0.134547 0.897097) (xy 0.184667 0.874866) (xy 0.232187 0.844901)
+      (xy 0.275867 0.807367) (xy 0.536197 0.547024) (xy 0.375323 0.386151) (xy 0.114992 0.646481)
+      (xy 0.067952 0.679804) (xy -0.003088 0.69446) (xy -0.053541 0.68422) (xy -0.111035 0.646438)
+      (xy -0.642341 0.115472) (xy -0.679568 0.059024) (xy -0.690341 -0.000773) (xy -0.678821 -0.056187)
+      (xy -0.642448 -0.110587) (xy -0.111077 -0.641793) (xy -0.057741 -0.67779) (xy 0.002011 -0.689772)
+      (xy 0.061643 -0.677794) (xy 0.114907 -0.641793) (xy 0.645947 -0.110601) (xy 0.681975 -0.05726)
+      (xy 0.693936 0.002441) (xy 0.681881 0.06214) (xy 0.645861 0.115475) (xy 0.375248 0.386085)
+      (xy 0.536123 0.546971) (xy 0.806747 0.276362) (xy 0.854941 0.217548) (xy 0.889793 0.152239)
+      (xy 0.911299 0.082522) (xy 0.919455 0.010486) (xy 0.914259 -0.06178) (xy 0.895707 -0.132188)
+      (xy 1.066661 -0.30314) (xy 0.905787 -0.464013) (xy 0.760101 -0.318169) (xy 0.623803 -0.454452)
+      (xy 0.769573 -0.600231) (xy 0.608688 -0.761104) (xy 0.462843 -0.615419) (xy 0.318139 -0.760277)
+      (xy 0.46392 -0.90587) (xy 0.302864 -1.066755) (xy 0.129861 -0.893909) (xy 0.066675 -0.910033)
+      (xy 0.001968 -0.915413) (xy -0.072205 -0.908372) (xy -0.144097 -0.887241) (xy -0.211448 -0.852012)
+      (xy -0.271995 -0.802676) (xy -0.803376 -0.27147) (xy -0.803365 -0.27147) (xy -0.802992 -0.271406)) (layer F.SilkS) (width 0))
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC821B4)
+    (at 106 31 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBA50D)
+    (attr smd)
+    (fp_text reference D4 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC8217E)
+    (at 106 40 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBA842)
+    (attr smd)
+    (fp_text reference D5 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC82148)
+    (at 106 49 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBAA77)
+    (attr smd)
+    (fp_text reference D6 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC82112)
+    (at 106 58 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBAD6A)
+    (attr smd)
+    (fp_text reference D7 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC82256)
+    (at 106 67 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB05D)
+    (attr smd)
+    (fp_text reference D8 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC822C2)
+    (at 106 103 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB3AD)
+    (attr smd)
+    (fp_text reference D9 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC82220)
+    (at 106 76 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DBBB570)
+    (attr smd)
+    (fp_text reference D10 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder (layer F.Cu) (tedit 5B4B45C9) (tstamp 5DC8228C)
+    (at 106 85 90)
+    (descr "LED SMD 2512 (6332 Metric), square (rectangular) end terminal, IPC_7351 nominal, (Body size source: http://www.tortai-tech.com/upload/download/2011102023233369053.pdf), generated with kicad-footprint-generator")
+    (tags "LED handsolder")
+    (path /5DE5D3FE)
+    (attr smd)
+    (fp_text reference D12 (at 0 -2.62 90) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value LED (at 0 2.62 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 3.15 -1.6) (end -2.35 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.35 -1.6) (end -3.15 -0.8) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 -0.8) (end -3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -3.15 1.6) (end 3.15 1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 1.6) (end 3.15 -1.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 3.15 -1.935) (end -4.01 -1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 -1.935) (end -4.01 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.01 1.935) (end 3.15 1.935) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4 1.92) (end -4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4 -1.92) (end 4 -1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 -1.92) (end 4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4 1.92) (end -4 1.92) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd roundrect (at -2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 2 smd roundrect (at 2.9875 0 90) (size 1.525 3.35) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.163934)
+      (net 1 "Net-(D10-Pad2)"))
+    (model ${KISYS3DMOD}/LED_SMD.3dshapes/LED_2512_6332Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder (layer F.Cu) (tedit 5B36C52B) (tstamp 5DC804EC)
+    (at 106 25)
+    (descr "Resistor SMD 0805 (2012 Metric), square (rectangular) end terminal, IPC_7351 nominal with elongated pad for handsoldering. (Body size source: https://docs.google.com/spreadsheets/d/1BsfQQcO9C6DZCsRaXUlFlo91Tg2WpOkGARC1WS5S8t0/edit?usp=sharing), generated with kicad-footprint-generator")
+    (tags "resistor handsolder")
+    (path /5DC54CBB)
+    (attr smd)
+    (fp_text reference R12 (at 0 -1.65) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value 1R (at 0 1.65) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start -1 0.6) (end -1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -1 -0.6) (end 1 -0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 -0.6) (end 1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start 1 0.6) (end -1 0.6) (layer F.Fab) (width 0.1))
+    (fp_line (start -0.261252 -0.71) (end 0.261252 -0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -0.261252 0.71) (end 0.261252 0.71) (layer F.SilkS) (width 0.12))
+    (fp_line (start -1.85 0.95) (end -1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -1.85 -0.95) (end 1.85 -0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 -0.95) (end 1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 1.85 0.95) (end -1.85 0.95) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0) (layer F.Fab) hide
+      (effects (font (size 0.5 0.5) (thickness 0.08)))
+    )
+    (pad 1 smd roundrect (at -1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 1 "Net-(D10-Pad2)"))
+    (pad 2 smd roundrect (at 1.025 0) (size 1.15 1.4) (layers F.Cu F.Paste F.Mask) (roundrect_rratio 0.217391)
+      (net 7 /+3v3))
+    (model ${KISYS3DMOD}/Resistor_SMD.3dshapes/R_0805_2012Metric.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (module Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD (layer F.Cu) (tedit 59FED667) (tstamp 5DC81F9C)
+    (at 106 17.1)
+    (descr "surface-mounted straight pin header, 2x05, 2.00mm pitch, double rows")
+    (tags "Surface mounted pin header SMD 2x05 2.00mm double row")
+    (path /5DC8206E)
+    (attr smd)
+    (fp_text reference J1 (at 0 -6.06) (layer F.SilkS) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_text value CONN_05X2NO_SILK (at 0 6.06) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (fp_line (start 2 5) (end -2 5) (layer F.Fab) (width 0.1))
+    (fp_line (start -1.25 -5) (end 2 -5) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 5) (end -2 -4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 -4.25) (end -1.25 -5) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 -5) (end 2 5) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 -4.25) (end -2.875 -4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 -4.25) (end -2.875 -3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 -3.75) (end -2 -3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 -4.25) (end 2.875 -4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 -4.25) (end 2.875 -3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 -3.75) (end 2 -3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 -2.25) (end -2.875 -2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 -2.25) (end -2.875 -1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 -1.75) (end -2 -1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 -2.25) (end 2.875 -2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 -2.25) (end 2.875 -1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 -1.75) (end 2 -1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 -0.25) (end -2.875 -0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 -0.25) (end -2.875 0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 0.25) (end -2 0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 -0.25) (end 2.875 -0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 -0.25) (end 2.875 0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 0.25) (end 2 0.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 1.75) (end -2.875 1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 1.75) (end -2.875 2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 2.25) (end -2 2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 1.75) (end 2.875 1.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 1.75) (end 2.875 2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 2.25) (end 2 2.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2 3.75) (end -2.875 3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 3.75) (end -2.875 4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.875 4.25) (end -2 4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2 3.75) (end 2.875 3.75) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 3.75) (end 2.875 4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start 2.875 4.25) (end 2 4.25) (layer F.Fab) (width 0.1))
+    (fp_line (start -2.06 -5.06) (end 2.06 -5.06) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 5.06) (end 2.06 5.06) (layer F.SilkS) (width 0.12))
+    (fp_line (start -3.315 -4.76) (end -2.06 -4.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 -5.06) (end -2.06 -4.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 -5.06) (end 2.06 -4.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 4.76) (end -2.06 5.06) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 4.76) (end 2.06 5.06) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 -3.24) (end -2.06 -2.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 -3.24) (end 2.06 -2.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 -1.24) (end -2.06 -0.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 -1.24) (end 2.06 -0.76) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 0.76) (end -2.06 1.24) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 0.76) (end 2.06 1.24) (layer F.SilkS) (width 0.12))
+    (fp_line (start -2.06 2.76) (end -2.06 3.24) (layer F.SilkS) (width 0.12))
+    (fp_line (start 2.06 2.76) (end 2.06 3.24) (layer F.SilkS) (width 0.12))
+    (fp_line (start -4.9 -5.5) (end -4.9 5.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start -4.9 5.5) (end 4.9 5.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4.9 5.5) (end 4.9 -5.5) (layer F.CrtYd) (width 0.05))
+    (fp_line (start 4.9 -5.5) (end -4.9 -5.5) (layer F.CrtYd) (width 0.05))
+    (fp_text user %R (at 0 0 90) (layer F.Fab) hide
+      (effects (font (size 1 1) (thickness 0.15)))
+    )
+    (pad 1 smd rect (at -2.085 -4) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 3 "Net-(J1-Pad1)"))
+    (pad 2 smd rect (at 2.085 -4) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 4 "Net-(J1-Pad2)"))
+    (pad 3 smd rect (at -2.085 -2) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 8 "Net-(J1-Pad3)"))
+    (pad 4 smd rect (at 2.085 -2) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 9 "Net-(J1-Pad4)"))
+    (pad 5 smd rect (at -2.085 0) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 7 /+3v3))
+    (pad 6 smd rect (at 2.085 0) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 2 "Net-(D10-Pad1)"))
+    (pad 7 smd rect (at -2.085 2) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 5 "Net-(J1-Pad7)"))
+    (pad 8 smd rect (at 2.085 2) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 6 "Net-(J1-Pad10)"))
+    (pad 9 smd rect (at -2.085 4) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 5 "Net-(J1-Pad7)"))
+    (pad 10 smd rect (at 2.085 4) (size 2.58 1) (layers F.Cu F.Paste F.Mask)
+      (net 6 "Net-(J1-Pad10)"))
+    (model ${KISYS3DMOD}/Connector_PinHeader_2.00mm.3dshapes/PinHeader_2x05_P2.00mm_Vertical_SMD.wrl
+      (at (xyz 0 0 0))
+      (scale (xyz 1 1 1))
+      (rotate (xyz 0 0 0))
+    )
+  )
+
+  (gr_text https://dailybeer.eu/merch/lightstick (at 109.8 66 90) (layer F.SilkS) (tstamp 5DC88D8A)
+    (effects (font (size 1 1) (thickness 0.13)) (justify left))
+  )
+  (gr_text "Pocket photo-lightstick extender     rev 0.1 (1119)" (at 102.15 66.04 90) (layer F.SilkS) (tstamp 5DC88D66)
+    (effects (font (size 1 1) (thickness 0.13)) (justify left))
+  )
+  (gr_line (start 102 110) (end 110 110) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530DC))
+  (gr_arc (start 110 108) (end 110 110) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530D0))
+  (gr_arc (start 102 108) (end 100 108) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530CF))
+  (gr_line (start 102 10) (end 110 10) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530CA))
+  (gr_arc (start 102 12) (end 102 10) (angle -90) (layer Edge.Cuts) (width 0.12) (tstamp 5DC530C5))
+  (gr_arc (start 110 12) (end 112 12) (angle -90) (layer Edge.Cuts) (width 0.12))
+  (gr_line (start 112 12) (end 112 108) (layer Edge.Cuts) (width 0.12) (tstamp 5DC53073))
+  (gr_line (start 100 12) (end 100 108) (layer Edge.Cuts) (width 0.12))
+
+  (via (at 105 23) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 104.975 25) (end 104.975 23.025) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 104.975 23.025) (end 105 23) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 105 30) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 105 23) (end 105 30) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 105 29.0125) (end 106 28.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105 30) (end 105 29.0125) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 105 39) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 105 30) (end 105 39) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 105 38.0125) (end 106 37.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105 39) (end 105 38.0125) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 105 48) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 105 39) (end 105 48) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 105 47.0125) (end 106 46.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105 48) (end 105 47.0125) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 105 57) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 105 48) (end 105 57) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 105 56.0125) (end 106 55.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105 57) (end 105 56.0125) (width 0.25) (layer F.Cu) (net 1))
+  (via (at 105 66) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 1))
+  (segment (start 105 57) (end 105 66) (width 0.5) (layer B.Cu) (net 1))
+  (segment (start 105 65.0125) (end 106 64.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105 66) (end 105 65.0125) (width 0.25) (layer F.Cu) (net 1))
+  (segment (start 105.16679 72.17929) (end 106 73.0125) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 70.88749) (end 105.16679 72.17929) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 67.12501) (end 103.87499 70.88749) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 105 66) (end 103.87499 67.12501) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 105.16679 81.17929) (end 106 82.0125) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 79.88749) (end 105.16679 81.17929) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 104.225 73.0125) (end 103.87499 73.36251) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 73.36251) (end 103.87499 79.88749) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 106 73.0125) (end 104.225 73.0125) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 105.16679 90.17929) (end 106 91.0125) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 88.88749) (end 105.16679 90.17929) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 84.13751) (end 103.87499 88.88749) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 106 82.0125) (end 103.87499 84.13751) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 105.16679 99.17929) (end 106 100.0125) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 97.88749) (end 105.16679 99.17929) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 103.87499 91.36251) (end 103.87499 97.88749) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 104.225 91.0125) (end 103.87499 91.36251) (width 0.5) (layer F.Cu) (net 1))
+  (segment (start 106 91.0125) (end 104.225 91.0125) (width 0.5) (layer F.Cu) (net 1))
+  (via (at 106 16) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (via (at 106 32) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106 16) (end 106 32) (width 0.5) (layer B.Cu) (net 2) (tstamp 5DC83BC0))
+  (segment (start 106 32) (end 106 33.9875) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 106 41) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106 32) (end 106 41) (width 0.5) (layer B.Cu) (net 2))
+  (segment (start 106 41) (end 106 42.9875) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 106 50) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106 41) (end 106 50) (width 0.5) (layer B.Cu) (net 2))
+  (segment (start 106 50) (end 106 51.9875) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 106 59) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106 50) (end 106 59) (width 0.5) (layer B.Cu) (net 2))
+  (segment (start 106 59) (end 106 60.9875) (width 0.25) (layer F.Cu) (net 2))
+  (via (at 106 68) (size 0.8) (drill 0.4) (layers F.Cu B.Cu) (net 2))
+  (segment (start 106 59) (end 106 68) (width 0.5) (layer B.Cu) (net 2))
+  (segment (start 106 68) (end 106 69.9875) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 106.83321 97.82071) (end 106 96.9875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.5 99.4875) (end 106.83321 97.82071) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.5 103.4875) (end 108.5 99.4875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106 105.9875) (end 108.5 103.4875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106.83321 79.82071) (end 106 78.9875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 81.11251) (end 106.83321 79.82071) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 85.86249) (end 108.12501 81.11251) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106 87.9875) (end 108.12501 85.86249) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106.83321 96.15429) (end 106 96.9875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 94.86249) (end 106.83321 96.15429) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 90.11251) (end 108.12501 94.86249) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106 87.9875) (end 108.12501 90.11251) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106.83321 78.15429) (end 106 78.9875) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 72.11251) (end 108.12501 76.86249) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.12501 76.86249) (end 106.83321 78.15429) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106 69.9875) (end 108.12501 72.11251) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 108.085 17.1) (end 107.295 17.1) (width 0.25) (layer F.Cu) (net 2))
+  (segment (start 107.1 17.1) (end 108.085 17.1) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 106 16) (end 107.1 17.1) (width 0.5) (layer F.Cu) (net 2))
+  (segment (start 103.915 19.1) (end 103.915 21.1) (width 0.25) (layer F.Cu) (net 5))
+  (segment (start 108.085 19.1) (end 108.085 21.1) (width 0.25) (layer F.Cu) (net 6))
+  (segment (start 106 23.975) (end 107.025 25) (width 0.5) (layer F.Cu) (net 7))
+  (segment (start 106 18.395) (end 106 23.975) (width 0.5) (layer F.Cu) (net 7))
+  (segment (start 104.705 17.1) (end 103.915 17.1) (width 0.5) (layer F.Cu) (net 7))
+  (segment (start 106 18.395) (end 104.705 17.1) (width 0.5) (layer F.Cu) (net 7))
+
+  (zone (net 0) (net_name "") (layer F.Cu) (tstamp 0) (hatch edge 0.508)
+    (connect_pads (clearance 0.508))
+    (min_thickness 0.254)
+    (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
+    (polygon
+      (pts
+        (xy 111.76 10.16) (xy 100.33 10.16) (xy 99.06 11.43) (xy 99.06 110.49) (xy 113.03 110.49)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.252829 10.723123) (xy 110.496026 10.796549) (xy 110.720331 10.915814) (xy 110.917199 11.076375) (xy 111.079131 11.272117)
+        (xy 111.199957 11.49558) (xy 111.27508 11.738264) (xy 111.305 12.022929) (xy 111.305001 107.965998) (xy 111.276877 108.252831)
+        (xy 111.203451 108.496028) (xy 111.084185 108.720333) (xy 110.923625 108.917198) (xy 110.727881 109.079132) (xy 110.504416 109.199959)
+        (xy 110.261737 109.27508) (xy 109.97707 109.305) (xy 102.033992 109.305) (xy 101.747169 109.276877) (xy 101.503972 109.203451)
+        (xy 101.279667 109.084185) (xy 101.082802 108.923625) (xy 100.920868 108.727881) (xy 100.800041 108.504416) (xy 100.72492 108.261737)
+        (xy 100.695 107.97707) (xy 100.695 67.12501) (xy 102.985709 67.12501) (xy 102.98999 67.168479) (xy 102.989991 70.844011)
+        (xy 102.985709 70.88749) (xy 103.002795 71.06098) (xy 103.053402 71.227803) (xy 103.13558 71.381549) (xy 103.218458 71.482536)
+        (xy 103.218461 71.482539) (xy 103.246174 71.516307) (xy 103.279941 71.544019) (xy 103.803831 72.06791) (xy 103.754528 72.160149)
+        (xy 103.716731 72.284751) (xy 103.596183 72.383683) (xy 103.568466 72.417456) (xy 103.279946 72.705976) (xy 103.246173 72.733693)
+        (xy 103.135579 72.868452) (xy 103.053401 73.022198) (xy 103.002795 73.189021) (xy 102.98999 73.319034) (xy 102.98999 73.319041)
+        (xy 102.985709 73.36251) (xy 102.98999 73.405979) (xy 102.989991 79.844011) (xy 102.985709 79.88749) (xy 103.002795 80.06098)
+        (xy 103.053402 80.227803) (xy 103.13558 80.381549) (xy 103.218458 80.482536) (xy 103.218461 80.482539) (xy 103.246174 80.516307)
+        (xy 103.279941 80.544019) (xy 103.803831 81.06791) (xy 103.754528 81.160149) (xy 103.703992 81.326745) (xy 103.686928 81.499999)
+        (xy 103.686928 82.525001) (xy 103.703992 82.698255) (xy 103.754528 82.864851) (xy 103.803831 82.957091) (xy 103.279946 83.480976)
+        (xy 103.246173 83.508693) (xy 103.135579 83.643452) (xy 103.053401 83.797198) (xy 103.002795 83.964021) (xy 102.98999 84.094034)
+        (xy 102.98999 84.094041) (xy 102.985709 84.13751) (xy 102.98999 84.180979) (xy 102.989991 88.844011) (xy 102.985709 88.88749)
+        (xy 103.002795 89.06098) (xy 103.053402 89.227803) (xy 103.13558 89.381549) (xy 103.218458 89.482536) (xy 103.218461 89.482539)
+        (xy 103.246174 89.516307) (xy 103.279941 89.544019) (xy 103.803831 90.06791) (xy 103.754528 90.160149) (xy 103.716731 90.284751)
+        (xy 103.596183 90.383683) (xy 103.568466 90.417456) (xy 103.279946 90.705976) (xy 103.246173 90.733693) (xy 103.135579 90.868452)
+        (xy 103.053401 91.022198) (xy 103.002795 91.189021) (xy 102.98999 91.319034) (xy 102.98999 91.319041) (xy 102.985709 91.36251)
+        (xy 102.98999 91.405979) (xy 102.989991 97.844011) (xy 102.985709 97.88749) (xy 103.002795 98.06098) (xy 103.053402 98.227803)
+        (xy 103.13558 98.381549) (xy 103.218458 98.482536) (xy 103.218461 98.482539) (xy 103.246174 98.516307) (xy 103.279941 98.544019)
+        (xy 103.803831 99.06791) (xy 103.754528 99.160149) (xy 103.703992 99.326745) (xy 103.686928 99.499999) (xy 103.686928 100.525001)
+        (xy 103.703992 100.698255) (xy 103.754528 100.864851) (xy 103.836595 101.018387) (xy 103.947038 101.152962) (xy 104.081613 101.263405)
+        (xy 104.235149 101.345472) (xy 104.401745 101.396008) (xy 104.574999 101.413072) (xy 107.425001 101.413072) (xy 107.598255 101.396008)
+        (xy 107.615001 101.390928) (xy 107.615 103.120921) (xy 106.148994 104.586928) (xy 104.574999 104.586928) (xy 104.401745 104.603992)
+        (xy 104.235149 104.654528) (xy 104.081613 104.736595) (xy 103.947038 104.847038) (xy 103.836595 104.981613) (xy 103.754528 105.135149)
+        (xy 103.703992 105.301745) (xy 103.686928 105.474999) (xy 103.686928 106.500001) (xy 103.703992 106.673255) (xy 103.754528 106.839851)
+        (xy 103.836595 106.993387) (xy 103.947038 107.127962) (xy 104.081613 107.238405) (xy 104.235149 107.320472) (xy 104.401745 107.371008)
+        (xy 104.574999 107.388072) (xy 107.425001 107.388072) (xy 107.598255 107.371008) (xy 107.764851 107.320472) (xy 107.918387 107.238405)
+        (xy 108.052962 107.127962) (xy 108.163405 106.993387) (xy 108.245472 106.839851) (xy 108.296008 106.673255) (xy 108.313072 106.500001)
+        (xy 108.313072 105.474999) (xy 108.296008 105.301745) (xy 108.245472 105.135149) (xy 108.196169 105.04291) (xy 109.09505 104.144029)
+        (xy 109.128817 104.116317) (xy 109.239411 103.981559) (xy 109.321589 103.827813) (xy 109.372195 103.66099) (xy 109.385 103.530977)
+        (xy 109.385 103.530969) (xy 109.389281 103.4875) (xy 109.385 103.444031) (xy 109.385 99.530966) (xy 109.389281 99.487499)
+        (xy 109.385 99.444033) (xy 109.385 99.444023) (xy 109.372195 99.31401) (xy 109.321589 99.147187) (xy 109.239411 98.993441)
+        (xy 109.128817 98.858683) (xy 109.095049 98.83097) (xy 108.196169 97.93209) (xy 108.245472 97.839851) (xy 108.296008 97.673255)
+        (xy 108.313072 97.500001) (xy 108.313072 96.474999) (xy 108.296008 96.301745) (xy 108.245472 96.135149) (xy 108.196169 96.04291)
+        (xy 108.720059 95.51902) (xy 108.753827 95.491307) (xy 108.816551 95.414879) (xy 108.86442 95.35655) (xy 108.904217 95.282095)
+        (xy 108.946599 95.202803) (xy 108.997205 95.03598) (xy 109.01001 94.905967) (xy 109.01001 94.905957) (xy 109.014291 94.862491)
+        (xy 109.01001 94.819024) (xy 109.01001 90.155979) (xy 109.014291 90.11251) (xy 109.01001 90.069041) (xy 109.01001 90.069033)
+        (xy 108.997205 89.93902) (xy 108.946599 89.772197) (xy 108.864421 89.618451) (xy 108.836347 89.584243) (xy 108.781542 89.517463)
+        (xy 108.78154 89.517461) (xy 108.753827 89.483693) (xy 108.72006 89.455981) (xy 108.196169 88.93209) (xy 108.245472 88.839851)
+        (xy 108.296008 88.673255) (xy 108.313072 88.500001) (xy 108.313072 87.474999) (xy 108.296008 87.301745) (xy 108.245472 87.135149)
+        (xy 108.196169 87.04291) (xy 108.72006 86.519019) (xy 108.753827 86.491307) (xy 108.864421 86.356549) (xy 108.946599 86.202803)
+        (xy 108.997205 86.03598) (xy 109.01001 85.905967) (xy 109.01001 85.905959) (xy 109.014291 85.86249) (xy 109.01001 85.819021)
+        (xy 109.01001 81.155976) (xy 109.014291 81.112509) (xy 109.01001 81.069043) (xy 109.01001 81.069033) (xy 108.997205 80.93902)
+        (xy 108.946599 80.772197) (xy 108.864421 80.618451) (xy 108.836347 80.584243) (xy 108.781542 80.517463) (xy 108.78154 80.517461)
+        (xy 108.753827 80.483693) (xy 108.720059 80.45598) (xy 108.196169 79.93209) (xy 108.245472 79.839851) (xy 108.296008 79.673255)
+        (xy 108.313072 79.500001) (xy 108.313072 78.474999) (xy 108.296008 78.301745) (xy 108.245472 78.135149) (xy 108.196169 78.04291)
+        (xy 108.720059 77.51902) (xy 108.753827 77.491307) (xy 108.816551 77.414879) (xy 108.86442 77.35655) (xy 108.904217 77.282095)
+        (xy 108.946599 77.202803) (xy 108.997205 77.03598) (xy 109.01001 76.905967) (xy 109.01001 76.905957) (xy 109.014291 76.862491)
+        (xy 109.01001 76.819024) (xy 109.01001 72.155979) (xy 109.014291 72.11251) (xy 109.01001 72.069041) (xy 109.01001 72.069033)
+        (xy 108.997205 71.93902) (xy 108.946599 71.772197) (xy 108.864421 71.618451) (xy 108.836347 71.584243) (xy 108.781542 71.517463)
+        (xy 108.78154 71.517461) (xy 108.753827 71.483693) (xy 108.72006 71.455981) (xy 108.196169 70.93209) (xy 108.245472 70.839851)
+        (xy 108.296008 70.673255) (xy 108.313072 70.500001) (xy 108.313072 69.474999) (xy 108.296008 69.301745) (xy 108.245472 69.135149)
+        (xy 108.163405 68.981613) (xy 108.052962 68.847038) (xy 107.918387 68.736595) (xy 107.764851 68.654528) (xy 107.598255 68.603992)
+        (xy 107.425001 68.586928) (xy 106.852611 68.586928) (xy 106.917205 68.490256) (xy 106.995226 68.301898) (xy 107.035 68.101939)
+        (xy 107.035 67.898061) (xy 106.995226 67.698102) (xy 106.917205 67.509744) (xy 106.803937 67.340226) (xy 106.659774 67.196063)
+        (xy 106.490256 67.082795) (xy 106.301898 67.004774) (xy 106.101939 66.965) (xy 105.898061 66.965) (xy 105.698102 67.004774)
+        (xy 105.509744 67.082795) (xy 105.340226 67.196063) (xy 105.196063 67.340226) (xy 105.082795 67.509744) (xy 105.004774 67.698102)
+        (xy 104.965 67.898061) (xy 104.965 68.101939) (xy 105.004774 68.301898) (xy 105.082795 68.490256) (xy 105.147389 68.586928)
+        (xy 104.75999 68.586928) (xy 104.75999 67.491588) (xy 105.245044 67.006535) (xy 105.301898 66.995226) (xy 105.490256 66.917205)
+        (xy 105.659774 66.803937) (xy 105.803937 66.659774) (xy 105.917205 66.490256) (xy 105.995226 66.301898) (xy 106.035 66.101939)
+        (xy 106.035 65.898061) (xy 105.995226 65.698102) (xy 105.917205 65.509744) (xy 105.852611 65.413072) (xy 107.425001 65.413072)
+        (xy 107.598255 65.396008) (xy 107.764851 65.345472) (xy 107.918387 65.263405) (xy 108.052962 65.152962) (xy 108.163405 65.018387)
+        (xy 108.245472 64.864851) (xy 108.296008 64.698255) (xy 108.313072 64.525001) (xy 108.313072 63.499999) (xy 108.296008 63.326745)
+        (xy 108.245472 63.160149) (xy 108.163405 63.006613) (xy 108.052962 62.872038) (xy 107.918387 62.761595) (xy 107.764851 62.679528)
+        (xy 107.598255 62.628992) (xy 107.425001 62.611928) (xy 104.574999 62.611928) (xy 104.401745 62.628992) (xy 104.235149 62.679528)
+        (xy 104.081613 62.761595) (xy 103.947038 62.872038) (xy 103.836595 63.006613) (xy 103.754528 63.160149) (xy 103.703992 63.326745)
+        (xy 103.686928 63.499999) (xy 103.686928 64.525001) (xy 103.703992 64.698255) (xy 103.754528 64.864851) (xy 103.836595 65.018387)
+        (xy 103.947038 65.152962) (xy 104.081613 65.263405) (xy 104.206259 65.33003) (xy 104.196063 65.340226) (xy 104.082795 65.509744)
+        (xy 104.004774 65.698102) (xy 103.993465 65.754956) (xy 103.279946 66.468476) (xy 103.246173 66.496193) (xy 103.135579 66.630952)
+        (xy 103.053401 66.784698) (xy 103.002795 66.951521) (xy 102.98999 67.081534) (xy 102.98999 67.081541) (xy 102.985709 67.12501)
+        (xy 100.695 67.12501) (xy 100.695 60.474999) (xy 103.686928 60.474999) (xy 103.686928 61.500001) (xy 103.703992 61.673255)
+        (xy 103.754528 61.839851) (xy 103.836595 61.993387) (xy 103.947038 62.127962) (xy 104.081613 62.238405) (xy 104.235149 62.320472)
+        (xy 104.401745 62.371008) (xy 104.574999 62.388072) (xy 107.425001 62.388072) (xy 107.598255 62.371008) (xy 107.764851 62.320472)
+        (xy 107.918387 62.238405) (xy 108.052962 62.127962) (xy 108.163405 61.993387) (xy 108.245472 61.839851) (xy 108.296008 61.673255)
+        (xy 108.313072 61.500001) (xy 108.313072 60.474999) (xy 108.296008 60.301745) (xy 108.245472 60.135149) (xy 108.163405 59.981613)
+        (xy 108.052962 59.847038) (xy 107.918387 59.736595) (xy 107.764851 59.654528) (xy 107.598255 59.603992) (xy 107.425001 59.586928)
+        (xy 106.852611 59.586928) (xy 106.917205 59.490256) (xy 106.995226 59.301898) (xy 107.035 59.101939) (xy 107.035 58.898061)
+        (xy 106.995226 58.698102) (xy 106.917205 58.509744) (xy 106.803937 58.340226) (xy 106.659774 58.196063) (xy 106.490256 58.082795)
+        (xy 106.301898 58.004774) (xy 106.101939 57.965) (xy 105.898061 57.965) (xy 105.698102 58.004774) (xy 105.509744 58.082795)
+        (xy 105.340226 58.196063) (xy 105.196063 58.340226) (xy 105.082795 58.509744) (xy 105.004774 58.698102) (xy 104.965 58.898061)
+        (xy 104.965 59.101939) (xy 105.004774 59.301898) (xy 105.082795 59.490256) (xy 105.147389 59.586928) (xy 104.574999 59.586928)
+        (xy 104.401745 59.603992) (xy 104.235149 59.654528) (xy 104.081613 59.736595) (xy 103.947038 59.847038) (xy 103.836595 59.981613)
+        (xy 103.754528 60.135149) (xy 103.703992 60.301745) (xy 103.686928 60.474999) (xy 100.695 60.474999) (xy 100.695 54.499999)
+        (xy 103.686928 54.499999) (xy 103.686928 55.525001) (xy 103.703992 55.698255) (xy 103.754528 55.864851) (xy 103.836595 56.018387)
+        (xy 103.947038 56.152962) (xy 104.081613 56.263405) (xy 104.206259 56.33003) (xy 104.196063 56.340226) (xy 104.082795 56.509744)
+        (xy 104.004774 56.698102) (xy 103.965 56.898061) (xy 103.965 57.101939) (xy 104.004774 57.301898) (xy 104.082795 57.490256)
+        (xy 104.196063 57.659774) (xy 104.340226 57.803937) (xy 104.509744 57.917205) (xy 104.698102 57.995226) (xy 104.898061 58.035)
+        (xy 105.101939 58.035) (xy 105.301898 57.995226) (xy 105.490256 57.917205) (xy 105.659774 57.803937) (xy 105.803937 57.659774)
+        (xy 105.917205 57.490256) (xy 105.995226 57.301898) (xy 106.035 57.101939) (xy 106.035 56.898061) (xy 105.995226 56.698102)
+        (xy 105.917205 56.509744) (xy 105.852611 56.413072) (xy 107.425001 56.413072) (xy 107.598255 56.396008) (xy 107.764851 56.345472)
+        (xy 107.918387 56.263405) (xy 108.052962 56.152962) (xy 108.163405 56.018387) (xy 108.245472 55.864851) (xy 108.296008 55.698255)
+        (xy 108.313072 55.525001) (xy 108.313072 54.499999) (xy 108.296008 54.326745) (xy 108.245472 54.160149) (xy 108.163405 54.006613)
+        (xy 108.052962 53.872038) (xy 107.918387 53.761595) (xy 107.764851 53.679528) (xy 107.598255 53.628992) (xy 107.425001 53.611928)
+        (xy 104.574999 53.611928) (xy 104.401745 53.628992) (xy 104.235149 53.679528) (xy 104.081613 53.761595) (xy 103.947038 53.872038)
+        (xy 103.836595 54.006613) (xy 103.754528 54.160149) (xy 103.703992 54.326745) (xy 103.686928 54.499999) (xy 100.695 54.499999)
+        (xy 100.695 51.474999) (xy 103.686928 51.474999) (xy 103.686928 52.500001) (xy 103.703992 52.673255) (xy 103.754528 52.839851)
+        (xy 103.836595 52.993387) (xy 103.947038 53.127962) (xy 104.081613 53.238405) (xy 104.235149 53.320472) (xy 104.401745 53.371008)
+        (xy 104.574999 53.388072) (xy 107.425001 53.388072) (xy 107.598255 53.371008) (xy 107.764851 53.320472) (xy 107.918387 53.238405)
+        (xy 108.052962 53.127962) (xy 108.163405 52.993387) (xy 108.245472 52.839851) (xy 108.296008 52.673255) (xy 108.313072 52.500001)
+        (xy 108.313072 51.474999) (xy 108.296008 51.301745) (xy 108.245472 51.135149) (xy 108.163405 50.981613) (xy 108.052962 50.847038)
+        (xy 107.918387 50.736595) (xy 107.764851 50.654528) (xy 107.598255 50.603992) (xy 107.425001 50.586928) (xy 106.852611 50.586928)
+        (xy 106.917205 50.490256) (xy 106.995226 50.301898) (xy 107.035 50.101939) (xy 107.035 49.898061) (xy 106.995226 49.698102)
+        (xy 106.917205 49.509744) (xy 106.803937 49.340226) (xy 106.659774 49.196063) (xy 106.490256 49.082795) (xy 106.301898 49.004774)
+        (xy 106.101939 48.965) (xy 105.898061 48.965) (xy 105.698102 49.004774) (xy 105.509744 49.082795) (xy 105.340226 49.196063)
+        (xy 105.196063 49.340226) (xy 105.082795 49.509744) (xy 105.004774 49.698102) (xy 104.965 49.898061) (xy 104.965 50.101939)
+        (xy 105.004774 50.301898) (xy 105.082795 50.490256) (xy 105.147389 50.586928) (xy 104.574999 50.586928) (xy 104.401745 50.603992)
+        (xy 104.235149 50.654528) (xy 104.081613 50.736595) (xy 103.947038 50.847038) (xy 103.836595 50.981613) (xy 103.754528 51.135149)
+        (xy 103.703992 51.301745) (xy 103.686928 51.474999) (xy 100.695 51.474999) (xy 100.695 45.499999) (xy 103.686928 45.499999)
+        (xy 103.686928 46.525001) (xy 103.703992 46.698255) (xy 103.754528 46.864851) (xy 103.836595 47.018387) (xy 103.947038 47.152962)
+        (xy 104.081613 47.263405) (xy 104.206259 47.33003) (xy 104.196063 47.340226) (xy 104.082795 47.509744) (xy 104.004774 47.698102)
+        (xy 103.965 47.898061) (xy 103.965 48.101939) (xy 104.004774 48.301898) (xy 104.082795 48.490256) (xy 104.196063 48.659774)
+        (xy 104.340226 48.803937) (xy 104.509744 48.917205) (xy 104.698102 48.995226) (xy 104.898061 49.035) (xy 105.101939 49.035)
+        (xy 105.301898 48.995226) (xy 105.490256 48.917205) (xy 105.659774 48.803937) (xy 105.803937 48.659774) (xy 105.917205 48.490256)
+        (xy 105.995226 48.301898) (xy 106.035 48.101939) (xy 106.035 47.898061) (xy 105.995226 47.698102) (xy 105.917205 47.509744)
+        (xy 105.852611 47.413072) (xy 107.425001 47.413072) (xy 107.598255 47.396008) (xy 107.764851 47.345472) (xy 107.918387 47.263405)
+        (xy 108.052962 47.152962) (xy 108.163405 47.018387) (xy 108.245472 46.864851) (xy 108.296008 46.698255) (xy 108.313072 46.525001)
+        (xy 108.313072 45.499999) (xy 108.296008 45.326745) (xy 108.245472 45.160149) (xy 108.163405 45.006613) (xy 108.052962 44.872038)
+        (xy 107.918387 44.761595) (xy 107.764851 44.679528) (xy 107.598255 44.628992) (xy 107.425001 44.611928) (xy 104.574999 44.611928)
+        (xy 104.401745 44.628992) (xy 104.235149 44.679528) (xy 104.081613 44.761595) (xy 103.947038 44.872038) (xy 103.836595 45.006613)
+        (xy 103.754528 45.160149) (xy 103.703992 45.326745) (xy 103.686928 45.499999) (xy 100.695 45.499999) (xy 100.695 42.474999)
+        (xy 103.686928 42.474999) (xy 103.686928 43.500001) (xy 103.703992 43.673255) (xy 103.754528 43.839851) (xy 103.836595 43.993387)
+        (xy 103.947038 44.127962) (xy 104.081613 44.238405) (xy 104.235149 44.320472) (xy 104.401745 44.371008) (xy 104.574999 44.388072)
+        (xy 107.425001 44.388072) (xy 107.598255 44.371008) (xy 107.764851 44.320472) (xy 107.918387 44.238405) (xy 108.052962 44.127962)
+        (xy 108.163405 43.993387) (xy 108.245472 43.839851) (xy 108.296008 43.673255) (xy 108.313072 43.500001) (xy 108.313072 42.474999)
+        (xy 108.296008 42.301745) (xy 108.245472 42.135149) (xy 108.163405 41.981613) (xy 108.052962 41.847038) (xy 107.918387 41.736595)
+        (xy 107.764851 41.654528) (xy 107.598255 41.603992) (xy 107.425001 41.586928) (xy 106.852611 41.586928) (xy 106.917205 41.490256)
+        (xy 106.995226 41.301898) (xy 107.035 41.101939) (xy 107.035 40.898061) (xy 106.995226 40.698102) (xy 106.917205 40.509744)
+        (xy 106.803937 40.340226) (xy 106.659774 40.196063) (xy 106.490256 40.082795) (xy 106.301898 40.004774) (xy 106.101939 39.965)
+        (xy 105.898061 39.965) (xy 105.698102 40.004774) (xy 105.509744 40.082795) (xy 105.340226 40.196063) (xy 105.196063 40.340226)
+        (xy 105.082795 40.509744) (xy 105.004774 40.698102) (xy 104.965 40.898061) (xy 104.965 41.101939) (xy 105.004774 41.301898)
+        (xy 105.082795 41.490256) (xy 105.147389 41.586928) (xy 104.574999 41.586928) (xy 104.401745 41.603992) (xy 104.235149 41.654528)
+        (xy 104.081613 41.736595) (xy 103.947038 41.847038) (xy 103.836595 41.981613) (xy 103.754528 42.135149) (xy 103.703992 42.301745)
+        (xy 103.686928 42.474999) (xy 100.695 42.474999) (xy 100.695 36.499999) (xy 103.686928 36.499999) (xy 103.686928 37.525001)
+        (xy 103.703992 37.698255) (xy 103.754528 37.864851) (xy 103.836595 38.018387) (xy 103.947038 38.152962) (xy 104.081613 38.263405)
+        (xy 104.206259 38.33003) (xy 104.196063 38.340226) (xy 104.082795 38.509744) (xy 104.004774 38.698102) (xy 103.965 38.898061)
+        (xy 103.965 39.101939) (xy 104.004774 39.301898) (xy 104.082795 39.490256) (xy 104.196063 39.659774) (xy 104.340226 39.803937)
+        (xy 104.509744 39.917205) (xy 104.698102 39.995226) (xy 104.898061 40.035) (xy 105.101939 40.035) (xy 105.301898 39.995226)
+        (xy 105.490256 39.917205) (xy 105.659774 39.803937) (xy 105.803937 39.659774) (xy 105.917205 39.490256) (xy 105.995226 39.301898)
+        (xy 106.035 39.101939) (xy 106.035 38.898061) (xy 105.995226 38.698102) (xy 105.917205 38.509744) (xy 105.852611 38.413072)
+        (xy 107.425001 38.413072) (xy 107.598255 38.396008) (xy 107.764851 38.345472) (xy 107.918387 38.263405) (xy 108.052962 38.152962)
+        (xy 108.163405 38.018387) (xy 108.245472 37.864851) (xy 108.296008 37.698255) (xy 108.313072 37.525001) (xy 108.313072 36.499999)
+        (xy 108.296008 36.326745) (xy 108.245472 36.160149) (xy 108.163405 36.006613) (xy 108.052962 35.872038) (xy 107.918387 35.761595)
+        (xy 107.764851 35.679528) (xy 107.598255 35.628992) (xy 107.425001 35.611928) (xy 104.574999 35.611928) (xy 104.401745 35.628992)
+        (xy 104.235149 35.679528) (xy 104.081613 35.761595) (xy 103.947038 35.872038) (xy 103.836595 36.006613) (xy 103.754528 36.160149)
+        (xy 103.703992 36.326745) (xy 103.686928 36.499999) (xy 100.695 36.499999) (xy 100.695 33.474999) (xy 103.686928 33.474999)
+        (xy 103.686928 34.500001) (xy 103.703992 34.673255) (xy 103.754528 34.839851) (xy 103.836595 34.993387) (xy 103.947038 35.127962)
+        (xy 104.081613 35.238405) (xy 104.235149 35.320472) (xy 104.401745 35.371008) (xy 104.574999 35.388072) (xy 107.425001 35.388072)
+        (xy 107.598255 35.371008) (xy 107.764851 35.320472) (xy 107.918387 35.238405) (xy 108.052962 35.127962) (xy 108.163405 34.993387)
+        (xy 108.245472 34.839851) (xy 108.296008 34.673255) (xy 108.313072 34.500001) (xy 108.313072 33.474999) (xy 108.296008 33.301745)
+        (xy 108.245472 33.135149) (xy 108.163405 32.981613) (xy 108.052962 32.847038) (xy 107.918387 32.736595) (xy 107.764851 32.654528)
+        (xy 107.598255 32.603992) (xy 107.425001 32.586928) (xy 106.852611 32.586928) (xy 106.917205 32.490256) (xy 106.995226 32.301898)
+        (xy 107.035 32.101939) (xy 107.035 31.898061) (xy 106.995226 31.698102) (xy 106.917205 31.509744) (xy 106.803937 31.340226)
+        (xy 106.659774 31.196063) (xy 106.490256 31.082795) (xy 106.301898 31.004774) (xy 106.101939 30.965) (xy 105.898061 30.965)
+        (xy 105.698102 31.004774) (xy 105.509744 31.082795) (xy 105.340226 31.196063) (xy 105.196063 31.340226) (xy 105.082795 31.509744)
+        (xy 105.004774 31.698102) (xy 104.965 31.898061) (xy 104.965 32.101939) (xy 105.004774 32.301898) (xy 105.082795 32.490256)
+        (xy 105.147389 32.586928) (xy 104.574999 32.586928) (xy 104.401745 32.603992) (xy 104.235149 32.654528) (xy 104.081613 32.736595)
+        (xy 103.947038 32.847038) (xy 103.836595 32.981613) (xy 103.754528 33.135149) (xy 103.703992 33.301745) (xy 103.686928 33.474999)
+        (xy 100.695 33.474999) (xy 100.695 27.499999) (xy 103.686928 27.499999) (xy 103.686928 28.525001) (xy 103.703992 28.698255)
+        (xy 103.754528 28.864851) (xy 103.836595 29.018387) (xy 103.947038 29.152962) (xy 104.081613 29.263405) (xy 104.206259 29.33003)
+        (xy 104.196063 29.340226) (xy 104.082795 29.509744) (xy 104.004774 29.698102) (xy 103.965 29.898061) (xy 103.965 30.101939)
+        (xy 104.004774 30.301898) (xy 104.082795 30.490256) (xy 104.196063 30.659774) (xy 104.340226 30.803937) (xy 104.509744 30.917205)
+        (xy 104.698102 30.995226) (xy 104.898061 31.035) (xy 105.101939 31.035) (xy 105.301898 30.995226) (xy 105.490256 30.917205)
+        (xy 105.659774 30.803937) (xy 105.803937 30.659774) (xy 105.917205 30.490256) (xy 105.995226 30.301898) (xy 106.035 30.101939)
+        (xy 106.035 29.898061) (xy 105.995226 29.698102) (xy 105.917205 29.509744) (xy 105.852611 29.413072) (xy 107.425001 29.413072)
+        (xy 107.598255 29.396008) (xy 107.764851 29.345472) (xy 107.918387 29.263405) (xy 108.052962 29.152962) (xy 108.163405 29.018387)
+        (xy 108.245472 28.864851) (xy 108.296008 28.698255) (xy 108.313072 28.525001) (xy 108.313072 27.499999) (xy 108.296008 27.326745)
+        (xy 108.245472 27.160149) (xy 108.163405 27.006613) (xy 108.052962 26.872038) (xy 107.918387 26.761595) (xy 107.764851 26.679528)
+        (xy 107.598255 26.628992) (xy 107.425001 26.611928) (xy 104.574999 26.611928) (xy 104.401745 26.628992) (xy 104.235149 26.679528)
+        (xy 104.081613 26.761595) (xy 103.947038 26.872038) (xy 103.836595 27.006613) (xy 103.754528 27.160149) (xy 103.703992 27.326745)
+        (xy 103.686928 27.499999) (xy 100.695 27.499999) (xy 100.695 12.6) (xy 101.986928 12.6) (xy 101.986928 13.6)
+        (xy 101.999188 13.724482) (xy 102.035498 13.84418) (xy 102.094463 13.954494) (xy 102.173815 14.051185) (xy 102.233296 14.1)
+        (xy 102.173815 14.148815) (xy 102.094463 14.245506) (xy 102.035498 14.35582) (xy 101.999188 14.475518) (xy 101.986928 14.6)
+        (xy 101.986928 15.6) (xy 101.999188 15.724482) (xy 102.035498 15.84418) (xy 102.094463 15.954494) (xy 102.173815 16.051185)
+        (xy 102.233296 16.1) (xy 102.173815 16.148815) (xy 102.094463 16.245506) (xy 102.035498 16.35582) (xy 101.999188 16.475518)
+        (xy 101.986928 16.6) (xy 101.986928 17.6) (xy 101.999188 17.724482) (xy 102.035498 17.84418) (xy 102.094463 17.954494)
+        (xy 102.173815 18.051185) (xy 102.233296 18.1) (xy 102.173815 18.148815) (xy 102.094463 18.245506) (xy 102.035498 18.35582)
+        (xy 101.999188 18.475518) (xy 101.986928 18.6) (xy 101.986928 19.6) (xy 101.999188 19.724482) (xy 102.035498 19.84418)
+        (xy 102.094463 19.954494) (xy 102.173815 20.051185) (xy 102.233296 20.1) (xy 102.173815 20.148815) (xy 102.094463 20.245506)
+        (xy 102.035498 20.35582) (xy 101.999188 20.475518) (xy 101.986928 20.6) (xy 101.986928 21.6) (xy 101.999188 21.724482)
+        (xy 102.035498 21.84418) (xy 102.094463 21.954494) (xy 102.173815 22.051185) (xy 102.270506 22.130537) (xy 102.38082 22.189502)
+        (xy 102.500518 22.225812) (xy 102.625 22.238072) (xy 104.298217 22.238072) (xy 104.196063 22.340226) (xy 104.082795 22.509744)
+        (xy 104.004774 22.698102) (xy 103.965 22.898061) (xy 103.965 23.101939) (xy 104.004774 23.301898) (xy 104.082795 23.490256)
+        (xy 104.090001 23.50104) (xy 104.090001 23.866262) (xy 104.022038 23.922038) (xy 103.911595 24.056613) (xy 103.829528 24.210149)
+        (xy 103.778992 24.376745) (xy 103.761928 24.549999) (xy 103.761928 25.450001) (xy 103.778992 25.623255) (xy 103.829528 25.789851)
+        (xy 103.911595 25.943387) (xy 104.022038 26.077962) (xy 104.156613 26.188405) (xy 104.310149 26.270472) (xy 104.476745 26.321008)
+        (xy 104.649999 26.338072) (xy 105.300001 26.338072) (xy 105.473255 26.321008) (xy 105.639851 26.270472) (xy 105.793387 26.188405)
+        (xy 105.927962 26.077962) (xy 106 25.990184) (xy 106.072038 26.077962) (xy 106.206613 26.188405) (xy 106.360149 26.270472)
+        (xy 106.526745 26.321008) (xy 106.699999 26.338072) (xy 107.350001 26.338072) (xy 107.523255 26.321008) (xy 107.689851 26.270472)
+        (xy 107.843387 26.188405) (xy 107.977962 26.077962) (xy 108.088405 25.943387) (xy 108.170472 25.789851) (xy 108.221008 25.623255)
+        (xy 108.238072 25.450001) (xy 108.238072 24.549999) (xy 108.221008 24.376745) (xy 108.170472 24.210149) (xy 108.088405 24.056613)
+        (xy 107.977962 23.922038) (xy 107.843387 23.811595) (xy 107.689851 23.729528) (xy 107.523255 23.678992) (xy 107.350001 23.661928)
+        (xy 106.938506 23.661928) (xy 106.885 23.608422) (xy 106.885 22.238072) (xy 109.375 22.238072) (xy 109.499482 22.225812)
+        (xy 109.61918 22.189502) (xy 109.729494 22.130537) (xy 109.826185 22.051185) (xy 109.905537 21.954494) (xy 109.964502 21.84418)
+        (xy 110.000812 21.724482) (xy 110.013072 21.6) (xy 110.013072 20.6) (xy 110.000812 20.475518) (xy 109.964502 20.35582)
+        (xy 109.905537 20.245506) (xy 109.826185 20.148815) (xy 109.766704 20.1) (xy 109.826185 20.051185) (xy 109.905537 19.954494)
+        (xy 109.964502 19.84418) (xy 110.000812 19.724482) (xy 110.013072 19.6) (xy 110.013072 18.6) (xy 110.000812 18.475518)
+        (xy 109.964502 18.35582) (xy 109.905537 18.245506) (xy 109.826185 18.148815) (xy 109.766704 18.1) (xy 109.826185 18.051185)
+        (xy 109.905537 17.954494) (xy 109.964502 17.84418) (xy 110.000812 17.724482) (xy 110.013072 17.6) (xy 110.013072 16.6)
+        (xy 110.000812 16.475518) (xy 109.964502 16.35582) (xy 109.905537 16.245506) (xy 109.826185 16.148815) (xy 109.766704 16.1)
+        (xy 109.826185 16.051185) (xy 109.905537 15.954494) (xy 109.964502 15.84418) (xy 110.000812 15.724482) (xy 110.013072 15.6)
+        (xy 110.013072 14.6) (xy 110.000812 14.475518) (xy 109.964502 14.35582) (xy 109.905537 14.245506) (xy 109.826185 14.148815)
+        (xy 109.766704 14.1) (xy 109.826185 14.051185) (xy 109.905537 13.954494) (xy 109.964502 13.84418) (xy 110.000812 13.724482)
+        (xy 110.013072 13.6) (xy 110.013072 12.6) (xy 110.000812 12.475518) (xy 109.964502 12.35582) (xy 109.905537 12.245506)
+        (xy 109.826185 12.148815) (xy 109.729494 12.069463) (xy 109.61918 12.010498) (xy 109.499482 11.974188) (xy 109.375 11.961928)
+        (xy 106.795 11.961928) (xy 106.670518 11.974188) (xy 106.55082 12.010498) (xy 106.440506 12.069463) (xy 106.343815 12.148815)
+        (xy 106.264463 12.245506) (xy 106.205498 12.35582) (xy 106.169188 12.475518) (xy 106.156928 12.6) (xy 106.156928 13.6)
+        (xy 106.169188 13.724482) (xy 106.205498 13.84418) (xy 106.264463 13.954494) (xy 106.343815 14.051185) (xy 106.403296 14.1)
+        (xy 106.343815 14.148815) (xy 106.264463 14.245506) (xy 106.205498 14.35582) (xy 106.169188 14.475518) (xy 106.156928 14.6)
+        (xy 106.156928 14.975938) (xy 106.101939 14.965) (xy 105.898061 14.965) (xy 105.843072 14.975938) (xy 105.843072 14.6)
+        (xy 105.830812 14.475518) (xy 105.794502 14.35582) (xy 105.735537 14.245506) (xy 105.656185 14.148815) (xy 105.596704 14.1)
+        (xy 105.656185 14.051185) (xy 105.735537 13.954494) (xy 105.794502 13.84418) (xy 105.830812 13.724482) (xy 105.843072 13.6)
+        (xy 105.843072 12.6) (xy 105.830812 12.475518) (xy 105.794502 12.35582) (xy 105.735537 12.245506) (xy 105.656185 12.148815)
+        (xy 105.559494 12.069463) (xy 105.44918 12.010498) (xy 105.329482 11.974188) (xy 105.205 11.961928) (xy 102.625 11.961928)
+        (xy 102.500518 11.974188) (xy 102.38082 12.010498) (xy 102.270506 12.069463) (xy 102.173815 12.148815) (xy 102.094463 12.245506)
+        (xy 102.035498 12.35582) (xy 101.999188 12.475518) (xy 101.986928 12.6) (xy 100.695 12.6) (xy 100.695 12.033992)
+        (xy 100.723123 11.747171) (xy 100.796549 11.503974) (xy 100.915814 11.279669) (xy 101.076375 11.082801) (xy 101.272117 10.920869)
+        (xy 101.49558 10.800043) (xy 101.738264 10.72492) (xy 102.022929 10.695) (xy 109.966008 10.695)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 106.238163 98.477242) (xy 106.238168 98.477246) (xy 106.37285 98.611928) (xy 105.851006 98.611928) (xy 105.823326 98.584248)
+        (xy 105.823322 98.584243) (xy 105.627151 98.388072) (xy 106.148993 98.388072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.240011 94.49591) (xy 106.238168 95.497754) (xy 106.238163 95.497758) (xy 106.148993 95.586928) (xy 104.75999 95.586928)
+        (xy 104.75999 92.413072) (xy 107.24001 92.413072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 106.37285 89.611928) (xy 105.851006 89.611928) (xy 105.823326 89.584248) (xy 105.823322 89.584243) (xy 105.627151 89.388072)
+        (xy 106.148994 89.388072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.24001 85.495911) (xy 106.148994 86.586928) (xy 104.75999 86.586928) (xy 104.75999 84.504088) (xy 105.851007 83.413072)
+        (xy 107.240011 83.413072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 106.238163 80.477242) (xy 106.238168 80.477246) (xy 106.37285 80.611928) (xy 105.851006 80.611928) (xy 105.823326 80.584248)
+        (xy 105.823322 80.584243) (xy 105.627151 80.388072) (xy 106.148993 80.388072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 107.240011 76.49591) (xy 106.238168 77.497754) (xy 106.238163 77.497758) (xy 106.148993 77.586928) (xy 104.75999 77.586928)
+        (xy 104.75999 74.413072) (xy 107.24001 74.413072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 106.37285 71.611928) (xy 105.851006 71.611928) (xy 105.823326 71.584248) (xy 105.823322 71.584243) (xy 105.627151 71.388072)
+        (xy 106.148994 71.388072)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 105.843072 17.30035) (xy 105.843072 17.213506) (xy 106.021579 17.035) (xy 106.101939 17.035) (xy 106.110031 17.03339)
+      )
+    )
+  )
+  (zone (net 0) (net_name "") (layer B.Cu) (tstamp 0) (hatch edge 0.508)
+    (connect_pads (clearance 0.508))
+    (min_thickness 0.254)
+    (fill yes (arc_segments 32) (thermal_gap 0.508) (thermal_bridge_width 0.508))
+    (polygon
+      (pts
+        (xy 111.76 10.16) (xy 99.06 10.16) (xy 99.06 110.49) (xy 113.03 110.49)
+      )
+    )
+    (filled_polygon
+      (pts
+        (xy 110.252829 10.723123) (xy 110.496026 10.796549) (xy 110.720331 10.915814) (xy 110.917199 11.076375) (xy 111.079131 11.272117)
+        (xy 111.199957 11.49558) (xy 111.27508 11.738264) (xy 111.305 12.022929) (xy 111.305001 107.965998) (xy 111.276877 108.252831)
+        (xy 111.203451 108.496028) (xy 111.084185 108.720333) (xy 110.923625 108.917198) (xy 110.727881 109.079132) (xy 110.504416 109.199959)
+        (xy 110.261737 109.27508) (xy 109.97707 109.305) (xy 102.033992 109.305) (xy 101.747169 109.276877) (xy 101.503972 109.203451)
+        (xy 101.279667 109.084185) (xy 101.082802 108.923625) (xy 100.920868 108.727881) (xy 100.800041 108.504416) (xy 100.72492 108.261737)
+        (xy 100.695 107.97707) (xy 100.695 22.898061) (xy 103.965 22.898061) (xy 103.965 23.101939) (xy 104.004774 23.301898)
+        (xy 104.082795 23.490256) (xy 104.115 23.538454) (xy 104.115001 29.461544) (xy 104.082795 29.509744) (xy 104.004774 29.698102)
+        (xy 103.965 29.898061) (xy 103.965 30.101939) (xy 104.004774 30.301898) (xy 104.082795 30.490256) (xy 104.115 30.538454)
+        (xy 104.115001 38.461544) (xy 104.082795 38.509744) (xy 104.004774 38.698102) (xy 103.965 38.898061) (xy 103.965 39.101939)
+        (xy 104.004774 39.301898) (xy 104.082795 39.490256) (xy 104.115 39.538454) (xy 104.115001 47.461544) (xy 104.082795 47.509744)
+        (xy 104.004774 47.698102) (xy 103.965 47.898061) (xy 103.965 48.101939) (xy 104.004774 48.301898) (xy 104.082795 48.490256)
+        (xy 104.115 48.538454) (xy 104.115001 56.461544) (xy 104.082795 56.509744) (xy 104.004774 56.698102) (xy 103.965 56.898061)
+        (xy 103.965 57.101939) (xy 104.004774 57.301898) (xy 104.082795 57.490256) (xy 104.115 57.538454) (xy 104.115001 65.461544)
+        (xy 104.082795 65.509744) (xy 104.004774 65.698102) (xy 103.965 65.898061) (xy 103.965 66.101939) (xy 104.004774 66.301898)
+        (xy 104.082795 66.490256) (xy 104.196063 66.659774) (xy 104.340226 66.803937) (xy 104.509744 66.917205) (xy 104.698102 66.995226)
+        (xy 104.898061 67.035) (xy 105.101939 67.035) (xy 105.115001 67.032402) (xy 105.115001 67.461544) (xy 105.082795 67.509744)
+        (xy 105.004774 67.698102) (xy 104.965 67.898061) (xy 104.965 68.101939) (xy 105.004774 68.301898) (xy 105.082795 68.490256)
+        (xy 105.196063 68.659774) (xy 105.340226 68.803937) (xy 105.509744 68.917205) (xy 105.698102 68.995226) (xy 105.898061 69.035)
+        (xy 106.101939 69.035) (xy 106.301898 68.995226) (xy 106.490256 68.917205) (xy 106.659774 68.803937) (xy 106.803937 68.659774)
+        (xy 106.917205 68.490256) (xy 106.995226 68.301898) (xy 107.035 68.101939) (xy 107.035 67.898061) (xy 106.995226 67.698102)
+        (xy 106.917205 67.509744) (xy 106.885 67.461546) (xy 106.885 59.538454) (xy 106.917205 59.490256) (xy 106.995226 59.301898)
+        (xy 107.035 59.101939) (xy 107.035 58.898061) (xy 106.995226 58.698102) (xy 106.917205 58.509744) (xy 106.885 58.461546)
+        (xy 106.885 50.538454) (xy 106.917205 50.490256) (xy 106.995226 50.301898) (xy 107.035 50.101939) (xy 107.035 49.898061)
+        (xy 106.995226 49.698102) (xy 106.917205 49.509744) (xy 106.885 49.461546) (xy 106.885 41.538454) (xy 106.917205 41.490256)
+        (xy 106.995226 41.301898) (xy 107.035 41.101939) (xy 107.035 40.898061) (xy 106.995226 40.698102) (xy 106.917205 40.509744)
+        (xy 106.885 40.461546) (xy 106.885 32.538454) (xy 106.917205 32.490256) (xy 106.995226 32.301898) (xy 107.035 32.101939)
+        (xy 107.035 31.898061) (xy 106.995226 31.698102) (xy 106.917205 31.509744) (xy 106.885 31.461546) (xy 106.885 16.538454)
+        (xy 106.917205 16.490256) (xy 106.995226 16.301898) (xy 107.035 16.101939) (xy 107.035 15.898061) (xy 106.995226 15.698102)
+        (xy 106.917205 15.509744) (xy 106.803937 15.340226) (xy 106.659774 15.196063) (xy 106.490256 15.082795) (xy 106.301898 15.004774)
+        (xy 106.101939 14.965) (xy 105.898061 14.965) (xy 105.698102 15.004774) (xy 105.509744 15.082795) (xy 105.340226 15.196063)
+        (xy 105.196063 15.340226) (xy 105.082795 15.509744) (xy 105.004774 15.698102) (xy 104.965 15.898061) (xy 104.965 16.101939)
+        (xy 105.004774 16.301898) (xy 105.082795 16.490256) (xy 105.115 16.538454) (xy 105.115 21.967598) (xy 105.101939 21.965)
+        (xy 104.898061 21.965) (xy 104.698102 22.004774) (xy 104.509744 22.082795) (xy 104.340226 22.196063) (xy 104.196063 22.340226)
+        (xy 104.082795 22.509744) (xy 104.004774 22.698102) (xy 103.965 22.898061) (xy 100.695 22.898061) (xy 100.695 12.033992)
+        (xy 100.723123 11.747171) (xy 100.796549 11.503974) (xy 100.915814 11.279669) (xy 101.076375 11.082801) (xy 101.272117 10.920869)
+        (xy 101.49558 10.800043) (xy 101.738264 10.72492) (xy 102.022929 10.695) (xy 109.966008 10.695)
+      )
+    )
+  )
+)
diff --git a/HARDWARE/lightsticks_extender.net b/HARDWARE/lightsticks_extender.net
new file mode 100644 (file)
index 0000000..6494cfa
--- /dev/null
@@ -0,0 +1,189 @@
+(export (version D)
+  (design
+    (source "/home/dmitry/Projects/COMMERCIAL CLIENTS/dailybeer.eu/LIGHTSTICKS/lightsticks/lightsticks_extender.sch")
+    (date "Sun 10 Nov 2019 04:25:13 PM CET")
+    (tool "Eeschema 5.1.4-e60b266~84~ubuntu18.04.1")
+    (sheet (number 1) (name /) (tstamps /)
+      (title_block
+        (title)
+        (company)
+        (rev)
+        (date)
+        (source lightsticks_extender.sch)
+        (comment (number 1) (value ""))
+        (comment (number 2) (value ""))
+        (comment (number 3) (value ""))
+        (comment (number 4) (value "")))))
+  (components
+    (comp (ref D4)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBA50D))
+    (comp (ref D5)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBA842))
+    (comp (ref D6)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBAA77))
+    (comp (ref D7)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBAD6A))
+    (comp (ref D8)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBB05D))
+    (comp (ref D9)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBB3AD))
+    (comp (ref D10)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBB570))
+    (comp (ref D11)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DBBE1B7))
+    (comp (ref R12)
+      (value 1R)
+      (footprint Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder)
+      (fields
+        (field (name Field4) " "))
+      (libsource (lib SparkFun-Resistors) (part RESISTOR0805) (description "Generic Resistor Package"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC54CBB))
+    (comp (ref D12)
+      (value LED)
+      (footprint LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder)
+      (datasheet ~)
+      (libsource (lib Device) (part LED) (description "Light emitting diode"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DE5D3FE))
+    (comp (ref J1)
+      (value CONN_05X2NO_SILK)
+      (footprint Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD)
+      (fields
+        (field (name Field4) XXX-00000))
+      (libsource (lib SparkFun-Connectors) (part CONN_05X2NO_SILK) (description "Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections  For AVR SPI programming port, see special device with nice symbol: \"AVR_SPI_PROG_5x2.dev\"  <b>You can populate with any combo of single row headers, but if you'd like an exact match, check these:</b><ul><li><a href=\"https://www.sparkfun.com/products/778\"> 2x5 AVR ICSP Male Header</a> (PRT-00778)</li><li><a href=\"https://www.sparkfun.com/products/8506\"> 2x5 Pin Shrouded Header</a> (PRT-08506)</li></ul> <b>On any of the 0.1 inch spaced packages, you can populate with these:</b><ul><li><a href=\"https://www.sparkfun.com/products/116\"> Break Away Headers - Straight</a> (PRT-00116)</li><li><a href=\"https://www.sparkfun.com/products/553\"> Break Away Male Headers - Right Angle</a> (PRT-00553)</li><li><a href=\"https://www.sparkfun.com/products/115\"> Female Headers</a> (PRT-00115)</li><li><a href=\"https://www.sparkfun.com/products/117\"> Break Away Headers - Machine Pin</a> (PRT-00117)</li><li><a href=\"https://www.sparkfun.com/products/743\"> Break Away Female Headers - Swiss Machine Pin</a> (PRT-00743)</li></ul> <b>Special note: the shrouded connector mates well with our 5x2 ribbon cables:</b><ul><li><a href=\"https://www.sparkfun.com/products/8535\"> 2x5 Pin IDC Ribbon Cable</a> (PRT-08535)</li></ul>"))
+      (sheetpath (names /) (tstamps /))
+      (tstamp 5DC8206E)))
+  (libparts
+    (libpart (lib Device) (part LED)
+      (description "Light emitting diode")
+      (docs ~)
+      (footprints
+        (fp LED*)
+        (fp LED_SMD:*)
+        (fp LED_THT:*))
+      (fields
+        (field (name Reference) D)
+        (field (name Value) LED))
+      (pins
+        (pin (num 1) (name K) (type passive))
+        (pin (num 2) (name A) (type passive))))
+    (libpart (lib SparkFun-Connectors) (part CONN_05X2NO_SILK)
+      (description "Multi connection point. Often used as Generic Header-pin footprint for 0.1 inch spaced/style header connections  For AVR SPI programming port, see special device with nice symbol: \"AVR_SPI_PROG_5x2.dev\"  <b>You can populate with any combo of single row headers, but if you'd like an exact match, check these:</b><ul><li><a href=\"https://www.sparkfun.com/products/778\"> 2x5 AVR ICSP Male Header</a> (PRT-00778)</li><li><a href=\"https://www.sparkfun.com/products/8506\"> 2x5 Pin Shrouded Header</a> (PRT-08506)</li></ul> <b>On any of the 0.1 inch spaced packages, you can populate with these:</b><ul><li><a href=\"https://www.sparkfun.com/products/116\"> Break Away Headers - Straight</a> (PRT-00116)</li><li><a href=\"https://www.sparkfun.com/products/553\"> Break Away Male Headers - Right Angle</a> (PRT-00553)</li><li><a href=\"https://www.sparkfun.com/products/115\"> Female Headers</a> (PRT-00115)</li><li><a href=\"https://www.sparkfun.com/products/117\"> Break Away Headers - Machine Pin</a> (PRT-00117)</li><li><a href=\"https://www.sparkfun.com/products/743\"> Break Away Female Headers - Swiss Machine Pin</a> (PRT-00743)</li></ul> <b>Special note: the shrouded connector mates well with our 5x2 ribbon cables:</b><ul><li><a href=\"https://www.sparkfun.com/products/8535\"> 2x5 Pin IDC Ribbon Cable</a> (PRT-08535)</li></ul>")
+      (footprints
+        (fp *2X5_NOSILK*))
+      (fields
+        (field (name Reference) J)
+        (field (name Value) CONN_05X2NO_SILK)
+        (field (name Footprint) 2X5_NOSILK)
+        (field (name Field4) XXX-00000))
+      (pins
+        (pin (num 1) (name 1) (type passive))
+        (pin (num 2) (name 2) (type passive))
+        (pin (num 3) (name 3) (type passive))
+        (pin (num 4) (name 4) (type passive))
+        (pin (num 5) (name 5) (type passive))
+        (pin (num 6) (name 6) (type passive))
+        (pin (num 7) (name 7) (type passive))
+        (pin (num 8) (name 8) (type passive))
+        (pin (num 9) (name 9) (type passive))
+        (pin (num 10) (name 10) (type passive))))
+    (libpart (lib SparkFun-Resistors) (part RESISTOR0805)
+      (description "Generic Resistor Package")
+      (footprints
+        (fp *0805*))
+      (fields
+        (field (name Reference) R)
+        (field (name Value) RESISTOR0805)
+        (field (name Footprint) 0805)
+        (field (name Field4) " "))
+      (pins
+        (pin (num 1) (name 1) (type passive))
+        (pin (num 2) (name 2) (type passive)))))
+  (libraries
+    (library (logical Device)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/kicad-symbols/Device.lib))
+    (library (logical SparkFun-Connectors)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-Connectors.lib))
+    (library (logical SparkFun-Resistors)
+      (uri /home/dmitry/Bin/ELECTRONICS/KiCad5/SparkFun-KiCad-Libraries/Libraries/SparkFun-Resistors.lib)))
+  (nets
+    (net (code 1) (name "Net-(J1-Pad1)")
+      (node (ref J1) (pin 3))
+      (node (ref J1) (pin 1)))
+    (net (code 2) (name /+3v3)
+      (node (ref J1) (pin 5))
+      (node (ref R12) (pin 2)))
+    (net (code 3) (name "Net-(J1-Pad8)")
+      (node (ref J1) (pin 8)))
+    (net (code 4) (name "Net-(J1-Pad2)")
+      (node (ref J1) (pin 2))
+      (node (ref J1) (pin 4)))
+    (net (code 5) (name "Net-(J1-Pad9)")
+      (node (ref J1) (pin 9)))
+    (net (code 6) (name "Net-(J1-Pad7)")
+      (node (ref J1) (pin 7)))
+    (net (code 7) (name "Net-(J1-Pad10)")
+      (node (ref J1) (pin 10)))
+    (net (code 8) (name "Net-(D10-Pad1)")
+      (node (ref D11) (pin 1))
+      (node (ref D10) (pin 1))
+      (node (ref D8) (pin 1))
+      (node (ref D9) (pin 1))
+      (node (ref D7) (pin 1))
+      (node (ref D6) (pin 1))
+      (node (ref D5) (pin 1))
+      (node (ref D4) (pin 1))
+      (node (ref J1) (pin 6))
+      (node (ref D12) (pin 1)))
+    (net (code 9) (name "Net-(D10-Pad2)")
+      (node (ref D12) (pin 2))
+      (node (ref D4) (pin 2))
+      (node (ref D5) (pin 2))
+      (node (ref D6) (pin 2))
+      (node (ref D7) (pin 2))
+      (node (ref D8) (pin 2))
+      (node (ref D9) (pin 2))
+      (node (ref R12) (pin 1))
+      (node (ref D10) (pin 2))
+      (node (ref D11) (pin 2)))))
\ No newline at end of file
diff --git a/HARDWARE/lightsticks_extender.pro b/HARDWARE/lightsticks_extender.pro
new file mode 100644 (file)
index 0000000..2dd2728
--- /dev/null
@@ -0,0 +1,251 @@
+update=Sun 10 Nov 2019 04:07:14 PM CET
+version=1
+last_client=kicad
+[general]
+version=1
+RootSch=
+BoardNm=
+[cvpcb]
+version=1
+NetIExt=net
+[eeschema]
+version=1
+LibDir=
+[eeschema/libraries]
+[schematic_editor]
+version=1
+PageLayoutDescrFile=
+PlotDirectoryName=
+SubpartIdSeparator=0
+SubpartFirstId=65
+NetFmtName=Pcbnew
+SpiceAjustPassiveValues=0
+LabSize=50
+ERC_TestSimilarLabels=1
+[pcbnew]
+version=1
+PageLayoutDescrFile=
+LastNetListRead=lightsticks_extender.net
+CopperLayerCount=2
+BoardThickness=1.6
+AllowMicroVias=0
+AllowBlindVias=0
+RequireCourtyardDefinitions=0
+ProhibitOverlappingCourtyards=1
+MinTrackWidth=0.2
+MinViaDiameter=0.4
+MinViaDrill=0.3
+MinMicroViaDiameter=0.2
+MinMicroViaDrill=0.09999999999999999
+MinHoleToHole=0.25
+TrackWidth1=0.25
+TrackWidth2=0.5
+ViaDiameter1=0.8
+ViaDrill1=0.4
+ViaDiameter2=0.8
+ViaDrill2=0.4
+dPairWidth1=0.2
+dPairGap1=0.25
+dPairViaGap1=0.25
+SilkLineWidth=0.12
+SilkTextSizeV=1
+SilkTextSizeH=1
+SilkTextSizeThickness=0.15
+SilkTextItalic=0
+SilkTextUpright=1
+CopperLineWidth=0.2
+CopperTextSizeV=1.5
+CopperTextSizeH=1.5
+CopperTextThickness=0.3
+CopperTextItalic=0
+CopperTextUpright=1
+EdgeCutLineWidth=0.05
+CourtyardLineWidth=0.05
+OthersLineWidth=0.15
+OthersTextSizeV=1
+OthersTextSizeH=1
+OthersTextSizeThickness=0.15
+OthersTextItalic=0
+OthersTextUpright=1
+SolderMaskClearance=0.051
+SolderMaskMinWidth=0.25
+SolderPasteClearance=0
+SolderPasteRatio=-0
+[pcbnew/Layer.F.Cu]
+Name=F.Cu
+Type=0
+Enabled=1
+[pcbnew/Layer.In1.Cu]
+Name=In1.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In2.Cu]
+Name=In2.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In3.Cu]
+Name=In3.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In4.Cu]
+Name=In4.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In5.Cu]
+Name=In5.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In6.Cu]
+Name=In6.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In7.Cu]
+Name=In7.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In8.Cu]
+Name=In8.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In9.Cu]
+Name=In9.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In10.Cu]
+Name=In10.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In11.Cu]
+Name=In11.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In12.Cu]
+Name=In12.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In13.Cu]
+Name=In13.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In14.Cu]
+Name=In14.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In15.Cu]
+Name=In15.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In16.Cu]
+Name=In16.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In17.Cu]
+Name=In17.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In18.Cu]
+Name=In18.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In19.Cu]
+Name=In19.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In20.Cu]
+Name=In20.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In21.Cu]
+Name=In21.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In22.Cu]
+Name=In22.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In23.Cu]
+Name=In23.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In24.Cu]
+Name=In24.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In25.Cu]
+Name=In25.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In26.Cu]
+Name=In26.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In27.Cu]
+Name=In27.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In28.Cu]
+Name=In28.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In29.Cu]
+Name=In29.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.In30.Cu]
+Name=In30.Cu
+Type=0
+Enabled=0
+[pcbnew/Layer.B.Cu]
+Name=B.Cu
+Type=0
+Enabled=1
+[pcbnew/Layer.B.Adhes]
+Enabled=1
+[pcbnew/Layer.F.Adhes]
+Enabled=1
+[pcbnew/Layer.B.Paste]
+Enabled=1
+[pcbnew/Layer.F.Paste]
+Enabled=1
+[pcbnew/Layer.B.SilkS]
+Enabled=1
+[pcbnew/Layer.F.SilkS]
+Enabled=1
+[pcbnew/Layer.B.Mask]
+Enabled=1
+[pcbnew/Layer.F.Mask]
+Enabled=1
+[pcbnew/Layer.Dwgs.User]
+Enabled=1
+[pcbnew/Layer.Cmts.User]
+Enabled=1
+[pcbnew/Layer.Eco1.User]
+Enabled=1
+[pcbnew/Layer.Eco2.User]
+Enabled=1
+[pcbnew/Layer.Edge.Cuts]
+Enabled=1
+[pcbnew/Layer.Margin]
+Enabled=1
+[pcbnew/Layer.B.CrtYd]
+Enabled=1
+[pcbnew/Layer.F.CrtYd]
+Enabled=1
+[pcbnew/Layer.B.Fab]
+Enabled=1
+[pcbnew/Layer.F.Fab]
+Enabled=1
+[pcbnew/Layer.Rescue]
+Enabled=0
+[pcbnew/Netclasses]
+[pcbnew/Netclasses/Default]
+Name=Default
+Clearance=0.2
+TrackWidth=0.25
+ViaDiameter=0.8
+ViaDrill=0.4
+uViaDiameter=0.3
+uViaDrill=0.1
+dPairWidth=0.2
+dPairGap=0.25
+dPairViaGap=0.25
diff --git a/HARDWARE/lightsticks_extender.sch b/HARDWARE/lightsticks_extender.sch
new file mode 100644 (file)
index 0000000..e62b470
--- /dev/null
@@ -0,0 +1,203 @@
+EESchema Schematic File Version 4
+LIBS:lightsticks_extender-cache
+EELAYER 30 0
+EELAYER END
+$Descr A4 11693 8268
+encoding utf-8
+Sheet 1 1
+Title ""
+Date ""
+Rev ""
+Comp ""
+Comment1 ""
+Comment2 ""
+Comment3 ""
+Comment4 ""
+$EndDescr
+$Comp
+L Device:LED D4
+U 1 1 5DBBA50D
+P 5800 2650
+F 0 "D4" V 5747 2728 50  0000 L CNN
+F 1 "LED" V 5838 2728 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 2650 50  0001 C CNN
+F 3 "~" H 5800 2650 50  0001 C CNN
+       1    5800 2650
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D5
+U 1 1 5DBBA842
+P 5800 2950
+F 0 "D5" V 5747 3028 50  0000 L CNN
+F 1 "LED" V 5838 3028 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 2950 50  0001 C CNN
+F 3 "~" H 5800 2950 50  0001 C CNN
+       1    5800 2950
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D6
+U 1 1 5DBBAA77
+P 5800 3250
+F 0 "D6" V 5747 3328 50  0000 L CNN
+F 1 "LED" V 5838 3328 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 3250 50  0001 C CNN
+F 3 "~" H 5800 3250 50  0001 C CNN
+       1    5800 3250
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D7
+U 1 1 5DBBAD6A
+P 5800 3550
+F 0 "D7" V 5747 3628 50  0000 L CNN
+F 1 "LED" V 5838 3628 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 3550 50  0001 C CNN
+F 3 "~" H 5800 3550 50  0001 C CNN
+       1    5800 3550
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D8
+U 1 1 5DBBB05D
+P 5800 3950
+F 0 "D8" V 5747 4028 50  0000 L CNN
+F 1 "LED" V 5838 4028 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 3950 50  0001 C CNN
+F 3 "~" H 5800 3950 50  0001 C CNN
+       1    5800 3950
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D9
+U 1 1 5DBBB3AD
+P 5800 4250
+F 0 "D9" V 5747 4328 50  0000 L CNN
+F 1 "LED" V 5838 4328 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 4250 50  0001 C CNN
+F 3 "~" H 5800 4250 50  0001 C CNN
+       1    5800 4250
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D10
+U 1 1 5DBBB570
+P 5800 4550
+F 0 "D10" V 5747 4628 50  0000 L CNN
+F 1 "LED" V 5838 4628 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 4550 50  0001 C CNN
+F 3 "~" H 5800 4550 50  0001 C CNN
+       1    5800 4550
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D11
+U 1 1 5DBBE1B7
+P 5800 4850
+F 0 "D11" V 5747 4928 50  0000 L CNN
+F 1 "LED" V 5838 4928 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 4850 50  0001 C CNN
+F 3 "~" H 5800 4850 50  0001 C CNN
+       1    5800 4850
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       5950 2650 5950 2950
+Connection ~ 5950 2950
+Wire Wire Line
+       5950 2950 5950 3250
+Connection ~ 5950 3250
+Connection ~ 5950 3950
+Wire Wire Line
+       5950 3950 5950 4250
+Connection ~ 5950 4250
+Wire Wire Line
+       5950 4250 5950 4550
+Connection ~ 5950 4550
+Wire Wire Line
+       5950 4550 5950 4850
+Wire Wire Line
+       5650 2650 5650 2950
+Connection ~ 5650 2950
+Connection ~ 5650 3250
+Connection ~ 5650 3950
+Wire Wire Line
+       5650 3950 5650 4250
+Connection ~ 5650 4250
+Wire Wire Line
+       5650 4250 5650 4550
+Connection ~ 5650 4550
+Wire Wire Line
+       5650 4550 5650 4850
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R12
+U 1 1 5DC54CBB
+P 5450 3250
+F 0 "R12" H 5450 3350 45  0000 L CNN
+F 1 "1R" H 5300 3350 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 5450 3400 20  0001 C CNN
+F 3 "" H 5450 3250 60  0001 C CNN
+F 4 " " V 5492 3318 60  0000 L CNN "Field4"
+       1    5450 3250
+       -1   0    0    1   
+$EndComp
+Connection ~ 5950 3550
+Wire Wire Line
+       5650 3550 5650 3950
+Wire Wire Line
+       5950 3250 5950 3550
+Connection ~ 5650 3550
+Wire Wire Line
+       5650 3250 5650 3550
+Wire Wire Line
+       5650 2950 5650 3250
+Wire Wire Line
+       5950 3550 5950 3750
+Connection ~ 5950 3750
+Wire Wire Line
+       5950 3750 5950 3950
+$Comp
+L Device:LED D12
+U 1 1 5DE5D3FE
+P 5800 5150
+F 0 "D12" V 5747 5228 50  0000 L CNN
+F 1 "LED" V 5838 5228 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 5150 50  0001 C CNN
+F 3 "~" H 5800 5150 50  0001 C CNN
+       1    5800 5150
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       5650 4850 5650 5150
+Connection ~ 5650 4850
+Wire Wire Line
+       5950 4850 5950 5150
+Connection ~ 5950 4850
+$Comp
+L SparkFun-Connectors:CONN_05X2NO_SILK J1
+U 1 1 5DC8206E
+P 4800 3750
+F 0 "J1" H 4800 4070 45  0000 C CNN
+F 1 "CONN_05X2NO_SILK" H 4800 4176 45  0001 C CNN
+F 2 "Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD" H 4800 4150 20  0001 C CNN
+F 3 "" H 4800 3750 50  0001 C CNN
+F 4 "XXX-00000" H 4800 4081 60  0001 C CNN "Field4"
+       1    4800 3750
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       5050 3750 5950 3750
+Wire Wire Line
+       4550 3750 4350 3750
+Wire Wire Line
+       4350 3750 4350 3250
+Wire Wire Line
+       4350 3250 5250 3250
+Text Label 4350 3750 0    50   ~ 0
++3v3
+Wire Wire Line
+       5050 3850 5050 3950
+Wire Wire Line
+       4550 3850 4550 3950
+$EndSCHEMATC
diff --git a/HARDWARE/lightsticks_extender.sch-bak b/HARDWARE/lightsticks_extender.sch-bak
new file mode 100644 (file)
index 0000000..2df0e4f
--- /dev/null
@@ -0,0 +1,203 @@
+EESchema Schematic File Version 4
+LIBS:lightsticks_extender-cache
+EELAYER 30 0
+EELAYER END
+$Descr A4 11693 8268
+encoding utf-8
+Sheet 1 1
+Title ""
+Date ""
+Rev ""
+Comp ""
+Comment1 ""
+Comment2 ""
+Comment3 ""
+Comment4 ""
+$EndDescr
+$Comp
+L Device:LED D4
+U 1 1 5DBBA50D
+P 5800 2650
+F 0 "D4" V 5747 2728 50  0000 L CNN
+F 1 "LED" V 5838 2728 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 2650 50  0001 C CNN
+F 3 "~" H 5800 2650 50  0001 C CNN
+       1    5800 2650
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D5
+U 1 1 5DBBA842
+P 5800 2950
+F 0 "D5" V 5747 3028 50  0000 L CNN
+F 1 "LED" V 5838 3028 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 2950 50  0001 C CNN
+F 3 "~" H 5800 2950 50  0001 C CNN
+       1    5800 2950
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D6
+U 1 1 5DBBAA77
+P 5800 3250
+F 0 "D6" V 5747 3328 50  0000 L CNN
+F 1 "LED" V 5838 3328 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 3250 50  0001 C CNN
+F 3 "~" H 5800 3250 50  0001 C CNN
+       1    5800 3250
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D7
+U 1 1 5DBBAD6A
+P 5800 3550
+F 0 "D7" V 5747 3628 50  0000 L CNN
+F 1 "LED" V 5838 3628 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 3550 50  0001 C CNN
+F 3 "~" H 5800 3550 50  0001 C CNN
+       1    5800 3550
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D8
+U 1 1 5DBBB05D
+P 5800 3950
+F 0 "D8" V 5747 4028 50  0000 L CNN
+F 1 "LED" V 5838 4028 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 3950 50  0001 C CNN
+F 3 "~" H 5800 3950 50  0001 C CNN
+       1    5800 3950
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D9
+U 1 1 5DBBB3AD
+P 5800 4250
+F 0 "D9" V 5747 4328 50  0000 L CNN
+F 1 "LED" V 5838 4328 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 4250 50  0001 C CNN
+F 3 "~" H 5800 4250 50  0001 C CNN
+       1    5800 4250
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D10
+U 1 1 5DBBB570
+P 5800 4550
+F 0 "D10" V 5747 4628 50  0000 L CNN
+F 1 "LED" V 5838 4628 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 4550 50  0001 C CNN
+F 3 "~" H 5800 4550 50  0001 C CNN
+       1    5800 4550
+       -1   0    0    1   
+$EndComp
+$Comp
+L Device:LED D11
+U 1 1 5DBBE1B7
+P 5800 4850
+F 0 "D11" V 5747 4928 50  0000 L CNN
+F 1 "LED" V 5838 4928 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 4850 50  0001 C CNN
+F 3 "~" H 5800 4850 50  0001 C CNN
+       1    5800 4850
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       5950 2650 5950 2950
+Connection ~ 5950 2950
+Wire Wire Line
+       5950 2950 5950 3250
+Connection ~ 5950 3250
+Connection ~ 5950 3950
+Wire Wire Line
+       5950 3950 5950 4250
+Connection ~ 5950 4250
+Wire Wire Line
+       5950 4250 5950 4550
+Connection ~ 5950 4550
+Wire Wire Line
+       5950 4550 5950 4850
+Wire Wire Line
+       5650 2650 5650 2950
+Connection ~ 5650 2950
+Connection ~ 5650 3250
+Connection ~ 5650 3950
+Wire Wire Line
+       5650 3950 5650 4250
+Connection ~ 5650 4250
+Wire Wire Line
+       5650 4250 5650 4550
+Connection ~ 5650 4550
+Wire Wire Line
+       5650 4550 5650 4850
+$Comp
+L SparkFun-Resistors:RESISTOR0805 R12
+U 1 1 5DC54CBB
+P 5450 3250
+F 0 "R12" H 5450 3350 45  0000 L CNN
+F 1 "1R" H 5300 3350 45  0000 L CNN
+F 2 "Resistor_SMD:R_0805_2012Metric_Pad1.15x1.40mm_HandSolder" H 5450 3400 20  0001 C CNN
+F 3 "" H 5450 3250 60  0001 C CNN
+F 4 " " V 5492 3318 60  0000 L CNN "Field4"
+       1    5450 3250
+       -1   0    0    1   
+$EndComp
+Connection ~ 5950 3550
+Wire Wire Line
+       5650 3550 5650 3950
+Wire Wire Line
+       5950 3250 5950 3550
+Connection ~ 5650 3550
+Wire Wire Line
+       5650 3250 5650 3550
+Wire Wire Line
+       5650 2950 5650 3250
+Wire Wire Line
+       5950 3550 5950 3750
+Connection ~ 5950 3750
+Wire Wire Line
+       5950 3750 5950 3950
+$Comp
+L Device:LED D12
+U 1 1 5DE5D3FE
+P 5800 5150
+F 0 "D12" V 5747 5228 50  0000 L CNN
+F 1 "LED" V 5838 5228 50  0000 L CNN
+F 2 "LED_SMD:LED_2512_6332Metric_Pad1.52x3.35mm_HandSolder" H 5800 5150 50  0001 C CNN
+F 3 "~" H 5800 5150 50  0001 C CNN
+       1    5800 5150
+       -1   0    0    1   
+$EndComp
+Wire Wire Line
+       5650 4850 5650 5150
+Connection ~ 5650 4850
+Wire Wire Line
+       5950 4850 5950 5150
+Connection ~ 5950 4850
+$Comp
+L SparkFun-Connectors:CONN_05X2NO_SILK J1
+U 1 1 5DC8206E
+P 4800 3750
+F 0 "J1" H 4800 4070 45  0000 C CNN
+F 1 "CONN_05X2NO_SILK" H 4800 4176 45  0001 C CNN
+F 2 "Connector_PinHeader_2.00mm:PinHeader_2x05_P2.00mm_Vertical_SMD" H 4800 4150 20  0001 C CNN
+F 3 "" H 4800 3750 50  0001 C CNN
+F 4 "XXX-00000" H 4800 4081 60  0001 C CNN "Field4"
+       1    4800 3750
+       1    0    0    -1  
+$EndComp
+Wire Wire Line
+       5050 3750 5950 3750
+Wire Wire Line
+       4550 3750 4350 3750
+Wire Wire Line
+       4350 3750 4350 3250
+Wire Wire Line
+       4350 3250 5250 3250
+Wire Wire Line
+       5050 3550 5050 3650
+Wire Wire Line
+       4550 3550 4550 3650
+Text Label 4350 3750 0    50   ~ 0
++3v3
+$EndSCHEMATC
diff --git a/README.md b/README.md
new file mode 100644 (file)
index 0000000..d988247
--- /dev/null
+++ b/README.md
@@ -0,0 +1,73 @@
+#LightSticks. Pocket lights for your travel object photography.
+
+![LightSticks Fading](https://shalnoff.com/pics/2020/LightSticks/2024_04_18:Lightsticks_in_Dark.mp4.gif)
+
+Small light sources for illuminating objects when taking pictures of small objects. Place two lightsticks on the sides, add a backlight behind the object and voila, you have a small photo studio on your desk. 
+
+You can use toothpicks to set the sticks vertically or hang them inside glass beakers. 
+
+![LightSticks Fading](https://shalnoff.com/pics/2020/LightSticks/lightStick_face.jpeg)
+
+I usually carry a small roll of matte plastic to make vertical tubes and soften the shadows + a roll of black paper to set the background. 
+
+To extend the wand, just plug in an extender. 
+
+#Hardware and firmware
+
+![LightSticks set](https://shalnoff.com/pics/2020/LightSticks/lightSticks_blackBG.jpeg)
+
+The device is based on attiny25 and has on board a switch, two buttons to control the brightness and also to memorise the settings (by pressing both buttons at the same time) + little beeper, to beep various signals. 
+
+If the device is idle for some time, it goes to sleep. 
+
+To recharge the device, simply plug it into the USB socket of your powerbank or laptop. 
+
+Compile firmware
+
+       cd FIRMWARE 
+       make
+
+#Bootloader 
+
+A remarkable feature of the device is the ability to flash the bootloader (I'm using popular [micronucleus](https://github.com/micronucleus/micronucleus)). In this case you can change fine settings, recompile the firmware and flash the device without additional equipment. 
+
+Compile the bootloader 
+
+       cd BOOTLOADER/micronucleus/firmware
+       make clean
+       make CONFIG=t85_default fuse
+       make CONFIG=t85_default flash
+
+Flash using USB bootloader
+
+1. Set device in Flashing Mode by connect extender in reverse (long sides in same direction)
+2. Plug device in USB socket
+2. Compile and flash firmware using micronucleus (you need to turn off and on device to enter Bootloader Mode)
+
+       cd FIRMWARE
+       make
+       sudo BOOTLOADERS/micronucleus/commandline/micronucleus --run lightstick.hex 
+
+Have fun :)
+
+![LightSticks Beer Bottle Photo](https://shalnoff.com/pics/2020/LightSticks/Kapuziner_beer_.jpg)
+
+## License
+
+Copyright © 2020 Dmitry Shalnov [interplaymedium.org]
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this files except in compliance with the License.
+You may obtain a copy of the License at
+
+    http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+
+
+
+
diff --git a/lightsticks_lasercut.svg b/lightsticks_lasercut.svg
new file mode 100644 (file)
index 0000000..9ccd6c1
--- /dev/null
@@ -0,0 +1,1672 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<svg
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:cc="http://creativecommons.org/ns#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:svg="http://www.w3.org/2000/svg"
+   xmlns="http://www.w3.org/2000/svg"
+   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   width="210mm"
+   height="297mm"
+   viewBox="0 0 210 297"
+   version="1.1"
+   id="svg9056"
+   inkscape:version="1.0.2 (1.0.2+r75+1)"
+   sodipodi:docname="lightsticks_lasercut.svg">
+  <defs
+     id="defs9050" />
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="8.3150669"
+     inkscape:cx="142.98348"
+     inkscape:cy="275.55934"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer5"
+     showgrid="false"
+     inkscape:snap-global="false"
+     inkscape:window-width="1920"
+     inkscape:window-height="1025"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1"
+     inkscape:document-rotation="0" />
+  <metadata
+     id="metadata9053">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <path
+       inkscape:connector-curvature="0"
+       id="path118"
+       d="M 19.328695,104.12905 H 11.327796"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path120"
+       d="m 9.3282826,102.12954 c 0,1.10381 0.8957064,1.99951 1.9995134,1.99951"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path122"
+       d="m 19.328695,104.12905 c 1.103808,0 1.999538,-0.8957 1.999538,-1.99951"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path124"
+       d="M 19.328695,4.1289658 H 11.327796"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path126"
+       d="m 21.328233,6.1284858 c 0,-1.10381 -0.89573,-1.99952 -1.999538,-1.99952"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path128"
+       d="m 11.327796,4.1289658 c -0.529158,0 -1.039037,0.21082 -1.4138654,0.58565 -0.374828,0.37483 -0.585648,0.88471 -0.585648,1.41387"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path132"
+       d="M 21.328233,23.228576 V 6.1284858"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path136"
+       d="m 21.328233,28.229476 0.0097,-0.0993"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path140"
+       d="m 21.337885,28.130246 0.02065,-0.0993"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path144"
+       d="m 21.358535,28.031026 0.02896,-0.095"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path148"
+       d="m 21.387491,27.935956 0.03988,-0.0925"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path152"
+       d="m 21.427445,27.843626 0.04674,-0.0869"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path156"
+       d="m 21.474308,27.756816 0.05639,-0.0828"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path160"
+       d="m 21.530798,27.674106 0.06477,-0.0772"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path164"
+       d="m 21.595568,27.596946 0.07163,-0.0688"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path168"
+       d="m 21.667221,27.528056 0.07849,-0.062"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path170"
+       d="m 23.311235,27.466036 -0.08407,-0.0551"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path172"
+       d="m 21.745783,27.466036 0.08407,-0.0551"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path174"
+       d="m 23.227161,27.410916 -0.08966,-0.0455"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path176"
+       d="m 21.829831,27.410916 0.08966,-0.0442"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path178"
+       d="m 23.137601,27.365446 -0.09373,-0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path180"
+       d="m 21.919417,27.366816 0.0922,-0.0373"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path182"
+       d="m 23.043875,27.329606 -0.09652,-0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path184"
+       d="m 22.011746,27.329606 0.09652,-0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path186"
+       d="m 22.947431,27.303426 -0.09779,-0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path188"
+       d="m 22.10819,27.303426 0.09931,-0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path190"
+       d="m 22.84959,27.286886 -0.09931,-0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path192"
+       d="m 22.207428,27.286886 0.09931,-0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path194"
+       d="M 22.750353,27.278636 H 22.30664"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path196"
+       d="m 21.328233,23.228576 0.0097,0.10058"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path200"
+       d="m 21.337885,23.329156 0.02065,0.0978"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path204"
+       d="m 21.358535,23.427006 0.02896,0.095"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path208"
+       d="m 21.387491,23.522096 0.03988,0.0925"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path212"
+       d="m 21.427445,23.614426 0.04674,0.0881"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path216"
+       d="m 21.474308,23.702616 0.05639,0.0813"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path220"
+       d="m 21.530798,23.783926 0.06477,0.0772"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path224"
+       d="m 21.595568,23.861086 0.07163,0.0688"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path228"
+       d="m 21.667221,23.929996 0.07849,0.0633"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path232"
+       d="m 21.745783,23.993366 0.08407,0.0539"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path234"
+       d="m 23.311235,23.993366 -0.08407,0.0539"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path236"
+       d="m 21.829831,24.047116 0.08966,0.0455"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path238"
+       d="m 23.227161,24.047116 -0.08966,0.0455"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path240"
+       d="m 21.919417,24.092606 0.0922,0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path242"
+       d="m 23.137601,24.092606 -0.09373,0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path244"
+       d="m 22.011746,24.128426 0.09652,0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path246"
+       d="m 23.043875,24.128426 -0.09652,0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path248"
+       d="m 22.10819,24.154606 0.09931,0.0179"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path250"
+       d="m 22.947431,24.154606 -0.09779,0.0179"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path252"
+       d="m 22.207428,24.172516 0.09931,0.007"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path254"
+       d="m 22.84959,24.172516 -0.09931,0.007"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path256"
+       d="M 22.750353,24.179426 H 22.30664"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path262"
+       d="M 21.328233,77.728596 V 28.229476"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path264"
+       d="M 21.328233,82.729496 V 102.12954"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path266"
+       d="m 21.328233,82.729496 0.0097,-0.0993"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path270"
+       d="m 21.337885,82.630286 0.02065,-0.0993"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path274"
+       d="m 21.358535,82.531066 0.02896,-0.095"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path278"
+       d="m 21.387491,82.435976 0.03988,-0.0925"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path282"
+       d="m 21.427445,82.343646 0.04674,-0.0869"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path286"
+       d="m 21.474308,82.256826 0.05639,-0.0828"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path290"
+       d="m 21.530798,82.174156 0.06477,-0.0772"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path294"
+       d="m 21.595568,82.096986 0.07163,-0.0688"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path298"
+       d="m 21.667221,82.028076 0.07849,-0.062"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path302"
+       d="m 21.745783,81.966076 0.08407,-0.0551"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path304"
+       d="m 23.311235,81.966076 -0.08407,-0.0551"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path306"
+       d="m 21.829831,81.910956 0.08966,-0.0455"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path308"
+       d="m 23.227161,81.910956 -0.08966,-0.0455"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path310"
+       d="m 21.919417,81.865466 0.0922,-0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path312"
+       d="m 23.137601,81.865466 -0.09373,-0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path314"
+       d="m 22.011746,81.829646 0.09652,-0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path316"
+       d="m 23.043875,81.829646 -0.09652,-0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path318"
+       d="m 22.10819,81.803466 0.09931,-0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path320"
+       d="m 22.947431,81.803466 -0.09779,-0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path322"
+       d="m 22.207428,81.786926 0.09931,-0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path324"
+       d="m 22.84959,81.786926 -0.09931,-0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path326"
+       d="M 22.750353,81.778646 H 22.30664"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path328"
+       d="m 21.328233,77.728596 0.0097,0.10058"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path332"
+       d="m 21.337885,77.829206 0.02065,0.0978"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path336"
+       d="m 21.358535,77.927046 0.02896,0.095"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path340"
+       d="m 21.387491,78.022116 0.03988,0.0925"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path344"
+       d="m 21.427445,78.114446 0.04674,0.0881"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path348"
+       d="m 21.474308,78.202656 0.05639,0.0813"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path352"
+       d="m 21.530798,78.283936 0.06477,0.0772"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path356"
+       d="m 21.595568,78.361126 0.07163,0.0688"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path360"
+       d="m 21.667221,78.430016 0.07849,0.062"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path364"
+       d="m 21.745783,78.492046 0.08407,0.0551"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path366"
+       d="m 23.311235,78.492046 -0.08407,0.0551"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path368"
+       d="m 21.829831,78.547156 0.08966,0.0455"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path370"
+       d="m 23.227161,78.547156 -0.08966,0.0455"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path372"
+       d="m 21.919417,78.592626 0.0922,0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path374"
+       d="m 23.137601,78.592626 -0.09373,0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path376"
+       d="m 22.011746,78.628466 0.09652,0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path378"
+       d="m 23.043875,78.628466 -0.09652,0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path380"
+       d="m 22.10819,78.654646 0.09931,0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path382"
+       d="m 22.947431,78.654646 -0.09779,0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path384"
+       d="m 22.207428,78.671186 0.09931,0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path386"
+       d="m 22.84959,78.671186 -0.09931,0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path388"
+       d="M 22.750353,78.679446 H 22.30664"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path390"
+       d="M 9.3282826,23.228576 V 6.1284858"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path396"
+       d="m 9.3282826,28.229476 -0.0097,-0.0993"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path400"
+       d="m 9.3186306,28.130246 -0.02068,-0.0993"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path404"
+       d="m 9.2979556,28.031026 -0.02896,-0.095"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path408"
+       d="m 9.2690246,27.935956 -0.03861,-0.0925"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path412"
+       d="m 9.2304416,27.843626 -0.04826,-0.0869"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path416"
+       d="m 9.1822076,27.756816 -0.05639,-0.0828"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path420"
+       d="m 9.1256926,27.674106 -0.06477,-0.0772"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path424"
+       d="m 9.0609226,27.596946 -0.07163,-0.0688"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path428"
+       d="m 8.9892686,27.528056 -0.07849,-0.062"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path432"
+       d="m 8.9107326,27.466036 -0.08407,-0.0551"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path436"
+       d="m 8.8266586,27.410916 -0.08966,-0.0442"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path438"
+       d="m 7.5189136,27.366816 0.09373,-0.0373"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path440"
+       d="m 8.7370976,27.366816 -0.09246,-0.0373"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path442"
+       d="m 7.6126146,27.329606 0.09652,-0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path444"
+       d="m 8.6447686,27.329606 -0.09652,-0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path446"
+       d="m 7.7090836,27.303426 0.09779,-0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path448"
+       d="m 8.5482996,27.303426 -0.09931,-0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path450"
+       d="m 7.8069246,27.286886 0.100584,-0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path452"
+       d="m 8.4490876,27.286886 -0.09931,-0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path454"
+       d="M 8.3498746,27.278636 H 7.9075086"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path458"
+       d="m 9.3282826,23.228576 -0.0097,0.10058"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path462"
+       d="m 9.3186306,23.329156 -0.02068,0.0978"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path466"
+       d="m 9.2979556,23.427006 -0.02896,0.095"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path470"
+       d="m 9.2690246,23.522096 -0.03861,0.0925"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path474"
+       d="m 9.2304416,23.614426 -0.04826,0.0881"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path478"
+       d="m 9.1822076,23.702616 -0.05639,0.0813"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path482"
+       d="m 9.1256926,23.783926 -0.06477,0.0772"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path486"
+       d="m 9.0609226,23.861086 -0.07163,0.0688"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path490"
+       d="m 8.9892686,23.929996 -0.07849,0.0633"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path494"
+       d="m 8.9107326,23.993366 -0.08407,0.0539"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path498"
+       d="m 8.8266586,24.047116 -0.08966,0.0455"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path500"
+       d="m 7.5189136,24.092606 0.09373,0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path502"
+       d="m 8.7370976,24.092606 -0.09246,0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path504"
+       d="m 7.6126146,24.128426 0.09652,0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path506"
+       d="m 8.6447686,24.128426 -0.09652,0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path508"
+       d="m 7.7090836,24.154606 0.09779,0.0179"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path510"
+       d="m 8.5482996,24.154606 -0.09931,0.0179"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path512"
+       d="m 7.8069246,24.172516 0.100584,0.007"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path514"
+       d="m 8.4490876,24.172516 -0.09931,0.007"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path516"
+       d="M 8.3498746,24.179426 H 7.9075086"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path518"
+       d="M 9.3282826,77.728596 V 28.229476"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path520"
+       d="M 9.3282826,82.729496 V 102.12954"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path528"
+       d="m 9.3282826,82.729496 -0.0097,-0.0993"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path532"
+       d="m 9.3186306,82.630286 -0.02068,-0.0993"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path536"
+       d="m 9.2979556,82.531066 -0.02896,-0.095"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path540"
+       d="m 9.2690246,82.435976 -0.03861,-0.0925"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path544"
+       d="m 9.2304416,82.343646 -0.04826,-0.0869"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path548"
+       d="m 9.1822076,82.256826 -0.05639,-0.0828"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path552"
+       d="m 9.1256926,82.174156 -0.06477,-0.0772"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path556"
+       d="m 9.0609226,82.096986 -0.07163,-0.0688"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path560"
+       d="m 8.9892686,82.028076 -0.07849,-0.062"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path564"
+       d="m 8.9107326,81.966076 -0.08407,-0.0551"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path568"
+       d="m 8.8266586,81.910956 -0.08966,-0.0455"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path570"
+       d="m 7.5189136,81.865466 0.09373,-0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path572"
+       d="m 8.7370976,81.865466 -0.09246,-0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path574"
+       d="m 7.6126146,81.829646 0.09652,-0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path576"
+       d="m 8.6447686,81.829646 -0.09652,-0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path578"
+       d="m 7.7090836,81.803466 0.09779,-0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path580"
+       d="m 8.5482996,81.803466 -0.09931,-0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path582"
+       d="m 7.8069246,81.786926 0.100584,-0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path584"
+       d="m 8.4490876,81.786926 -0.09931,-0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path586"
+       d="M 8.3498746,81.778646 H 7.9075086"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path590"
+       d="m 9.3282826,77.728596 -0.0097,0.10058"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path594"
+       d="m 9.3186306,77.829206 -0.02068,0.0978"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path598"
+       d="m 9.2979556,77.927046 -0.02896,0.095"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path602"
+       d="m 9.2690246,78.022116 -0.03861,0.0925"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path606"
+       d="m 9.2304416,78.114446 -0.04826,0.0881"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path610"
+       d="m 9.1822076,78.202656 -0.05639,0.0813"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path614"
+       d="m 9.1256926,78.283936 -0.06477,0.0772"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path618"
+       d="m 9.0609226,78.361126 -0.07163,0.0688"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path622"
+       d="m 8.9892686,78.430016 -0.07849,0.062"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path626"
+       d="m 8.9107326,78.492046 -0.08407,0.0551"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path630"
+       d="m 8.8266586,78.547156 -0.08966,0.0455"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path632"
+       d="m 7.5189136,78.592626 0.09373,0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path634"
+       d="m 8.7370976,78.592626 -0.09246,0.0358"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path636"
+       d="m 7.6126146,78.628466 0.09652,0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path638"
+       d="m 8.6447686,78.628466 -0.09652,0.0262"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path640"
+       d="m 7.7090836,78.654646 0.09779,0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path642"
+       d="m 8.5482996,78.654646 -0.09931,0.0165"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path644"
+       d="m 7.8069246,78.671186 0.100584,0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path646"
+       d="m 8.4490876,78.671186 -0.09931,0.008"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path648"
+       d="M 8.3498746,78.679446 H 7.9075086"
+       style="fill:none;stroke:#d4fd33;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3756"
+       d="m 15.224897,97.933396 h 0.887457 l -0.06063,-0.22462 -0.158475,-0.15985 -0.22462,-0.0606 -0.22462,0.0606 -0.158474,0.15985 z m 0,0"
+       style="fill:#00c2c2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3758"
+       d="m 12.078836,99.129536 1.575098,1.632974 -0.139182,-0.18052 -0.08957,-0.2136 -0.03169,-0.23702 0.01653,-0.173634 0.05236,-0.16812 -0.214974,-0.10887 -0.146072,-0.18603 -0.05236,-0.23427 0.03169,-0.18465 0.09095,-0.15986 0.14056,-0.12264 -0.150206,-0.19017 -0.05237,-0.23427 0.03996,-0.2067 0.110243,-0.1695 0.163987,-0.11989 0.203949,-0.051 0.115756,-0.19155 0.179145,-0.12816 0.220486,-0.0469 0.197059,0.0372 0.165365,0.10198 0.121267,0.15296 0.05926,0.19155 h 0.100601 l 0.03032,-0.23151 0.0882,-0.20809 0.135047,-0.17639 0.176389,-0.13642 0.208084,-0.0882 0.23151,-0.0303 0.232889,0.0303 0.208083,0.0882 0.175011,0.13642 0.136426,0.17639 0.08819,0.20809 0.03032,0.23151 h 0.325213 l 0.208083,0.0345 0.180524,0.0923 0.141938,0.14331 0.09233,0.18053 0.03307,0.20808 v 1.27606 l -0.03307,0.208094 -0.09233,0.1819 -0.141938,0.14193 -0.180524,0.0937 -0.208083,0.0331 h -1.711524 l 0.07028,-0.23427 h 1.595769 l 0.232888,-0.0634 0.166743,-0.16536 0.06201,-0.232894 v -1.2237 l -0.06201,-0.23289 -0.166742,-0.16398 -0.232889,-0.0634 H 14.67506 l -0.07855,0.17088 -0.143316,0.13643 0.175011,0.21083 0.04961,0.23151 -0.0441,0.21773 -0.106109,0.16675 0.190169,0.0744 0.146072,0.0965 H 16.0779 l 0.115755,0.0482 0.04685,0.11575 -0.04685,0.11576 -0.115755,0.0482 h -0.970139 l 0.04961,0.16536 0.01653,0.170884 -0.01792,0.17639 -0.07579,0.23427 -0.14056,0.20394 -0.187413,0.15434 -0.221864,0.0978 -0.245291,0.0345 -0.237023,-0.0317 -0.213595,-0.0896 -0.180524,-0.13918 -1.575097,-1.632974 0.0096,0.26183 0.03169,0.25769 0.05099,0.24942 0.07028,0.242544 0.08819,0.23427 0.106109,0.22462 0.122645,0.21497 0.137804,0.20395 0.152963,0.19292 0.166742,0.18053 0.180523,0.16674 0.192925,0.15296 0.20395,0.13781 0.214974,0.12264 0.22462,0.10473 0.234267,0.0882 0.242534,0.0703 0.249426,0.051 0.257692,0.0317 0.261828,0.011 0.261827,-0.011 0.257693,-0.0317 0.249425,-0.051 0.242535,-0.0703 0.234266,-0.0882 0.22462,-0.10473 0.215034,-0.12264 0.203949,-0.1378 0.192926,-0.15296 0.180523,-0.16674 0.166742,-0.18053 0.152962,-0.19292 0.137804,-0.20395 0.122646,-0.21498 0.10473,-0.22462 0.08957,-0.23427 0.0689,-0.242534 0.05237,-0.2508 0.03032,-0.25632 0.01103,-0.26183 -0.01103,-0.2632 -0.03032,-0.25631 -0.05099,-0.24943 -0.07028,-0.24253 -0.0882,-0.23427 -0.106109,-0.22462 -0.122645,-0.21497 -0.137804,-0.20533 -0.152962,-0.19155 -0.166743,-0.18052 -0.180523,-0.16675 -0.192925,-0.15296 -0.20395,-0.1378 -0.214974,-0.12265 -0.22462,-0.1061 -0.234266,-0.0882 -0.242535,-0.0703 -0.249425,-0.051 -0.257693,-0.0317 -0.261827,-0.01 -0.261828,0.01 -0.257692,0.0317 -0.249426,0.051 -0.242534,0.0703 -0.234267,0.0882 -0.22462,0.1061 -0.214974,0.12127 -0.205328,0.13918 -0.191547,0.15296 -0.180523,0.16675 -0.166742,0.17914 -0.152963,0.19293 -0.137804,0.20533 -0.122645,0.21497 -0.106109,0.22462 -0.08819,0.23427 -0.07028,0.24253 -0.05099,0.24943 -0.03169,0.25631 z m 0,0"
+       style="fill:#00c2c2;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3760"
+       d="m 20.207891,65.728646 v 1.20027"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3762"
+       d="m 18.448128,66.928916 v -1.20027"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3764"
+       d="m 14.027385,77.231136 v -0.60221"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.2032;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3766"
+       d="M 14.027385,76.628926 H 13.229494"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.2032;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3768"
+       d="m 14.027385,78.826886 v 0.60221"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.2032;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3770"
+       d="M 14.027385,79.429096 H 13.229494"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.2032;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3772"
+       d="M 13.488574,5.4697858 H 10.627773"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3774"
+       d="m 13.488574,7.3893858 v -1.9196"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3776"
+       d="m 10.627773,7.3893858 h 2.860801"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3778"
+       d="m 13.368686,84.869596 v -0.48094"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3780"
+       d="m 17.489024,84.869596 v -0.48094"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3782"
+       d="m 13.368686,86.869136 v -0.47958"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3784"
+       d="m 17.489024,86.869136 v -0.47958"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3786"
+       d="m 13.368686,88.868656 v -0.47955"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3788"
+       d="m 17.489024,88.868656 v -0.47955"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3790"
+       d="m 13.368686,90.869566 v -0.48093"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3792"
+       d="m 17.489024,90.869566 v -0.48093"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3794"
+       d="m 13.368686,82.868686 v -0.29903"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3796"
+       d="m 17.489024,82.868686 v -0.29903"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3798"
+       d="m 13.368686,92.688586 v -0.29904"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3800"
+       d="m 17.489024,92.688586 v -0.29904"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3802"
+       d="M 18.743022,92.389546 H 17.489024"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3804"
+       d="M 17.489024,82.569656 H 13.368686"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3806"
+       d="M 17.489024,92.688586 H 13.368686"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3808"
+       d="M 13.742117,17.839056 H 16.51473"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3810"
+       d="M 13.742117,14.418766 H 16.51473"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3812"
+       d="M 14.028756,80.929776 H 13.028301"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3814"
+       d="m 13.028301,82.628916 h 1.000455"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3816"
+       d="m 10.878572,10.853796 h 0.300406"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3818"
+       d="m 10.878572,11.228626 v -0.37483"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3820"
+       d="m 14.178972,10.853796 v 0.4506"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3822"
+       d="m 13.878566,10.853796 h 0.300406"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3824"
+       d="M 13.952963,10.853796 H 13.828934"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3826"
+       d="M 14.178972,12.504666 H 13.828934"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3828"
+       d="m 14.178972,12.029256 v 0.47541"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3830"
+       d="m 11.203794,12.504666 v 0.77448"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3832"
+       d="m 11.15279,12.504666 h 0.051"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3834"
+       d="m 10.878572,12.128476 0.274218,0.37619"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3836"
+       d="m 10.878572,11.854256 v 0.27422"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3838"
+       d="m 19.188131,81.040016 v -0.52228"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3840"
+       d="m 17.768754,81.040016 v -0.52228"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3842"
+       d="m 11.238236,90.990846 v -0.52367"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3844"
+       d="m 9.8188586,90.990846 v -0.52367"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3846"
+       d="m 20.938241,90.890236 v -0.52227"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3848"
+       d="m 19.518865,90.890236 v -0.52227"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3850"
+       d="M 11.890051,7.8193358 H 11.367776"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3852"
+       d="M 11.890051,9.2387358 H 11.367776"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3854"
+       d="M 12.489491,74.718976 H 11.967216"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3856"
+       d="M 12.489491,76.139716 H 11.967216"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3858"
+       d="m 20.888635,87.040006 v -0.52227"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3860"
+       d="m 19.467887,87.040006 v -0.52227"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.12;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3862"
+       d="M 18.103628,11.304396 V 9.5515358"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.2032;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3864"
+       d="M 20.953405,12.376526 V 6.9814958"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.2032;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3866"
+       d="m 19.955694,13.153746 h -0.85438"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.2032;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3868"
+       d="m 19.955694,6.2042758 h -0.85438"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.2032;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3870"
+       d="m 16.058623,76.128696 v 0.70005"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3872"
+       d="m 15.758191,75.829656 0.300432,0.29904"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3874"
+       d="m 15.778867,71.928426 h 0.199822"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3876"
+       d="m 15.778867,72.628476 v -0.70005"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3878"
+       d="m 20.978195,71.928426 v 0.60084"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3880"
+       d="m 20.7784,71.928426 h 0.199795"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3882"
+       d="m 20.978195,76.128696 v -0.70005"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path3884"
+       d="m 20.7784,76.128696 h 0.199795"
+       style="fill:none;stroke:#00c2c2;stroke-width:0.10000005;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:10;stroke-opacity:1" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4124"
+       d="m 19.977751,67.628956 h -1.29949 v -0.70004 h 1.29949 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4126"
+       d="m 19.977751,65.728646 h -1.29949 v -0.70004 h 1.29949 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4128"
+       d="m 12.780257,77.477796 h -0.89848 v -0.79788 h 0.89848 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4130"
+       d="m 12.780257,79.378116 h -0.89848 v -0.79789 h 0.89848 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4132"
+       d="m 14.877632,78.427266 h -0.898481 v -0.79788 h 0.898481 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4134"
+       d="M 11.327805,19.528536 H 9.8271216 v -2.99999 h 1.5006834 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4136"
+       d="m 20.828,19.528536 h -1.500683 v -2.99999 H 20.828 Z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4138"
+       d="m 10.254313,5.7302458 -0.0248,0.004 -0.02343,0.006 -0.02343,0.008 -0.02205,0.011 -0.02067,0.0124 -0.02067,0.0138 -0.01792,0.0165 -0.01653,0.0193 -0.01378,0.0193 -0.01378,0.0207 -0.0096,0.0221 -0.0083,0.0234 -0.0055,0.0234 -0.0041,0.0248 -0.0014,0.0248 v 0.89985 l 0.0014,0.0234 0.0041,0.0248 0.0055,0.0234 0.0083,0.0234 0.0096,0.022 0.02756,0.0414 0.01653,0.0179 0.01791,0.0165 0.02067,0.0152 0.02067,0.0124 0.02205,0.01 0.02343,0.008 0.02343,0.007 0.02481,0.003 0.02343,0.001 h 0.650434 l 0.0248,-0.001 0.02481,-0.003 0.02343,-0.007 0.02343,-0.008 0.02205,-0.01 0.02067,-0.0124 0.01929,-0.0152 0.01792,-0.0165 0.01654,-0.0179 0.01516,-0.0207 0.0124,-0.0207 0.01103,-0.022 0.0083,-0.0234 0.0055,-0.0234 0.0041,-0.0248 0.0014,-0.0234 v -0.89985 l -0.0014,-0.0248 -0.0041,-0.0248 -0.0055,-0.0234 -0.0083,-0.0234 -0.01103,-0.022 -0.0124,-0.0207 -0.01516,-0.0193 -0.01654,-0.0193 -0.01792,-0.0165 -0.01929,-0.0138 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.006 -0.02481,-0.004 -0.0248,-0.001 h -0.650434 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4140"
+       d="m 10.028315,6.4289058 c 0,-0.76619 1.150662,-0.76619 1.150662,0 0,0.76619 -1.150662,0.76619 -1.150662,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4142"
+       d="m 12.303456,5.7302458 -0.02343,0.004 -0.0248,0.006 -0.02205,0.008 -0.02205,0.011 -0.02205,0.0124 -0.01929,0.0138 -0.01792,0.0165 -0.01653,0.0193 -0.01516,0.0193 -0.0124,0.0207 -0.01103,0.0221 -0.0083,0.0234 -0.0055,0.0234 -0.0028,0.0248 -0.0014,0.0248 v 0.89985 l 0.0014,0.0234 0.0028,0.0248 0.0055,0.0234 0.0083,0.0234 0.01103,0.022 0.0124,0.0207 0.01516,0.0207 0.01653,0.0179 0.01792,0.0165 0.01929,0.0152 0.02205,0.0124 0.02205,0.01 0.02205,0.008 0.0248,0.007 0.02343,0.003 0.02481,0.001 H 12.9787 l 0.0248,-0.001 0.02343,-0.003 0.02343,-0.007 0.02343,-0.008 0.02205,-0.01 0.02205,-0.0124 0.01929,-0.0152 0.01792,-0.0165 0.01654,-0.0179 0.01516,-0.0207 0.0124,-0.0207 0.0096,-0.022 0.0083,-0.0234 0.0069,-0.0234 0.0028,-0.0248 0.0014,-0.0234 v -0.89985 l -0.0014,-0.0248 -0.0028,-0.0248 -0.0069,-0.0234 -0.0083,-0.0234 -0.0096,-0.022 -0.0124,-0.0207 -0.01516,-0.0193 -0.01654,-0.0193 -0.01792,-0.0165 -0.01929,-0.0138 -0.02205,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.006 -0.02343,-0.004 -0.0248,-0.001 h -0.650434 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4144"
+       d="m 12.078836,6.4289058 c 0,-0.76619 1.149284,-0.76619 1.149284,0 0,0.76619 -1.149284,0.76619 -1.149284,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4146"
+       d="m 14.633719,84.129586 h -2.579687 v -1.00045 h 2.579687 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4148"
+       d="m 18.803662,84.129586 h -2.579687 v -1.00045 h 2.579687 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4150"
+       d="m 14.633719,86.129126 h -2.579687 v -1.00046 h 2.579687 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4152"
+       d="m 18.803662,86.129126 h -2.579687 v -1.00046 h 2.579687 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4154"
+       d="m 14.633719,88.128656 h -2.579687 v -1.00046 h 2.579687 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4156"
+       d="m 18.803662,88.128656 h -2.579687 v -1.00046 h 2.579687 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4158"
+       d="m 14.633719,90.129566 h -2.579687 v -1.00045 h 2.579687 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4160"
+       d="m 18.803662,90.129566 h -2.579687 v -1.00045 h 2.579687 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4162"
+       d="m 14.633719,92.129096 h -2.579687 v -1.00045 h 2.579687 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4164"
+       d="m 18.803662,92.129096 h -2.579687 v -1.00045 h 2.579687 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4166"
+       d="m 16.929531,14.429796 -0.02481,0.004 -0.02343,0.006 -0.02343,0.008 -0.02205,0.011 -0.02067,0.0124 -0.02067,0.0152 -0.01792,0.0165 -0.01654,0.0179 -0.01516,0.0193 -0.0124,0.0207 -0.0096,0.0221 -0.0083,0.0234 -0.0069,0.0248 -0.0028,0.0234 -0.0014,0.0248 v 2.89939 l 0.0014,0.0248 0.0028,0.0248 0.0069,0.0234 0.0083,0.0234 0.0096,0.0221 0.0124,0.0207 0.01516,0.0193 0.01654,0.0193 0.01792,0.0165 0.02067,0.0138 0.02067,0.0124 0.02205,0.011 0.02343,0.008 0.02343,0.006 0.02481,0.004 0.02343,0.001 h 0.625628 l 0.0248,-0.001 0.02343,-0.004 0.02481,-0.006 0.02205,-0.008 0.02205,-0.011 0.02205,-0.0124 0.01929,-0.0138 0.01792,-0.0165 0.01653,-0.0193 0.01516,-0.0193 0.0124,-0.0207 0.0096,-0.0221 0.0083,-0.0234 0.0069,-0.0234 0.0028,-0.0248 0.0014,-0.0248 v -2.89937 l -0.0014,-0.0248 -0.0028,-0.0234 -0.0069,-0.0248 -0.0083,-0.0234 -0.0096,-0.0221 -0.0124,-0.0207 -0.01516,-0.0193 -0.01653,-0.0179 -0.01792,-0.0165 -0.01929,-0.0152 -0.02205,-0.0124 -0.02205,-0.011 -0.02205,-0.008 -0.02481,-0.006 -0.02343,-0.004 -0.0248,-0.001 H 16.95296 Z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4168"
+       d="m 16.703532,16.128916 c 0,-0.74965 1.124479,-0.74965 1.124479,0 0,0.74965 -1.124479,0.74965 -1.124479,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4170"
+       d="m 12.653478,14.429796 -0.02343,0.004 -0.0248,0.006 -0.02205,0.008 -0.02205,0.011 -0.02205,0.0124 -0.01929,0.0152 -0.01792,0.0165 -0.01653,0.0179 -0.01516,0.0193 -0.0124,0.0207 -0.01103,0.0221 -0.0083,0.0234 -0.0055,0.0248 -0.0028,0.0234 -0.0014,0.0248 v 2.89939 l 0.0014,0.0248 0.0028,0.0248 0.0055,0.0234 0.0083,0.0234 0.01103,0.0221 0.0124,0.0207 0.01516,0.0193 0.01653,0.0193 0.01792,0.0165 0.01929,0.0138 0.02205,0.0124 0.02205,0.011 0.02205,0.008 0.0248,0.006 0.02343,0.004 0.02481,0.001 h 0.625629 l 0.02343,-0.001 0.02481,-0.004 0.02343,-0.006 0.02343,-0.008 0.02205,-0.011 0.02067,-0.0124 0.02067,-0.0138 0.01792,-0.0165 0.01653,-0.0193 0.01378,-0.0193 0.01378,-0.0207 0.0096,-0.0221 0.0083,-0.0234 0.0069,-0.0234 0.0028,-0.0248 0.0014,-0.0248 v -2.89937 l -0.0014,-0.0248 -0.0028,-0.0234 -0.0069,-0.0248 -0.0083,-0.0234 -0.0096,-0.0221 -0.01378,-0.0207 -0.01378,-0.0193 -0.01653,-0.0179 -0.01792,-0.0165 -0.02067,-0.0152 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.006 -0.02481,-0.004 -0.02343,-0.001 h -0.625629 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4172"
+       d="m 12.428858,16.128916 c 0,-0.74965 1.124479,-0.74965 1.124479,0 0,0.74965 -1.124479,0.74965 -1.124479,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4174"
+       d="m 13.028305,82.404286 h -1.000456 v -1.24988 h 1.000456 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4176"
+       d="m 15.027838,82.404286 h -1.000456 v -1.24988 h 1.000456 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4178"
+       d="m 11.87902,13.379736 h -0.599446 v -1.29949 h 0.599446 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4180"
+       d="m 13.777957,13.379736 h -0.599446 v -1.29949 h 0.599446 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4182"
+       d="M 12.828489,11.279596 H 12.229042 V 9.9801058 h 0.599447 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4184"
+       d="m 18.0044,79.179676 -0.0248,0.004 -0.02343,0.006 -0.02343,0.008 -0.02205,0.011 -0.02067,0.0124 -0.02067,0.0152 -0.01792,0.0165 -0.01653,0.0179 -0.01378,0.0193 -0.01378,0.0207 -0.0096,0.0234 -0.0083,0.022 -0.0069,0.0248 -0.0028,0.0234 -0.0014,0.0248 v 0.65043 l 0.0014,0.0234 0.0028,0.0248 0.0069,0.0234 0.0083,0.0234 0.0096,0.022 0.02756,0.0413 0.01653,0.0179 0.01792,0.0165 0.02067,0.0152 0.02067,0.0124 0.02205,0.01 0.02343,0.008 0.02343,0.007 0.02481,0.003 0.02343,0.001 h 0.901233 l 0.02343,-0.001 0.0248,-0.003 0.02343,-0.007 0.02343,-0.008 0.02205,-0.01 0.02067,-0.0124 0.02067,-0.0152 0.01792,-0.0165 0.01653,-0.0179 0.02756,-0.0413 0.0096,-0.022 0.0083,-0.0234 0.0055,-0.0234 0.0041,-0.0248 0.0014,-0.0234 v -0.65043 l -0.0014,-0.0248 -0.0041,-0.0234 -0.0055,-0.0248 -0.0083,-0.022 -0.0096,-0.0234 -0.01378,-0.0207 -0.01378,-0.0193 -0.01653,-0.0179 -0.01791,-0.0165 -0.02067,-0.0152 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.006 -0.02481,-0.004 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4186"
+       d="m 17.903804,79.754316 c 0,-0.76756 1.149283,-0.76756 1.149283,0 0,0.76619 -1.149283,0.76619 -1.149283,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4188"
+       d="m 18.0044,81.230196 -0.0248,0.004 -0.02343,0.006 -0.02343,0.008 -0.02205,0.011 -0.02067,0.0124 -0.02067,0.0138 -0.01792,0.0165 -0.01653,0.0193 -0.01378,0.0193 -0.01378,0.0207 -0.0096,0.022 -0.0083,0.0234 -0.0069,0.0234 -0.0028,0.0248 -0.0014,0.0248 v 0.64906 l 0.0014,0.0248 0.0028,0.0248 0.0069,0.0234 0.0083,0.0234 0.0096,0.022 0.01378,0.0207 0.01378,0.0193 0.01653,0.0193 0.01792,0.0165 0.02067,0.0138 0.02067,0.0124 0.02205,0.011 0.02343,0.008 0.02343,0.006 0.0248,0.004 0.02343,0.001 h 0.901236 l 0.02343,-0.001 0.0248,-0.004 0.02343,-0.006 0.02343,-0.008 0.02205,-0.011 0.02067,-0.0124 0.02067,-0.0138 0.01792,-0.0165 0.01653,-0.0193 0.01378,-0.0193 0.01378,-0.0207 0.0096,-0.022 0.0083,-0.0234 0.0055,-0.0234 0.0041,-0.0248 0.0014,-0.0248 v -0.64906 l -0.0014,-0.0248 -0.0041,-0.0248 -0.0055,-0.0234 -0.0083,-0.0234 -0.0096,-0.022 -0.01378,-0.0207 -0.01378,-0.0193 -0.01653,-0.0193 -0.01792,-0.0165 -0.02067,-0.0138 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.006 -0.0248,-0.004 -0.02343,-0.001 h -0.901237 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4190"
+       d="m 17.903804,81.803456 c 0,-0.76618 1.149283,-0.76618 1.149283,0 0,0.76757 -1.149283,0.76757 -1.149283,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4192"
+       d="m 10.054498,89.130486 -0.02481,0.003 -0.02343,0.007 -0.02343,0.008 -0.02205,0.01 -0.04134,0.0276 -0.01791,0.0165 -0.01653,0.0179 -0.02756,0.0413 -0.0096,0.022 -0.0083,0.0234 -0.0069,0.0234 -0.0028,0.0248 -0.0014,0.0234 v 0.65043 l 0.0014,0.0248 0.0028,0.0234 0.0069,0.0248 0.0083,0.0234 0.0096,0.022 0.01378,0.0207 0.01378,0.0193 0.01653,0.0179 0.01791,0.0165 0.02067,0.0152 0.02067,0.0124 0.02205,0.011 0.02343,0.008 0.02343,0.006 0.0248,0.004 0.02343,0.001 h 0.899859 l 0.02481,-0.001 0.0248,-0.004 0.02343,-0.006 0.02343,-0.008 0.02205,-0.011 0.02067,-0.0124 0.02067,-0.0152 0.01792,-0.0165 0.01653,-0.0179 0.01378,-0.0193 0.0124,-0.0207 0.01103,-0.022 0.0083,-0.0234 0.0055,-0.0248 0.0041,-0.0234 0.0014,-0.0248 v -0.65043 l -0.0014,-0.0234 -0.0041,-0.0248 -0.0055,-0.0234 -0.0083,-0.0234 -0.01103,-0.022 -0.0124,-0.0207 -0.01378,-0.0207 -0.01653,-0.0179 -0.01792,-0.0165 -0.04134,-0.0276 -0.02205,-0.01 -0.02343,-0.008 -0.02343,-0.007 -0.0248,-0.003 -0.0248,-0.001 h -0.899859 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4194"
+       d="m 9.9539006,89.703756 c 0,-0.76619 1.1492844,-0.76619 1.1492844,0 0,0.76756 -1.1492844,0.76756 -1.1492844,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4196"
+       d="m 10.054498,91.179636 -0.02481,0.004 -0.02343,0.005 -0.02343,0.008 -0.02205,0.011 -0.02067,0.0124 -0.02067,0.0152 -0.01791,0.0165 -0.01653,0.0179 -0.01378,0.0193 -0.01378,0.022 -0.0096,0.022 -0.0083,0.022 -0.0069,0.0248 -0.0028,0.0234 -0.0014,0.0248 v 0.65043 l 0.0014,0.0248 0.0028,0.0234 0.0069,0.0234 0.0083,0.0234 0.0096,0.022 0.01378,0.022 0.01378,0.0193 0.01653,0.0179 0.01791,0.0165 0.02067,0.0152 0.02067,0.0124 0.02205,0.01 0.02343,0.008 0.02343,0.007 0.02481,0.003 0.02343,10e-4 h 0.899859 l 0.0248,-10e-4 0.0248,-0.003 0.02343,-0.007 0.02343,-0.008 0.02205,-0.01 0.02067,-0.0124 0.02067,-0.0152 0.01792,-0.0165 0.01653,-0.0179 0.01378,-0.0193 0.0124,-0.022 0.01103,-0.022 0.0083,-0.0234 0.0055,-0.0234 0.0041,-0.0234 0.0014,-0.0248 v -0.65043 l -0.0014,-0.0248 -0.0041,-0.0234 -0.0055,-0.0248 -0.0083,-0.022 -0.01103,-0.022 -0.0124,-0.022 -0.01378,-0.0193 -0.01653,-0.0179 -0.01792,-0.0165 -0.02067,-0.0152 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.005 -0.0248,-0.004 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4198"
+       d="m 9.9539006,91.754276 c 0,-0.76619 1.1492844,-0.76619 1.1492844,0 0,0.76619 -1.1492844,0.76619 -1.1492844,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4200"
+       d="m 19.754509,89.029896 -0.0248,0.004 -0.02343,0.005 -0.02343,0.008 -0.02205,0.011 -0.02067,0.0124 -0.02067,0.0152 -0.01791,0.0165 -0.01653,0.0179 -0.01516,0.0193 -0.0124,0.0207 -0.0096,0.022 -0.0083,0.0234 -0.0069,0.0234 -0.0028,0.0248 -0.0014,0.0248 v 0.65043 l 0.0014,0.0234 0.0028,0.0248 0.0069,0.0234 0.0083,0.0234 0.0096,0.022 0.0124,0.0207 0.01516,0.0207 0.01653,0.0179 0.01791,0.0165 0.04134,0.0276 0.02205,0.01 0.02343,0.008 0.02343,0.005 0.0248,0.004 0.02343,0.001 h 0.899859 l 0.0248,-0.001 0.02481,-0.004 0.02343,-0.005 0.02343,-0.008 0.02205,-0.01 0.04134,-0.0276 0.01792,-0.0165 0.01653,-0.0179 0.01378,-0.0207 0.0124,-0.0207 0.01103,-0.022 0.0083,-0.0234 0.0055,-0.0234 0.0041,-0.0248 0.0014,-0.0234 v -0.65043 l -0.0014,-0.0248 -0.0041,-0.0248 -0.0055,-0.0234 -0.0083,-0.0234 -0.01103,-0.022 -0.0124,-0.0207 -0.01378,-0.0193 -0.01653,-0.0179 -0.01792,-0.0165 -0.02067,-0.0152 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.005 -0.0248,-0.004 -0.02481,-10e-4 h -0.899859 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4202"
+       d="m 19.653912,89.604536 c 0,-0.76757 1.149284,-0.76757 1.149284,0 0,0.76619 -1.149284,0.76619 -1.149284,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4204"
+       d="m 19.754509,91.080416 -0.0248,0.004 -0.02343,0.005 -0.02343,0.008 -0.02205,0.01 -0.04134,0.0276 -0.01792,0.0165 -0.01653,0.0179 -0.01516,0.0207 -0.0124,0.0207 -0.0096,0.022 -0.0083,0.0234 -0.0069,0.0234 -0.0028,0.0248 -0.0014,0.0234 v 0.65043 l 0.0014,0.0248 0.0028,0.0248 0.0069,0.0234 0.0083,0.0234 0.0096,0.022 0.0124,0.0207 0.01516,0.0193 0.01653,0.0179 0.01792,0.0165 0.02067,0.0152 0.02067,0.0124 0.02205,0.011 0.02343,0.008 0.02343,0.005 0.02481,0.004 0.02343,10e-4 h 0.899858 l 0.0248,-10e-4 0.02481,-0.004 0.02343,-0.005 0.02343,-0.008 0.02205,-0.011 0.02067,-0.0124 0.02067,-0.0152 0.01792,-0.0165 0.01653,-0.0179 0.01378,-0.0193 0.0124,-0.0207 0.01103,-0.022 0.0083,-0.0234 0.0055,-0.0234 0.0041,-0.0248 0.0014,-0.0248 v -0.65043 l -0.0014,-0.0234 -0.0041,-0.0248 -0.0055,-0.0234 -0.0083,-0.0234 -0.01103,-0.022 -0.0124,-0.0207 -0.01378,-0.0207 -0.01653,-0.0179 -0.01792,-0.0165 -0.04134,-0.0276 -0.02205,-0.01 -0.02343,-0.008 -0.02343,-0.005 -0.02481,-0.004 -0.0248,-0.001 h -0.899859 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4206"
+       d="m 19.653912,91.653676 c 0,-0.76619 1.149284,-0.76619 1.149284,0 0,0.76757 -1.149284,0.76757 -1.149284,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4208"
+       d="m 10.254313,7.8303758 -0.0248,0.004 -0.02343,0.006 -0.02343,0.008 -0.02205,0.011 -0.02067,0.0124 -0.02067,0.0138 -0.01792,0.0165 -0.01653,0.0179 -0.02756,0.0413 -0.0096,0.0221 -0.0083,0.0234 -0.0055,0.0234 -0.0041,0.0248 -0.0014,0.0234 v 0.90124 l 0.0014,0.0234 0.0041,0.0248 0.0055,0.0234 0.0083,0.0234 0.0096,0.0221 0.02756,0.0413 0.01653,0.0179 0.01792,0.0165 0.04134,0.0276 0.02205,0.01 0.02343,0.008 0.02343,0.007 0.02481,0.003 0.02343,0.001 h 0.650434 l 0.0248,-0.001 0.02481,-0.003 0.02343,-0.007 0.02343,-0.008 0.02205,-0.01 0.02067,-0.0138 0.01929,-0.0138 0.01792,-0.0165 0.01654,-0.0179 0.01516,-0.0207 0.0124,-0.0207 0.01103,-0.0221 0.0083,-0.0234 0.0055,-0.0234 0.0041,-0.0248 0.0014,-0.0234 v -0.90123 l -0.0014,-0.0234 -0.0041,-0.0248 -0.0055,-0.0234 -0.0083,-0.0234 -0.01103,-0.022 -0.0124,-0.0207 -0.01516,-0.0207 -0.01654,-0.0179 -0.01792,-0.0165 -0.01929,-0.0138 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.006 -0.02481,-0.004 -0.0248,-0.001 h -0.650434 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4210"
+       d="m 10.028315,8.5290358 c 0,-0.76619 1.150662,-0.76619 1.150662,0 0,0.76619 -1.150662,0.76619 -1.150662,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4212"
+       d="m 12.303456,7.8303758 -0.02343,0.004 -0.0248,0.006 -0.02205,0.008 -0.02205,0.011 -0.02205,0.0124 -0.01929,0.0138 -0.01792,0.0165 -0.01653,0.0179 -0.01516,0.0207 -0.0124,0.0207 -0.01103,0.022 -0.0083,0.0234 -0.0055,0.0234 -0.0028,0.0248 -0.0014,0.0234 v 0.90123 l 0.0014,0.0234 0.0028,0.0248 0.0055,0.0234 0.0083,0.0234 0.01103,0.022 0.0124,0.0207 0.01516,0.0207 0.01653,0.0179 0.01792,0.0165 0.01929,0.0138 0.02205,0.0138 0.02205,0.01 0.02205,0.008 0.0248,0.007 0.02343,0.003 0.02481,10e-4 H 12.9787 l 0.0248,-10e-4 0.02343,-0.003 0.02343,-0.007 0.02343,-0.008 0.02205,-0.01 0.02205,-0.0138 0.01929,-0.0138 0.01792,-0.0165 0.01654,-0.0179 0.01516,-0.0207 0.0124,-0.0207 0.0096,-0.022 0.0083,-0.0234 0.0069,-0.0234 0.0028,-0.0248 0.0014,-0.0234 v -0.90124 l -0.0014,-0.0234 -0.0028,-0.0248 -0.0069,-0.0234 -0.0083,-0.0234 -0.0096,-0.0221 -0.0124,-0.0207 -0.01516,-0.0207 -0.01654,-0.0179 -0.01792,-0.0165 -0.01929,-0.0138 -0.02205,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.006 -0.02343,-0.004 -0.0248,-0.001 h -0.650434 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4214"
+       d="m 12.078836,8.5290358 c 0,-0.76619 1.149284,-0.76619 1.149284,0 0,0.76619 -1.149284,0.76619 -1.149284,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4216"
+       d="m 10.85376,74.729986 -0.02481,0.004 -0.02343,0.005 -0.02343,0.008 -0.02205,0.011 -0.02067,0.0124 -0.01929,0.0152 -0.01792,0.0152 -0.01654,0.0193 -0.01516,0.0193 -0.0124,0.0207 -0.01103,0.022 -0.0083,0.0234 -0.0055,0.0234 -0.0041,0.0248 -0.0014,0.0248 v 0.89984 l 0.0014,0.0248 0.0041,0.0234 0.0055,0.0248 0.0083,0.022 0.01103,0.022 0.0124,0.022 0.01516,0.0193 0.01654,0.0179 0.01792,0.0165 0.01929,0.0152 0.02067,0.0124 0.02205,0.01 0.02343,0.008 0.02343,0.007 0.02481,0.003 0.02481,0.001 h 0.650434 l 0.02343,-0.001 0.0248,-0.003 0.02343,-0.007 0.02343,-0.008 0.02205,-0.01 0.02067,-0.0124 0.02067,-0.0152 0.01791,-0.0165 0.01653,-0.0179 0.01378,-0.0193 0.01378,-0.022 0.0096,-0.022 0.0083,-0.022 0.0055,-0.0248 0.0041,-0.0234 0.0014,-0.0248 v -0.89986 l -0.0014,-0.0248 -0.0041,-0.0248 -0.0055,-0.0234 -0.0083,-0.0234 -0.0096,-0.022 -0.01378,-0.0207 -0.01378,-0.0193 -0.01653,-0.0193 -0.01791,-0.0152 -0.02067,-0.0152 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.005 -0.0248,-0.004 -0.02343,-0.001 H 10.87857 Z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4218"
+       d="m 10.627762,75.428656 c 0,-0.76619 1.150662,-0.76619 1.150662,0 0,0.76757 -1.150662,0.76757 -1.150662,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4220"
+       d="m 12.904281,74.729986 -0.0248,0.004 -0.02343,0.005 -0.02343,0.008 -0.02205,0.011 -0.02067,0.0124 -0.02067,0.0152 -0.01791,0.0152 -0.01653,0.0193 -0.01378,0.0193 -0.0124,0.0207 -0.01103,0.022 -0.0083,0.0234 -0.0055,0.0234 -0.0041,0.0248 -0.0014,0.0248 v 0.89984 l 0.0014,0.0248 0.0041,0.0234 0.0055,0.0248 0.0083,0.022 0.01103,0.022 0.0124,0.022 0.01378,0.0193 0.01653,0.0179 0.01791,0.0165 0.02067,0.0152 0.02067,0.0124 0.02205,0.01 0.02343,0.008 0.02343,0.007 0.0248,0.003 0.02481,0.001 h 0.649055 l 0.0248,-0.001 0.02481,-0.003 0.02343,-0.007 0.02343,-0.008 0.02205,-0.01 0.02067,-0.0124 0.01929,-0.0152 0.01792,-0.0165 0.01653,-0.0179 0.01516,-0.0193 0.0124,-0.022 0.01103,-0.022 0.0083,-0.022 0.0055,-0.0248 0.0041,-0.0234 0.0014,-0.0248 v -0.89986 l -0.0014,-0.0248 -0.0041,-0.0248 -0.0055,-0.0234 -0.0083,-0.0234 -0.01103,-0.022 -0.0124,-0.0207 -0.01516,-0.0193 -0.01653,-0.0193 -0.01792,-0.0152 -0.01929,-0.0152 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.005 -0.02481,-0.004 -0.0248,-0.001 h -0.649055 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4222"
+       d="m 12.678283,75.428656 c 0,-0.76619 1.150662,-0.76619 1.150662,0 0,0.76757 -1.150662,0.76757 -1.150662,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4224"
+       d="m 19.703521,85.179656 -0.02343,0.004 -0.0248,0.006 -0.02205,0.008 -0.02205,0.011 -0.02205,0.0124 -0.01929,0.0152 -0.01792,0.0165 -0.01653,0.0179 -0.01516,0.0193 -0.0124,0.0207 -0.01103,0.0234 -0.0083,0.022 -0.0055,0.0248 -0.0028,0.0234 -0.0014,0.0248 v 0.65043 l 0.0014,0.0234 0.0028,0.0248 0.0055,0.0234 0.0083,0.0234 0.01103,0.022 0.0124,0.0207 0.01516,0.0207 0.01653,0.0179 0.01792,0.0165 0.01929,0.0152 0.02205,0.0124 0.02205,0.01 0.02205,0.008 0.0248,0.007 0.02343,0.003 0.02481,10e-4 h 0.899859 l 0.02481,-10e-4 0.02481,-0.003 0.02343,-0.007 0.02343,-0.008 0.02205,-0.01 0.02067,-0.0124 0.01929,-0.0152 0.01792,-0.0165 0.01653,-0.0179 0.01516,-0.0207 0.0124,-0.0207 0.01103,-0.022 0.0083,-0.0234 0.0055,-0.0234 0.0041,-0.0248 0.0014,-0.0234 v -0.65043 l -0.0014,-0.0248 -0.0041,-0.0234 -0.0055,-0.0248 -0.0083,-0.022 -0.01103,-0.0234 -0.0124,-0.0207 -0.01516,-0.0193 -0.01653,-0.0179 -0.01792,-0.0165 -0.01929,-0.0152 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.006 -0.02481,-0.004 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4226"
+       d="m 19.602924,85.754296 c 0,-0.76619 1.150663,-0.76619 1.150663,0 0,0.76619 -1.150663,0.76619 -1.150663,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4228"
+       d="m 19.703521,87.230176 -0.02343,0.004 -0.0248,0.006 -0.02205,0.008 -0.02205,0.011 -0.02205,0.0124 -0.01929,0.0138 -0.01792,0.0165 -0.01653,0.0193 -0.01516,0.0193 -0.0124,0.0207 -0.01103,0.022 -0.0083,0.0234 -0.0055,0.0234 -0.0028,0.0248 -0.0014,0.0248 v 0.64905 l 0.0014,0.0248 0.0028,0.0248 0.0055,0.0234 0.0083,0.0234 0.01103,0.022 0.0124,0.0207 0.01516,0.0193 0.01653,0.0193 0.01792,0.0165 0.01929,0.0138 0.02205,0.0124 0.02205,0.011 0.02205,0.008 0.0248,0.005 0.02343,0.004 0.02481,0.001 h 0.899859 l 0.02481,-0.001 0.02481,-0.004 0.02343,-0.005 0.02343,-0.008 0.02205,-0.011 0.02067,-0.0124 0.01929,-0.0138 0.01792,-0.0165 0.01653,-0.0193 0.01516,-0.0193 0.0124,-0.0207 0.01103,-0.022 0.0083,-0.0234 0.0055,-0.0234 0.0041,-0.0248 0.0014,-0.0248 v -0.64905 l -0.0014,-0.0248 -0.0041,-0.0248 -0.0055,-0.0234 -0.0083,-0.0234 -0.01103,-0.022 -0.0124,-0.0207 -0.01516,-0.0193 -0.01653,-0.0193 -0.01792,-0.0165 -0.01929,-0.0138 -0.02067,-0.0124 -0.02205,-0.011 -0.02343,-0.008 -0.02343,-0.006 -0.02481,-0.004 -0.02481,-0.001 h -0.899859 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4230"
+       d="m 19.602924,87.803436 c 0,-0.76619 1.150663,-0.76619 1.150663,0 0,0.76757 -1.150663,0.76757 -1.150663,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4232"
+       d="m 18.827089,13.827596 h -0.797884 v -0.9977 h 0.797884 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4234"
+       d="m 20.826622,13.827596 h -0.599446 v -0.9977 h 0.599446 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4236"
+       d="m 18.827089,6.5281258 h -0.797884 v -0.9977 h 0.797884 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4238"
+       d="m 20.826622,6.5281258 h -0.599446 v -0.9977 h 0.599446 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4240"
+       d="m 18.530811,12.275926 h -1.497928 v -0.69867 h 1.497928 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4242"
+       d="m 18.530811,9.2786858 h -1.497928 v -0.69866 h 1.497928 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4244"
+       d="m 18.530811,7.7807658 h -1.497928 v -0.69867 h 1.497928 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4246"
+       d="m 16.823422,72.363896 h -0.700044 v -1.5999 h 0.700044 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4248"
+       d="M 18.093973,72.363896 H 17.39393 v -1.5999 h 0.700043 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4250"
+       d="m 19.363146,72.363896 h -0.700043 v -1.5999 h 0.700043 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4252"
+       d="m 20.633697,72.363896 h -0.700043 v -1.5999 h 0.700043 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4254"
+       d="m 16.823422,77.294516 h -0.700044 v -1.5999 h 0.700044 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4256"
+       d="m 20.633697,77.294516 h -0.700043 v -1.5999 h 0.700043 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4258"
+       d="M 18.093973,77.294516 H 17.39393 v -1.5999 h 0.700043 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+    <path
+       inkscape:connector-curvature="0"
+       id="path4260"
+       d="m 19.363146,77.294516 h -0.700043 v -1.5999 h 0.700043 z m 0,0"
+       style="fill:#73f066;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.35277775" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer5"
+     inkscape:label="Layer 2"
+     style="display:inline">
+    <path
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#d40000;stroke-width:0.05000509;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 19.31089,63.383728 c 1.108545,0 2.001428,0.892366 2.001428,2.000911 v 5.256009 h -5.648233 v 6.818188 h 5.648233 v 7.539075 h -2.04742 v 7.497217 h 2.04742 v 9.600962 c 0,1.10855 -0.892883,2.00091 -2.001428,2.00091 h -7.987109 c -1.108545,0 -2.0009114,-0.89236 -2.0009114,-2.00091 V 92.495128 H 11.512917 V 88.959943 H 9.3228696 V 65.384639 c 0,-1.108545 0.8923664,-2.000911 2.0009114,-2.000911 z m 0.570508,1.498616 h -1.112594 c -0.132034,0 -0.238745,0.106193 -0.238745,0.238228 v 2.411738 c 0,0.132035 0.106711,0.238228 0.238745,0.238228 h 1.112594 c 0.132035,3e-6 0.238228,-0.106193 0.238228,-0.238228 v -2.411738 c 0,-0.132035 -0.106193,-0.238228 -0.238228,-0.238228 z m -5.80378,9.613365 h -3.662825 v 1.867588 h 1.020609 v 3.448884 h 3.538285 v -3.731038 h -0.896069 z m 5.393469,4.38888 h -1.989026 v 3.444753 h -2.165242 v -1.492933 h -3.570842 v 1.867585 h 1.37356 v 10.245371 h 4.62349 V 82.625963 h 1.72806 z"
+       id="rect5076-3-7"
+       inkscape:connector-curvature="0" />
+    <path
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#d40000;stroke-width:0.0500051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 40.477558,68.146228 c 1.108545,0 2.001428,0.892366 2.001428,2.000911 v 0.493509 h -5.648233 v 6.818188 h 5.648233 v 7.539075 h -2.04742 v 7.497217 h 2.04742 v 9.600962 c 0,1.10855 -0.892883,2.00091 -2.001428,2.00091 h -7.987109 c -1.108545,0 -2.000912,-0.89236 -2.000912,-2.00091 v -9.600962 h 2.190048 V 88.959943 H 30.489537 V 70.147139 c 0,-1.108545 0.892367,-2.000911 2.000912,-2.000911 z m -5.233272,6.349481 h -3.662825 v 1.867588 h 1.020609 v 3.448884 h 3.538285 v -3.731038 h -0.896069 z m 5.393469,4.38888 h -1.989026 v 3.444753 h -2.165242 v -1.492933 h -3.570842 v 1.867585 h 1.37356 v 10.245371 h 4.62349 V 82.625963 h 1.72806 z"
+       id="path1150"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="ssccccccccssssccccssscccccccccccccccccccccc" />
+  </g>
+  <g
+     inkscape:groupmode="layer"
+     id="layer7"
+     inkscape:label="Layer 3"
+     style="display:none">
+    <path
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#d40000;stroke-width:0.05000509;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       d="m 19.31089,63.383728 c 1.108545,0 2.001428,0.892366 2.001428,2.000911 v 5.256009 h -5.648233 v 6.818188 h 5.648233 v 24.637254 c 0,1.10855 -0.892883,2.00143 -2.001428,2.00143 h -7.987109 c -1.108545,0 -2.0009114,-0.89288 -2.0009114,-2.00143 V 65.384639 c 0,-1.108545 0.8923664,-2.000911 2.0009114,-2.000911 z m -4.337203,12.697415 h -3.538285 v 3.731038 h 3.538285 z m 2.76934,6.248199 h -4.62349 v 10.620023 h 4.62349 z"
+       id="rect5076-3-7-6"
+       inkscape:connector-curvature="0" />
+  </g>
+  <g
+     inkscape:label="Layer 2 copy"
+     id="g10359"
+     inkscape:groupmode="layer"
+     style="display:none"
+     sodipodi:insensitive="true">
+    <rect
+       ry="2.0009832"
+       y="63.383694"
+       x="-21.31213"
+       height="40.71357"
+       width="11.989243"
+       id="rect10357"
+       style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#d40000;stroke-width:0.05000509;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
+       transform="scale(-1,1)" />
+  </g>
+</svg>
Contact me: dev (at) shalnoff (dot) com
PGP fingerprint: A6B8 3B23 6013 F18A 0C71 198B 83D8 C64D 917A 5717