From a28512e179adb36736827008d568714e25b84e04 Mon Sep 17 00:00:00 2001 From: Tony Kuker Date: Fri, 21 May 2021 22:05:00 -0500 Subject: [PATCH 1/4] First draft of python test using loopback adapter from saybur --- src/loopback_test/test.py | 216 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 216 insertions(+) create mode 100755 src/loopback_test/test.py diff --git a/src/loopback_test/test.py b/src/loopback_test/test.py new file mode 100755 index 00000000..15b72dc4 --- /dev/null +++ b/src/loopback_test/test.py @@ -0,0 +1,216 @@ +#!/usr/bin/env python3 + +import RPi.GPIO as gpio +import time + +pin_settle_delay = 0.01 + +err_count = 0 + +scsi_d0_gpio = 19 +scsi_d1_gpio = 23 +scsi_d2_gpio = 32 +scsi_d3_gpio = 33 +scsi_d4_gpio = 8 +scsi_d5_gpio = 10 +scsi_d6_gpio = 36 +scsi_d7_gpio = 11 +scsi_dp_gpio = 12 +scsi_atn_gpio = 35 +scsi_rst_gpio = 38 +scsi_ack_gpio = 40 +scsi_req_gpio = 15 +scsi_msg_gpio = 16 +scsi_cd_gpio = 18 +scsi_io_gpio = 22 +scsi_bsy_gpio = 37 +scsi_sel_gpio = 13 + +rascsi_ind_gpio = 31 +rascsi_tad_gpio = 26 +rascsi_dtd_gpio = 24 +rascsi_none = -1 + +gpio_map = [ + { 'gpio_num': scsi_d0_gpio, 'attached_to': scsi_ack_gpio, 'dir_ctrl': rascsi_dtd_gpio}, + { 'gpio_num': scsi_d1_gpio, 'attached_to': scsi_sel_gpio, 'dir_ctrl': rascsi_dtd_gpio}, + { 'gpio_num': scsi_d2_gpio, 'attached_to': scsi_atn_gpio, 'dir_ctrl': rascsi_dtd_gpio}, + { 'gpio_num': scsi_d3_gpio, 'attached_to': scsi_rst_gpio, 'dir_ctrl': rascsi_dtd_gpio}, + { 'gpio_num': scsi_d4_gpio, 'attached_to': scsi_cd_gpio, 'dir_ctrl': rascsi_dtd_gpio}, + { 'gpio_num': scsi_d5_gpio, 'attached_to': scsi_io_gpio, 'dir_ctrl': rascsi_dtd_gpio}, + { 'gpio_num': scsi_d6_gpio, 'attached_to': scsi_msg_gpio, 'dir_ctrl': rascsi_dtd_gpio}, + { 'gpio_num': scsi_d7_gpio, 'attached_to': scsi_req_gpio, 'dir_ctrl': rascsi_dtd_gpio}, + { 'gpio_num': scsi_dp_gpio, 'attached_to': scsi_bsy_gpio, 'dir_ctrl': rascsi_dtd_gpio}, + { 'gpio_num': scsi_atn_gpio, 'attached_to': scsi_d2_gpio, 'dir_ctrl': rascsi_ind_gpio}, + { 'gpio_num': scsi_rst_gpio, 'attached_to': scsi_d3_gpio, 'dir_ctrl': rascsi_ind_gpio}, + { 'gpio_num': scsi_ack_gpio, 'attached_to': scsi_d0_gpio, 'dir_ctrl': rascsi_ind_gpio}, + { 'gpio_num': scsi_req_gpio, 'attached_to': scsi_d7_gpio, 'dir_ctrl': rascsi_tad_gpio}, + { 'gpio_num': scsi_msg_gpio, 'attached_to': scsi_d6_gpio, 'dir_ctrl': rascsi_tad_gpio}, + { 'gpio_num': scsi_cd_gpio, 'attached_to': scsi_d4_gpio, 'dir_ctrl': rascsi_tad_gpio}, + { 'gpio_num': scsi_io_gpio, 'attached_to': scsi_d5_gpio, 'dir_ctrl': rascsi_tad_gpio}, + { 'gpio_num': scsi_bsy_gpio, 'attached_to': scsi_dp_gpio, 'dir_ctrl': rascsi_tad_gpio}, + { 'gpio_num': scsi_sel_gpio, 'attached_to': scsi_d1_gpio, 'dir_ctrl': rascsi_ind_gpio}, +] + +scsi_signals = { + scsi_d0_gpio: 'D0', + scsi_d1_gpio: 'D1', + scsi_d2_gpio: 'D2', + scsi_d3_gpio: 'D3', + scsi_d4_gpio: 'D4', + scsi_d5_gpio: 'D5', + scsi_d6_gpio: 'D6', + scsi_d7_gpio: 'D7', + scsi_dp_gpio: 'DP', + scsi_atn_gpio: 'ATN', + scsi_rst_gpio: 'RST', + scsi_ack_gpio: 'ACK', + scsi_req_gpio: 'REQ', + scsi_msg_gpio: 'MSG', + scsi_cd_gpio: 'CD', + scsi_io_gpio: 'IO', + scsi_bsy_gpio: 'BSY', + scsi_sel_gpio: 'SEL' +} + +# DB7 -> REQ +# DB6 -> MSG +# DB5 -> I/O +# DB3 -> RST +# DB0 -> ACK +# DB4 -> CD +# DB2 -> ATN + +def print_all(): + for cur_gpio in gpio_map: + print(cur_gpio['name']+"="+str(gpio.input(cur_gpio['gpio_num'])) + " ", end='', flush=True) + print("") + +def set_dtd_out(): + gpio.output(rascsi_dtd_gpio,gpio.LOW) +def set_dtd_in(): + gpio.output(rascsi_dtd_gpio,gpio.HIGH) + +def set_ind_out(): + gpio.output(rascsi_ind_gpio,gpio.HIGH) +def set_ind_in(): + gpio.output(rascsi_ind_gpio,gpio.LOW) + +def set_tad_out(): + gpio.output(rascsi_tad_gpio,gpio.HIGH) +def set_tad_in(): + gpio.output(rascsi_tad_gpio,gpio.LOW) + +def set_output_channel(out_gpio): + if(out_gpio == rascsi_tad_gpio): + set_tad_out() + else: + set_tad_in() + if(out_gpio == rascsi_dtd_gpio): + set_dtd_out() + else: + set_dtd_in() + if(out_gpio == rascsi_ind_gpio): + set_ind_out() + else: + set_ind_in() + + +def test_gpio_pin(gpio_rec): + global err_count + + set_output_channel(gpio_rec['dir_ctrl']) + + ############################################ + # set the test gpio low + gpio.output(gpio_rec['gpio_num'], gpio.LOW) + + time.sleep(pin_settle_delay) + + # loop through all of the gpios + for cur_gpio in scsi_signals: + # all of the gpios should be high except for the test gpio and the connected gpio + cur_val = gpio.input(cur_gpio) + if( cur_gpio == gpio_rec['gpio_num']): + if(cur_val != gpio.LOW): + print("Error: Test commanded GPIO " + scsi_signals[gpio_rec['gpio_num']] + " to be low, but it did not respond") + err_count = err_count+1 + elif (cur_gpio == gpio_rec['attached_to']): + if(cur_val != gpio.LOW): + print("Error: GPIO " + scsi_signals[gpio_rec['gpio_num']] + " should drive " + scsi_signals[gpio_rec['attached_to']] + " low, but did not") + err_count = err_count+1 + else: + if(cur_val != gpio.HIGH): + print("Error: GPIO " + scsi_signals[gpio_rec['gpio_num']] + " incorrectly pulled " + scsi_signals[cur_gpio] + " LOW, when it shouldn't have") + err_count = err_count+1 + + ############################################ + # set the transceivers to input + set_output_channel(rascsi_none) + + time.sleep(pin_settle_delay) + + # loop through all of the gpios + for cur_gpio in scsi_signals: + # all of the gpios should be high except for the test gpio + cur_val = gpio.input(cur_gpio) + if( cur_gpio == gpio_rec['gpio_num']): + if(cur_val != gpio.LOW): + print("Error: Test commanded GPIO " + scsi_signals[gpio_rec['gpio_num']] + " to be low, but it did not respond") + err_count = err_count+1 + else: + if(cur_val != gpio.HIGH): + print("Error: GPIO " + scsi_signals[gpio_rec['gpio_num']] + " incorrectly pulled " + scsi_signals[cur_gpio] + " LOW, when it shouldn't have") + err_count = err_count+1 + + + # Set the transceiver back to output + set_output_channel(gpio_rec['dir_ctrl']) + + ############################################# + # set the test gpio high + gpio.output(gpio_rec['gpio_num'], gpio.HIGH) + + time.sleep(pin_settle_delay) + + # loop through all of the gpios + for cur_gpio in scsi_signals: + # all of the gpios should be high + cur_val = gpio.input(cur_gpio) + if( cur_gpio == gpio_rec['gpio_num']): + if(cur_val != gpio.HIGH): + print("Error: Test commanded GPIO " + scsi_signals[gpio_rec['gpio_num']] + " to be high, but it did not respond") + err_count = err_count+1 + else: + if(cur_val != gpio.HIGH): + print("Error: GPIO " + scsi_signals[gpio_rec['gpio_num']] + " incorrectly pulled " + scsi_signals[cur_gpio] + " LOW, when it shouldn't have") + err_count = err_count+1 + + +def setup(): + gpio.setmode(gpio.BOARD) + gpio.setwarnings(False) + for cur_gpio in gpio_map: + gpio.setup(cur_gpio['gpio_num'], gpio.OUT, initial=gpio.HIGH) + + # Setup direction control + gpio.setup(rascsi_ind_gpio, gpio.OUT) + gpio.setup(rascsi_tad_gpio, gpio.OUT) + gpio.setup(rascsi_dtd_gpio, gpio.OUT) + + +# Press the green button in the gutter to run the script. +if __name__ == '__main__': + + setup() + + for cur_gpio in gpio_map: + test_gpio_pin(cur_gpio) + + print("Total errors: " + str(err_count)) + gpio.cleanup() + + if(err_count == 0): + print("-------- Test PASSED --------") + else: + print("!!!!!!!! Test FAILED !!!!!!!!") From f779a1cbc2fce528b4b52aa69857a76f249ffaf7 Mon Sep 17 00:00:00 2001 From: Tony Kuker Date: Fri, 21 May 2021 22:13:33 -0500 Subject: [PATCH 2/4] Added comments --- src/loopback_test/test.py | 73 +++++++++++++++++++++++++++++++-------- 1 file changed, 59 insertions(+), 14 deletions(-) diff --git a/src/loopback_test/test.py b/src/loopback_test/test.py index 15b72dc4..98e9edb6 100755 --- a/src/loopback_test/test.py +++ b/src/loopback_test/test.py @@ -1,4 +1,33 @@ #!/usr/bin/env python3 +# BSD 3-Clause License +# +# Copyright (c) 2021, akuker +# All rights reserved. +# +# Redistribution and use in source and binary forms, with or without +# modification, are permitted provided that the following conditions are met: +# +# 1. Redistributions of source code must retain the above copyright notice, this +# list of conditions and the following disclaimer. +# +# 2. Redistributions in binary form must reproduce the above copyright notice, +# this list of conditions and the following disclaimer in the documentation +# and/or other materials provided with the distribution. +# +# 3. Neither the name of the copyright holder nor the names of its +# contributors may be used to endorse or promote products derived from +# this software without specific prior written permission. +# +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE +# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE +# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL +# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR +# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER +# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, +# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE +# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. import RPi.GPIO as gpio import time @@ -7,6 +36,8 @@ pin_settle_delay = 0.01 err_count = 0 +# Define constants for each of the SCSI signals, based upon their +# raspberry pi pin number (since we're using BOARD mode of RPi.GPIO) scsi_d0_gpio = 19 scsi_d1_gpio = 23 scsi_d2_gpio = 32 @@ -26,11 +57,14 @@ scsi_io_gpio = 22 scsi_bsy_gpio = 37 scsi_sel_gpio = 13 +# Pin numbers of the direction controllers of the RaSCSI board rascsi_ind_gpio = 31 rascsi_tad_gpio = 26 rascsi_dtd_gpio = 24 rascsi_none = -1 +# Matrix showing all of the SCSI signals, along what signal they're looped back to. +# dir_ctrl indicates which direction control pin is associated with that output gpio_map = [ { 'gpio_num': scsi_d0_gpio, 'attached_to': scsi_ack_gpio, 'dir_ctrl': rascsi_dtd_gpio}, { 'gpio_num': scsi_d1_gpio, 'attached_to': scsi_sel_gpio, 'dir_ctrl': rascsi_dtd_gpio}, @@ -52,6 +86,7 @@ gpio_map = [ { 'gpio_num': scsi_sel_gpio, 'attached_to': scsi_d1_gpio, 'dir_ctrl': rascsi_ind_gpio}, ] +# List of all of the SCSI signals that is also a dictionary to their human readable name scsi_signals = { scsi_d0_gpio: 'D0', scsi_d1_gpio: 'D1', @@ -73,34 +108,39 @@ scsi_signals = { scsi_sel_gpio: 'SEL' } -# DB7 -> REQ -# DB6 -> MSG -# DB5 -> I/O -# DB3 -> RST -# DB0 -> ACK -# DB4 -> CD -# DB2 -> ATN - +# Debug function that just dumps the status of all of the scsi signals to the console def print_all(): for cur_gpio in gpio_map: print(cur_gpio['name']+"="+str(gpio.input(cur_gpio['gpio_num'])) + " ", end='', flush=True) print("") +# Set transceivers IC1 and IC2 to OUTPUT def set_dtd_out(): gpio.output(rascsi_dtd_gpio,gpio.LOW) + +# Set transceivers IC1 and IC2 to INPUT def set_dtd_in(): gpio.output(rascsi_dtd_gpio,gpio.HIGH) +# Set transceiver IC4 to OUTPUT def set_ind_out(): gpio.output(rascsi_ind_gpio,gpio.HIGH) + +# Set transceiver IC4 to INPUT def set_ind_in(): gpio.output(rascsi_ind_gpio,gpio.LOW) +# Set transceiver IC3 to OUTPUT def set_tad_out(): gpio.output(rascsi_tad_gpio,gpio.HIGH) + +# Set transceiver IC3 to INPUT def set_tad_in(): gpio.output(rascsi_tad_gpio,gpio.LOW) +# Set the specified transciever to an OUTPUT. All of the other transceivers +# will be set to inputs. If a non-existent direction gpio is specified, this +# will set all of the transceivers to inputs. def set_output_channel(out_gpio): if(out_gpio == rascsi_tad_gpio): set_tad_out() @@ -116,6 +156,8 @@ def set_output_channel(out_gpio): set_ind_in() +# Main test procedure. This will execute for each of the SCSI pins to make sure its connected +# properly. def test_gpio_pin(gpio_rec): global err_count @@ -187,6 +229,8 @@ def test_gpio_pin(gpio_rec): err_count = err_count+1 +# Initialize the GPIO library, set all of the gpios associated with SCSI signals to outputs and set +# all of the direction control gpios to outputs def setup(): gpio.setmode(gpio.BOARD) gpio.setwarnings(False) @@ -199,18 +243,19 @@ def setup(): gpio.setup(rascsi_dtd_gpio, gpio.OUT) -# Press the green button in the gutter to run the script. +# Main functions for running the actual test. if __name__ == '__main__': - + # setup the GPIOs setup() - + # Test each SCSI signal in the gpio_map for cur_gpio in gpio_map: test_gpio_pin(cur_gpio) - print("Total errors: " + str(err_count)) - gpio.cleanup() - + # Print the test results if(err_count == 0): print("-------- Test PASSED --------") else: print("!!!!!!!! Test FAILED !!!!!!!!") + print("Total errors: " + str(err_count)) + + gpio.cleanup() From 4c86524b920533d9daadcc6bca57dc3c1e892f75 Mon Sep 17 00:00:00 2001 From: akuker Date: Fri, 21 May 2021 22:58:05 -0500 Subject: [PATCH 3/4] Added loopback schematic --- hw/loopback/fp-info-cache | 1947 ++++++++++++++++++++++++++++ hw/loopback/loopback-cache.lib | 222 ++++ hw/loopback/loopback.kicad_pcb | 974 ++++++++++++++ hw/loopback/loopback.kicad_pcb-bak | 748 +++++++++++ hw/loopback/loopback.pro | 33 + hw/loopback/loopback.sch | 205 +++ hw/loopback/loopback.sch-bak | 205 +++ 7 files changed, 4334 insertions(+) create mode 100644 hw/loopback/fp-info-cache create mode 100644 hw/loopback/loopback-cache.lib create mode 100644 hw/loopback/loopback.kicad_pcb create mode 100644 hw/loopback/loopback.kicad_pcb-bak create mode 100644 hw/loopback/loopback.pro create mode 100644 hw/loopback/loopback.sch create mode 100644 hw/loopback/loopback.sch-bak diff --git a/hw/loopback/fp-info-cache b/hw/loopback/fp-info-cache new file mode 100644 index 00000000..71b3df40 --- /dev/null +++ b/hw/loopback/fp-info-cache @@ -0,0 +1,1947 @@ +445178407244460 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Horizontal +Through hole angled socket strip, 1x01, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x01_P2.54mm_Vertical +Through hole straight socket strip, 1x01, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x01 2.54mm single row +0 +1 +1 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Horizontal +Through hole angled socket strip, 1x02, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical +Through hole straight socket strip, 1x02, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x02 2.54mm single row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style1 pin1 left +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x02 2.54mm single row style2 pin1 right +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Horizontal +Through hole angled socket strip, 1x03, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical +Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x03 2.54mm single row +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style1 pin1 left +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x03 2.54mm single row style2 pin1 right +0 +3 +3 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Horizontal +Through hole angled socket strip, 1x04, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical +Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x04 2.54mm single row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style1 pin1 left +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x04 2.54mm single row style2 pin1 right +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Horizontal +Through hole angled socket strip, 1x05, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical +Through hole straight socket strip, 1x05, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x05 2.54mm single row +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style1 pin1 left +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x05 2.54mm single row style2 pin1 right +0 +5 +5 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Horizontal +Through hole angled socket strip, 1x06, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical +Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x06 2.54mm single row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style1 pin1 left +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x06 2.54mm single row style2 pin1 right +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Horizontal +Through hole angled socket strip, 1x07, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical +Through hole straight socket strip, 1x07, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x07 2.54mm single row +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style1 pin1 left +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x07 2.54mm single row style2 pin1 right +0 +7 +7 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Horizontal +Through hole angled socket strip, 1x08, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical +Through hole straight socket strip, 1x08, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x08 2.54mm single row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style1 pin1 left +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x08 2.54mm single row style2 pin1 right +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Horizontal +Through hole angled socket strip, 1x09, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical +Through hole straight socket strip, 1x09, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x09 2.54mm single row +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style1 pin1 left +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x09 2.54mm single row style2 pin1 right +0 +9 +9 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Horizontal +Through hole angled socket strip, 1x10, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical +Through hole straight socket strip, 1x10, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x10 2.54mm single row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style1 pin1 left +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x10 2.54mm single row style2 pin1 right +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Horizontal +Through hole angled socket strip, 1x11, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical +Through hole straight socket strip, 1x11, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x11 2.54mm single row +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style1 pin1 left +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x11 2.54mm single row style2 pin1 right +0 +11 +11 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Horizontal +Through hole angled socket strip, 1x12, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical +Through hole straight socket strip, 1x12, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x12 2.54mm single row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style1 pin1 left +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x12 2.54mm single row style2 pin1 right +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Horizontal +Through hole angled socket strip, 1x13, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical +Through hole straight socket strip, 1x13, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x13 2.54mm single row +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style1 pin1 left +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x13 2.54mm single row style2 pin1 right +0 +13 +13 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Horizontal +Through hole angled socket strip, 1x14, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical +Through hole straight socket strip, 1x14, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x14 2.54mm single row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style1 pin1 left +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x14 2.54mm single row style2 pin1 right +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Horizontal +Through hole angled socket strip, 1x15, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical +Through hole straight socket strip, 1x15, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x15 2.54mm single row +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style1 pin1 left +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x15 2.54mm single row style2 pin1 right +0 +15 +15 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Horizontal +Through hole angled socket strip, 1x16, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical +Through hole straight socket strip, 1x16, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x16 2.54mm single row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style1 pin1 left +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x16 2.54mm single row style2 pin1 right +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Horizontal +Through hole angled socket strip, 1x17, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical +Through hole straight socket strip, 1x17, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x17 2.54mm single row +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style1 pin1 left +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x17 2.54mm single row style2 pin1 right +0 +17 +17 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Horizontal +Through hole angled socket strip, 1x18, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical +Through hole straight socket strip, 1x18, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x18 2.54mm single row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style1 pin1 left +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x18 2.54mm single row style2 pin1 right +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Horizontal +Through hole angled socket strip, 1x19, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical +Through hole straight socket strip, 1x19, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x19 2.54mm single row +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style1 pin1 left +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x19 2.54mm single row style2 pin1 right +0 +19 +19 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Horizontal +Through hole angled socket strip, 1x20, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical +Through hole straight socket strip, 1x20, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x20 2.54mm single row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style1 pin1 left +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x20 2.54mm single row style2 pin1 right +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Horizontal +Through hole angled socket strip, 1x21, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical +Through hole straight socket strip, 1x21, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x21 2.54mm single row +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style1 pin1 left +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x21 2.54mm single row style2 pin1 right +0 +21 +21 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Horizontal +Through hole angled socket strip, 1x22, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical +Through hole straight socket strip, 1x22, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x22 2.54mm single row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style1 pin1 left +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x22 2.54mm single row style2 pin1 right +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Horizontal +Through hole angled socket strip, 1x23, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical +Through hole straight socket strip, 1x23, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x23 2.54mm single row +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style1 pin1 left +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x23 2.54mm single row style2 pin1 right +0 +23 +23 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Horizontal +Through hole angled socket strip, 1x24, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical +Through hole straight socket strip, 1x24, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x24 2.54mm single row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style1 pin1 left +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x24 2.54mm single row style2 pin1 right +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Horizontal +Through hole angled socket strip, 1x25, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical +Through hole straight socket strip, 1x25, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x25 2.54mm single row +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style1 pin1 left +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x25 2.54mm single row style2 pin1 right +0 +25 +25 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Horizontal +Through hole angled socket strip, 1x26, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical +Through hole straight socket strip, 1x26, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x26 2.54mm single row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style1 pin1 left +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x26 2.54mm single row style2 pin1 right +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Horizontal +Through hole angled socket strip, 1x27, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical +Through hole straight socket strip, 1x27, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x27 2.54mm single row +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style1 pin1 left +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x27 2.54mm single row style2 pin1 right +0 +27 +27 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Horizontal +Through hole angled socket strip, 1x28, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical +Through hole straight socket strip, 1x28, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x28 2.54mm single row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style1 pin1 left +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x28 2.54mm single row style2 pin1 right +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Horizontal +Through hole angled socket strip, 1x29, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical +Through hole straight socket strip, 1x29, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x29 2.54mm single row +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style1 pin1 left +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x29 2.54mm single row style2 pin1 right +0 +29 +29 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Horizontal +Through hole angled socket strip, 1x30, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical +Through hole straight socket strip, 1x30, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x30 2.54mm single row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style1 pin1 left +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x30 2.54mm single row style2 pin1 right +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Horizontal +Through hole angled socket strip, 1x31, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical +Through hole straight socket strip, 1x31, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x31 2.54mm single row +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style1 pin1 left +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x31 2.54mm single row style2 pin1 right +0 +31 +31 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Horizontal +Through hole angled socket strip, 1x32, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical +Through hole straight socket strip, 1x32, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x32 2.54mm single row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style1 pin1 left +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x32 2.54mm single row style2 pin1 right +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Horizontal +Through hole angled socket strip, 1x33, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical +Through hole straight socket strip, 1x33, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x33 2.54mm single row +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style1 pin1 left +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x33 2.54mm single row style2 pin1 right +0 +33 +33 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Horizontal +Through hole angled socket strip, 1x34, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical +Through hole straight socket strip, 1x34, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x34 2.54mm single row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style1 pin1 left +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x34 2.54mm single row style2 pin1 right +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Horizontal +Through hole angled socket strip, 1x35, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical +Through hole straight socket strip, 1x35, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x35 2.54mm single row +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style1 pin1 left +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x35 2.54mm single row style2 pin1 right +0 +35 +35 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Horizontal +Through hole angled socket strip, 1x36, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical +Through hole straight socket strip, 1x36, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x36 2.54mm single row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style1 pin1 left +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x36 2.54mm single row style2 pin1 right +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Horizontal +Through hole angled socket strip, 1x37, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical +Through hole straight socket strip, 1x37, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x37 2.54mm single row +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style1 pin1 left +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x37 2.54mm single row style2 pin1 right +0 +37 +37 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Horizontal +Through hole angled socket strip, 1x38, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical +Through hole straight socket strip, 1x38, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x38 2.54mm single row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style1 pin1 left +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x38 2.54mm single row style2 pin1 right +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Horizontal +Through hole angled socket strip, 1x39, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical +Through hole straight socket strip, 1x39, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x39 2.54mm single row +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style1 pin1 left +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x39 2.54mm single row style2 pin1 right +0 +39 +39 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Horizontal +Through hole angled socket strip, 1x40, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical +Through hole straight socket strip, 1x40, 2.54mm pitch, single row (from Kicad 4.0.7), script generated +Through hole socket strip THT 1x40 2.54mm single row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Left +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style1 pin1 left +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Right +surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated +Surface mounted socket strip SMD 1x40 2.54mm single row style2 pin1 right +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Horizontal +Through hole angled socket strip, 2x01, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical +Through hole straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x01_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x01 2.54mm double row +0 +2 +2 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Horizontal +Through hole angled socket strip, 2x02, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical +Through hole straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x02_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x02 2.54mm double row +0 +4 +4 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Horizontal +Through hole angled socket strip, 2x03, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical +Through hole straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x03_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x03 2.54mm double row +0 +6 +6 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Horizontal +Through hole angled socket strip, 2x04, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical +Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x04_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x04 2.54mm double row +0 +8 +8 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Horizontal +Through hole angled socket strip, 2x05, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical +Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x05_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x05 2.54mm double row +0 +10 +10 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Horizontal +Through hole angled socket strip, 2x06, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical +Through hole straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x06_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x06 2.54mm double row +0 +12 +12 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Horizontal +Through hole angled socket strip, 2x07, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical +Through hole straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x07_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x07 2.54mm double row +0 +14 +14 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Horizontal +Through hole angled socket strip, 2x08, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical +Through hole straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x08_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x08 2.54mm double row +0 +16 +16 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Horizontal +Through hole angled socket strip, 2x09, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical +Through hole straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x09_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x09 2.54mm double row +0 +18 +18 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Horizontal +Through hole angled socket strip, 2x10, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical +Through hole straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x10_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x10 2.54mm double row +0 +20 +20 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Horizontal +Through hole angled socket strip, 2x11, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical +Through hole straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x11_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x11 2.54mm double row +0 +22 +22 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Horizontal +Through hole angled socket strip, 2x12, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical +Through hole straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x12_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x12 2.54mm double row +0 +24 +24 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Horizontal +Through hole angled socket strip, 2x13, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical +Through hole straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x13_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x13 2.54mm double row +0 +26 +26 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Horizontal +Through hole angled socket strip, 2x14, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical +Through hole straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x14_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x14 2.54mm double row +0 +28 +28 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Horizontal +Through hole angled socket strip, 2x15, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical +Through hole straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x15_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x15 2.54mm double row +0 +30 +30 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Horizontal +Through hole angled socket strip, 2x16, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical +Through hole straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x16_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x16 2.54mm double row +0 +32 +32 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Horizontal +Through hole angled socket strip, 2x17, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical +Through hole straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x17_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x17 2.54mm double row +0 +34 +34 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Horizontal +Through hole angled socket strip, 2x18, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical +Through hole straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x18_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x18 2.54mm double row +0 +36 +36 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Horizontal +Through hole angled socket strip, 2x19, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical +Through hole straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x19_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x19 2.54mm double row +0 +38 +38 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Horizontal +Through hole angled socket strip, 2x20, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical +Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x20_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x20 2.54mm double row +0 +40 +40 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Horizontal +Through hole angled socket strip, 2x21, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical +Through hole straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x21_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x21 2.54mm double row +0 +42 +42 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Horizontal +Through hole angled socket strip, 2x22, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical +Through hole straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x22_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x22 2.54mm double row +0 +44 +44 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Horizontal +Through hole angled socket strip, 2x23, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical +Through hole straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x23_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x23 2.54mm double row +0 +46 +46 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Horizontal +Through hole angled socket strip, 2x24, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical +Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x24_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x24 2.54mm double row +0 +48 +48 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Horizontal +Through hole angled socket strip, 2x25, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical +Through hole straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x25_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x25 2.54mm double row +0 +50 +50 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Horizontal +Through hole angled socket strip, 2x26, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical +Through hole straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x26_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x26 2.54mm double row +0 +52 +52 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Horizontal +Through hole angled socket strip, 2x27, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical +Through hole straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x27_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x27 2.54mm double row +0 +54 +54 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Horizontal +Through hole angled socket strip, 2x28, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical +Through hole straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x28_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x28 2.54mm double row +0 +56 +56 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Horizontal +Through hole angled socket strip, 2x29, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical +Through hole straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x29_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x29 2.54mm double row +0 +58 +58 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Horizontal +Through hole angled socket strip, 2x30, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical +Through hole straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x30_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x30 2.54mm double row +0 +60 +60 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Horizontal +Through hole angled socket strip, 2x31, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical +Through hole straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x31_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x31 2.54mm double row +0 +62 +62 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Horizontal +Through hole angled socket strip, 2x32, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical +Through hole straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x32_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x32 2.54mm double row +0 +64 +64 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Horizontal +Through hole angled socket strip, 2x33, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical +Through hole straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x33_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x33 2.54mm double row +0 +66 +66 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Horizontal +Through hole angled socket strip, 2x34, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical +Through hole straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x34_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x34 2.54mm double row +0 +68 +68 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Horizontal +Through hole angled socket strip, 2x35, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical +Through hole straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x35_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x35 2.54mm double row +0 +70 +70 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Horizontal +Through hole angled socket strip, 2x36, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical +Through hole straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x36_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x36 2.54mm double row +0 +72 +72 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Horizontal +Through hole angled socket strip, 2x37, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical +Through hole straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x37_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x37 2.54mm double row +0 +74 +74 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Horizontal +Through hole angled socket strip, 2x38, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical +Through hole straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x38_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x38 2.54mm double row +0 +76 +76 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Horizontal +Through hole angled socket strip, 2x39, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical +Through hole straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x39_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x39 2.54mm double row +0 +78 +78 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Horizontal +Through hole angled socket strip, 2x40, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated +Through hole angled socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical +Through hole straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Through hole socket strip THT 2x40 2.54mm double row +0 +80 +80 +Connector_PinSocket_2.54mm +PinSocket_2x40_P2.54mm_Vertical_SMD +surface-mounted straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated +Surface mounted socket strip SMD 2x40 2.54mm double row +0 +80 +80 diff --git a/hw/loopback/loopback-cache.lib b/hw/loopback/loopback-cache.lib new file mode 100644 index 00000000..62dcc449 --- /dev/null +++ b/hw/loopback/loopback-cache.lib @@ -0,0 +1,222 @@ +EESchema-LIBRARY Version 2.4 +#encoding utf-8 +# +# Connector_DB25_Male +# +DEF Connector_DB25_Male J 0 40 Y N 1 F N +F0 "J" 0 1350 50 H V C CNN +F1 "Connector_DB25_Male" 0 -1375 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +$FPLIST + DSUB*Male* +$ENDFPLIST +DRAW +C -70 -1200 30 0 1 0 F +C -70 -1000 30 0 1 0 F +C -70 -800 30 0 1 0 F +C -70 -600 30 0 1 0 F +C -70 -400 30 0 1 0 F +C -70 -200 30 0 1 0 F +C -70 0 30 0 1 0 F +C -70 200 30 0 1 0 F +C -70 400 30 0 1 0 F +C -70 600 30 0 1 0 F +C -70 800 30 0 1 0 F +C -70 1000 30 0 1 0 F +C -70 1200 30 0 1 0 F +C 50 -1100 30 0 1 0 F +C 50 -900 30 0 1 0 F +C 50 -700 30 0 1 0 F +C 50 -500 30 0 1 0 F +C 50 -300 30 0 1 0 F +C 50 -100 30 0 1 0 F +C 50 100 30 0 1 0 F +C 50 300 30 0 1 0 F +C 50 500 30 0 1 0 F +C 50 700 30 0 1 0 F +C 50 900 30 0 1 0 F +C 50 1100 30 0 1 0 F +P 2 0 1 0 -150 -1200 -100 -1200 N +P 2 0 1 0 -150 -1100 20 -1100 N +P 2 0 1 0 -150 -1000 -100 -1000 N +P 2 0 1 0 -150 -900 20 -900 N +P 2 0 1 0 -150 -800 -100 -800 N +P 2 0 1 0 -150 -700 20 -700 N +P 2 0 1 0 -150 -600 -100 -600 N +P 2 0 1 0 -150 -500 20 -500 N +P 2 0 1 0 -150 -400 -100 -400 N +P 2 0 1 0 -150 -300 20 -300 N +P 2 0 1 0 -150 -200 -100 -200 N +P 2 0 1 0 -150 -100 20 -100 N +P 2 0 1 0 -150 0 -100 0 N +P 2 0 1 0 -150 100 20 100 N +P 2 0 1 0 -150 200 -100 200 N +P 2 0 1 0 -150 300 20 300 N +P 2 0 1 0 -150 400 -100 400 N +P 2 0 1 0 -150 500 20 500 N +P 2 0 1 0 -150 600 -100 600 N +P 2 0 1 0 -150 700 20 700 N +P 2 0 1 0 -150 800 -100 800 N +P 2 0 1 0 -150 900 20 900 N +P 2 0 1 0 -150 1000 -100 1000 N +P 2 0 1 0 -150 1100 20 1100 N +P 2 0 1 0 -150 1200 -100 1200 N +P 5 0 1 10 -150 -1325 150 -1175 150 1175 -150 1325 -150 -1325 f +X 1 1 -300 -1200 150 R 50 50 1 1 P +X 10 10 -300 600 150 R 50 50 1 1 P +X 11 11 -300 800 150 R 50 50 1 1 P +X 12 12 -300 1000 150 R 50 50 1 1 P +X 13 13 -300 1200 150 R 50 50 1 1 P +X P14 14 -300 -1100 150 R 50 50 1 1 P +X P15 15 -300 -900 150 R 50 50 1 1 P +X P16 16 -300 -700 150 R 50 50 1 1 P +X P17 17 -300 -500 150 R 50 50 1 1 P +X P18 18 -300 -300 150 R 50 50 1 1 P +X P19 19 -300 -100 150 R 50 50 1 1 P +X 2 2 -300 -1000 150 R 50 50 1 1 P +X P20 20 -300 100 150 R 50 50 1 1 P +X P21 21 -300 300 150 R 50 50 1 1 P +X P22 22 -300 500 150 R 50 50 1 1 P +X P23 23 -300 700 150 R 50 50 1 1 P +X P24 24 -300 900 150 R 50 50 1 1 P +X P25 25 -300 1100 150 R 50 50 1 1 P +X 3 3 -300 -800 150 R 50 50 1 1 P +X 4 4 -300 -600 150 R 50 50 1 1 P +X 5 5 -300 -400 150 R 50 50 1 1 P +X 6 6 -300 -200 150 R 50 50 1 1 P +X 7 7 -300 0 150 R 50 50 1 1 P +X 8 8 -300 200 150 R 50 50 1 1 P +X 9 9 -300 400 150 R 50 50 1 1 P +ENDDRAW +ENDDEF +# +# Connector_Generic_Conn_02x25_Counter_Clockwise +# +DEF Connector_Generic_Conn_02x25_Counter_Clockwise J 0 40 Y N 1 F N +F0 "J" 50 1300 50 H V C CNN +F1 "Connector_Generic_Conn_02x25_Counter_Clockwise" 50 -1300 50 H V C CNN +F2 "" 0 0 50 H I C CNN +F3 "" 0 0 50 H I C CNN +$FPLIST + Connector*:*_2x??_* +$ENDFPLIST +DRAW +S -50 -1195 0 -1205 1 1 6 N +S -50 -1095 0 -1105 1 1 6 N +S -50 -995 0 -1005 1 1 6 N +S -50 -895 0 -905 1 1 6 N +S -50 -795 0 -805 1 1 6 N +S -50 -695 0 -705 1 1 6 N +S -50 -595 0 -605 1 1 6 N +S -50 -495 0 -505 1 1 6 N +S -50 -395 0 -405 1 1 6 N +S -50 -295 0 -305 1 1 6 N +S -50 -195 0 -205 1 1 6 N +S -50 -95 0 -105 1 1 6 N +S -50 5 0 -5 1 1 6 N +S -50 105 0 95 1 1 6 N +S -50 205 0 195 1 1 6 N +S -50 305 0 295 1 1 6 N +S -50 405 0 395 1 1 6 N +S -50 505 0 495 1 1 6 N +S -50 605 0 595 1 1 6 N +S -50 705 0 695 1 1 6 N +S -50 805 0 795 1 1 6 N +S -50 905 0 895 1 1 6 N +S -50 1005 0 995 1 1 6 N +S -50 1105 0 1095 1 1 6 N +S -50 1205 0 1195 1 1 6 N +S -50 1250 150 -1250 1 1 10 f +S 150 -1195 100 -1205 1 1 6 N +S 150 -1095 100 -1105 1 1 6 N +S 150 -995 100 -1005 1 1 6 N +S 150 -895 100 -905 1 1 6 N +S 150 -795 100 -805 1 1 6 N +S 150 -695 100 -705 1 1 6 N +S 150 -595 100 -605 1 1 6 N +S 150 -495 100 -505 1 1 6 N +S 150 -395 100 -405 1 1 6 N +S 150 -295 100 -305 1 1 6 N +S 150 -195 100 -205 1 1 6 N +S 150 -95 100 -105 1 1 6 N +S 150 5 100 -5 1 1 6 N +S 150 105 100 95 1 1 6 N +S 150 205 100 195 1 1 6 N +S 150 305 100 295 1 1 6 N +S 150 405 100 395 1 1 6 N +S 150 505 100 495 1 1 6 N +S 150 605 100 595 1 1 6 N +S 150 705 100 695 1 1 6 N +S 150 805 100 795 1 1 6 N +S 150 905 100 895 1 1 6 N +S 150 1005 100 995 1 1 6 N +S 150 1105 100 1095 1 1 6 N +S 150 1205 100 1195 1 1 6 N +X Pin_1 1 -200 1200 150 R 50 50 1 1 P +X Pin_10 10 -200 300 150 R 50 50 1 1 P +X Pin_11 11 -200 200 150 R 50 50 1 1 P +X Pin_12 12 -200 100 150 R 50 50 1 1 P +X Pin_13 13 -200 0 150 R 50 50 1 1 P +X Pin_14 14 -200 -100 150 R 50 50 1 1 P +X Pin_15 15 -200 -200 150 R 50 50 1 1 P +X Pin_16 16 -200 -300 150 R 50 50 1 1 P +X Pin_17 17 -200 -400 150 R 50 50 1 1 P +X Pin_18 18 -200 -500 150 R 50 50 1 1 P +X Pin_19 19 -200 -600 150 R 50 50 1 1 P +X Pin_2 2 -200 1100 150 R 50 50 1 1 P +X Pin_20 20 -200 -700 150 R 50 50 1 1 P +X Pin_21 21 -200 -800 150 R 50 50 1 1 P +X Pin_22 22 -200 -900 150 R 50 50 1 1 P +X Pin_23 23 -200 -1000 150 R 50 50 1 1 P +X Pin_24 24 -200 -1100 150 R 50 50 1 1 P +X Pin_25 25 -200 -1200 150 R 50 50 1 1 P +X Pin_26 26 300 -1200 150 L 50 50 1 1 P +X Pin_27 27 300 -1100 150 L 50 50 1 1 P +X Pin_28 28 300 -1000 150 L 50 50 1 1 P +X Pin_29 29 300 -900 150 L 50 50 1 1 P +X Pin_3 3 -200 1000 150 R 50 50 1 1 P +X Pin_30 30 300 -800 150 L 50 50 1 1 P +X Pin_31 31 300 -700 150 L 50 50 1 1 P +X Pin_32 32 300 -600 150 L 50 50 1 1 P +X Pin_33 33 300 -500 150 L 50 50 1 1 P +X Pin_34 34 300 -400 150 L 50 50 1 1 P +X Pin_35 35 300 -300 150 L 50 50 1 1 P +X Pin_36 36 300 -200 150 L 50 50 1 1 P +X Pin_37 37 300 -100 150 L 50 50 1 1 P +X Pin_38 38 300 0 150 L 50 50 1 1 P +X Pin_39 39 300 100 150 L 50 50 1 1 P +X Pin_4 4 -200 900 150 R 50 50 1 1 P +X Pin_40 40 300 200 150 L 50 50 1 1 P +X Pin_41 41 300 300 150 L 50 50 1 1 P +X Pin_42 42 300 400 150 L 50 50 1 1 P +X Pin_43 43 300 500 150 L 50 50 1 1 P +X Pin_44 44 300 600 150 L 50 50 1 1 P +X Pin_45 45 300 700 150 L 50 50 1 1 P +X Pin_46 46 300 800 150 L 50 50 1 1 P +X Pin_47 47 300 900 150 L 50 50 1 1 P +X Pin_48 48 300 1000 150 L 50 50 1 1 P +X Pin_49 49 300 1100 150 L 50 50 1 1 P +X Pin_5 5 -200 800 150 R 50 50 1 1 P +X Pin_50 50 300 1200 150 L 50 50 1 1 P +X Pin_6 6 -200 700 150 R 50 50 1 1 P +X Pin_7 7 -200 600 150 R 50 50 1 1 P +X Pin_8 8 -200 500 150 R 50 50 1 1 P +X Pin_9 9 -200 400 150 R 50 50 1 1 P +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/hw/loopback/loopback.kicad_pcb b/hw/loopback/loopback.kicad_pcb new file mode 100644 index 00000000..4047d168 --- /dev/null +++ b/hw/loopback/loopback.kicad_pcb @@ -0,0 +1,974 @@ +(kicad_pcb (version 20171130) (host pcbnew "(5.1.7-0-10_14)") + + (general + (thickness 1.6) + (drawings 4) + (tracks 27) + (zones 0) + (modules 2) + (nets 11) + ) + + (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) + (aux_axis_origin 0 0) + (visible_elements FFFFFF7F) + (pcbplotparams + (layerselection 0x010fc_ffffffff) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (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 /CD) + (net 2 /ATN) + (net 3 /DB1) + (net 4 /BSY) + (net 5 /DB7) + (net 6 /DB6) + (net 7 /DB5) + (net 8 /DB3) + (net 9 /ACK) + (net 10 GND) + + (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 /ACK) + (add_net /ATN) + (add_net /BSY) + (add_net /CD) + (add_net /DB1) + (add_net /DB3) + (add_net /DB5) + (add_net /DB6) + (add_net /DB7) + (add_net GND) + (add_net "Net-(J2-Pad1)") + (add_net "Net-(J2-Pad10)") + (add_net "Net-(J2-Pad11)") + (add_net "Net-(J2-Pad12)") + (add_net "Net-(J2-Pad13)") + (add_net "Net-(J2-Pad14)") + (add_net "Net-(J2-Pad15)") + (add_net "Net-(J2-Pad16)") + (add_net "Net-(J2-Pad17)") + (add_net "Net-(J2-Pad18)") + (add_net "Net-(J2-Pad19)") + (add_net "Net-(J2-Pad2)") + (add_net "Net-(J2-Pad20)") + (add_net "Net-(J2-Pad21)") + (add_net "Net-(J2-Pad22)") + (add_net "Net-(J2-Pad23)") + (add_net "Net-(J2-Pad24)") + (add_net "Net-(J2-Pad25)") + (add_net "Net-(J2-Pad26)") + (add_net "Net-(J2-Pad27)") + (add_net "Net-(J2-Pad28)") + (add_net "Net-(J2-Pad29)") + (add_net "Net-(J2-Pad3)") + (add_net "Net-(J2-Pad30)") + (add_net "Net-(J2-Pad31)") + (add_net "Net-(J2-Pad32)") + (add_net "Net-(J2-Pad33)") + (add_net "Net-(J2-Pad34)") + (add_net "Net-(J2-Pad35)") + (add_net "Net-(J2-Pad36)") + (add_net "Net-(J2-Pad37)") + (add_net "Net-(J2-Pad38)") + (add_net "Net-(J2-Pad39)") + (add_net "Net-(J2-Pad4)") + (add_net "Net-(J2-Pad40)") + (add_net "Net-(J2-Pad41)") + (add_net "Net-(J2-Pad42)") + (add_net "Net-(J2-Pad43)") + (add_net "Net-(J2-Pad44)") + (add_net "Net-(J2-Pad45)") + (add_net "Net-(J2-Pad46)") + (add_net "Net-(J2-Pad47)") + (add_net "Net-(J2-Pad48)") + (add_net "Net-(J2-Pad5)") + (add_net "Net-(J2-Pad6)") + (add_net "Net-(J2-Pad7)") + (add_net "Net-(J2-Pad8)") + (add_net "Net-(J2-Pad9)") + ) + + (module Connector_PinSocket_2.54mm:PinSocket_2x24_P2.54mm_Vertical (layer F.Cu) (tedit 5A19A423) (tstamp 60A88E38) + (at 112.9411 88.9762 90) + (descr "Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 2x24 2.54mm double row") + (path /60AB1BAF) + (fp_text reference J2 (at -1.27 -2.77 90) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value Conn_02x25_Counter_Clockwise (at -1.27 61.19 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at -1.27 29.21) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -0.27) (end 1.27 59.69) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 59.69) (end -3.81 59.69) (layer F.Fab) (width 0.1)) + (fp_line (start -3.81 59.69) (end -3.81 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.87 -1.33) (end -3.87 59.75) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.87 59.75) (end 1.33 59.75) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 59.75) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.27 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 -1.33) (end 1.33 0) (layer F.SilkS) (width 0.12)) + (fp_line (start 0 -1.33) (end 1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.76 -1.8) (end 1.76 60.2) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.76 60.2) (end -4.34 60.2) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.34 60.2) (end -4.34 -1.8) (layer F.CrtYd) (width 0.05)) + (pad 48 thru_hole oval (at -2.54 58.42 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 47 thru_hole oval (at 0 58.42 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 46 thru_hole oval (at -2.54 55.88 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 45 thru_hole oval (at 0 55.88 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 44 thru_hole oval (at -2.54 53.34 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 43 thru_hole oval (at 0 53.34 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 42 thru_hole oval (at -2.54 50.8 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 41 thru_hole oval (at 0 50.8 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 40 thru_hole oval (at -2.54 48.26 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 39 thru_hole oval (at 0 48.26 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 38 thru_hole oval (at -2.54 45.72 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 37 thru_hole oval (at 0 45.72 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 36 thru_hole oval (at -2.54 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 35 thru_hole oval (at 0 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 34 thru_hole oval (at -2.54 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 33 thru_hole oval (at 0 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 32 thru_hole oval (at -2.54 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 31 thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 30 thru_hole oval (at -2.54 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 29 thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 28 thru_hole oval (at -2.54 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 27 thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 26 thru_hole oval (at -2.54 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 25 thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 24 thru_hole oval (at -2.54 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 23 thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 22 thru_hole oval (at -2.54 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 21 thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 20 thru_hole oval (at -2.54 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 19 thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 18 thru_hole oval (at -2.54 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 17 thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 16 thru_hole oval (at -2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 15 thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 14 thru_hole oval (at -2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 13 thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 12 thru_hole oval (at -2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 11 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 10 thru_hole oval (at -2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 9 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 8 thru_hole oval (at -2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 7 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 6 thru_hole oval (at -2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 5 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 4 thru_hole oval (at -2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 3 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 2 thru_hole oval (at -2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x24_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_Dsub:DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm (layer F.Cu) (tedit 59FEDEE2) (tstamp 60A88213) + (at 126.7841 101.6762) + (descr "25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf") + (tags "25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm") + (path /60A9E3C3) + (fp_text reference J1 (at 16.62 -3.7) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value DB25_Male (at 16.62 15.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 16.62 11.18) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_arc (start 40.17 0.3) (end 38.57 0.3) (angle 180) (layer F.Fab) (width 0.1)) + (fp_arc (start -6.93 0.3) (end -8.53 0.3) (angle 180) (layer F.Fab) (width 0.1)) + (fp_line (start -9.93 -2.7) (end -9.93 7.78) (layer F.Fab) (width 0.1)) + (fp_line (start -9.93 7.78) (end 43.17 7.78) (layer F.Fab) (width 0.1)) + (fp_line (start 43.17 7.78) (end 43.17 -2.7) (layer F.Fab) (width 0.1)) + (fp_line (start 43.17 -2.7) (end -9.93 -2.7) (layer F.Fab) (width 0.1)) + (fp_line (start -9.93 7.78) (end -9.93 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start -9.93 8.18) (end 43.17 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start 43.17 8.18) (end 43.17 7.78) (layer F.Fab) (width 0.1)) + (fp_line (start 43.17 7.78) (end -9.93 7.78) (layer F.Fab) (width 0.1)) + (fp_line (start -2.53 8.18) (end -2.53 14.18) (layer F.Fab) (width 0.1)) + (fp_line (start -2.53 14.18) (end 35.77 14.18) (layer F.Fab) (width 0.1)) + (fp_line (start 35.77 14.18) (end 35.77 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start 35.77 8.18) (end -2.53 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start -9.43 8.18) (end -9.43 13.18) (layer F.Fab) (width 0.1)) + (fp_line (start -9.43 13.18) (end -4.43 13.18) (layer F.Fab) (width 0.1)) + (fp_line (start -4.43 13.18) (end -4.43 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start -4.43 8.18) (end -9.43 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start 37.67 8.18) (end 37.67 13.18) (layer F.Fab) (width 0.1)) + (fp_line (start 37.67 13.18) (end 42.67 13.18) (layer F.Fab) (width 0.1)) + (fp_line (start 42.67 13.18) (end 42.67 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start 42.67 8.18) (end 37.67 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start -8.53 7.78) (end -8.53 0.3) (layer F.Fab) (width 0.1)) + (fp_line (start -5.33 7.78) (end -5.33 0.3) (layer F.Fab) (width 0.1)) + (fp_line (start 38.57 7.78) (end 38.57 0.3) (layer F.Fab) (width 0.1)) + (fp_line (start 41.77 7.78) (end 41.77 0.3) (layer F.Fab) (width 0.1)) + (fp_line (start -9.99 7.72) (end -9.99 -2.76) (layer F.SilkS) (width 0.12)) + (fp_line (start -9.99 -2.76) (end 43.23 -2.76) (layer F.SilkS) (width 0.12)) + (fp_line (start 43.23 -2.76) (end 43.23 7.72) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.25 -3.654338) (end 0.25 -3.654338) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.25 -3.654338) (end 0 -3.221325) (layer F.SilkS) (width 0.12)) + (fp_line (start 0 -3.221325) (end -0.25 -3.654338) (layer F.SilkS) (width 0.12)) + (fp_line (start -10.45 -3.25) (end -10.45 14.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start -10.45 14.7) (end 43.7 14.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start 43.7 14.7) (end 43.7 -3.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start 43.7 -3.25) (end -10.45 -3.25) (layer F.CrtYd) (width 0.05)) + (pad 0 thru_hole circle (at 40.17 0.3) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)) + (pad 0 thru_hole circle (at -6.93 0.3) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)) + (pad 25 thru_hole circle (at 31.855 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 24 thru_hole circle (at 29.085 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 23 thru_hole circle (at 26.315 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 1 /CD)) + (pad 22 thru_hole circle (at 23.545 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 2 /ATN)) + (pad 21 thru_hole circle (at 20.775 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 3 /DB1)) + (pad 20 thru_hole circle (at 18.005 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 4 /BSY)) + (pad 19 thru_hole circle (at 15.235 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 3 /DB1)) + (pad 18 thru_hole circle (at 12.465 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 17 thru_hole circle (at 9.695 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 2 /ATN)) + (pad 16 thru_hole circle (at 6.925 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 15 thru_hole circle (at 4.155 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 1 /CD)) + (pad 14 thru_hole circle (at 1.385 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 13 thru_hole circle (at 33.24 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 5 /DB7)) + (pad 12 thru_hole circle (at 30.47 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 6 /DB6)) + (pad 11 thru_hole circle (at 27.7 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 7 /DB5)) + (pad 10 thru_hole circle (at 24.93 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 8 /DB3)) + (pad 9 thru_hole circle (at 22.16 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 8 thru_hole circle (at 19.39 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 9 /ACK)) + (pad 7 thru_hole circle (at 16.62 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 6 thru_hole circle (at 13.85 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 4 /BSY)) + (pad 5 thru_hole circle (at 11.08 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 9 /ACK)) + (pad 4 thru_hole circle (at 8.31 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 8 /DB3)) + (pad 3 thru_hole circle (at 5.54 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 7 /DB5)) + (pad 2 thru_hole circle (at 2.77 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 6 /DB6)) + (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 5 /DB7)) + (model ${KISYS3DMOD}/Connector_Dsub.3dshapes/DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (gr_line (start 110.363 86.4489) (end 110.363 109.474) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 173.9773 86.4489) (end 110.363 86.4489) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 173.9773 109.474) (end 173.9773 86.4489) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 110.363 109.474) (end 173.9773 109.474) (layer Edge.Cuts) (width 0.05)) + + (segment (start 151.074075 106.541225) (end 153.0991 104.5162) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 132.964126 106.541225) (end 151.074075 106.541225) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 130.9391 104.5162) (end 132.964126 106.541225) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 148.754088 106.091212) (end 150.3291 104.5162) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 138.054112 106.091212) (end 148.754088 106.091212) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 136.4791 104.5162) (end 138.054112 106.091212) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 146.434099 105.641201) (end 147.5591 104.5162) (width 0.25) (layer F.Cu) (net 3)) + (segment (start 143.144101 105.641201) (end 146.434099 105.641201) (width 0.25) (layer F.Cu) (net 3)) + (segment (start 142.0191 104.5162) (end 143.144101 105.641201) (width 0.25) (layer F.Cu) (net 3)) + (segment (start 144.60547 104.5162) (end 144.7891 104.5162) (width 0.25) (layer F.Cu) (net 4)) + (segment (start 141.76547 101.6762) (end 144.60547 104.5162) (width 0.25) (layer F.Cu) (net 4)) + (segment (start 140.6341 101.6762) (end 141.76547 101.6762) (width 0.25) (layer F.Cu) (net 4)) + (segment (start 126.7841 101.6762) (end 131.2164 97.2439) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 155.5918 97.2439) (end 160.0241 101.6762) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 131.2164 97.2439) (end 155.5918 97.2439) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 129.5541 101.6762) (end 133.2371 97.9932) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 153.5711 97.9932) (end 157.2541 101.6762) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 133.2371 97.9932) (end 153.5711 97.9932) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 132.3241 101.6762) (end 135.207 98.7933) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 151.6012 98.7933) (end 154.4841 101.6762) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 135.207 98.7933) (end 151.6012 98.7933) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 135.0941 101.6762) (end 137.088 99.6823) (width 0.25) (layer F.Cu) (net 8)) + (segment (start 149.7202 99.6823) (end 151.7141 101.6762) (width 0.25) (layer F.Cu) (net 8)) + (segment (start 137.088 99.6823) (end 149.7202 99.6823) (width 0.25) (layer F.Cu) (net 8)) + (segment (start 138.989101 100.551199) (end 137.8641 101.6762) (width 0.25) (layer F.Cu) (net 9)) + (segment (start 145.049099 100.551199) (end 138.989101 100.551199) (width 0.25) (layer F.Cu) (net 9)) + (segment (start 146.1741 101.6762) (end 145.049099 100.551199) (width 0.25) (layer F.Cu) (net 9)) + + (zone (net 10) (net_name GND) (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 176.5681 130.2893) (xy 90.3351 129.714625) (xy 89.7128 83.10245) (xy 176.3014 83.2358) + ) + ) + (filled_polygon + (pts + (xy 173.3173 108.814) (xy 111.023 108.814) (xy 111.023 105.508902) (xy 127.356003 105.508902) (xy 127.427586 105.752871) + (xy 127.683096 105.873771) (xy 127.957284 105.9425) (xy 128.239612 105.956417) (xy 128.51923 105.914987) (xy 128.785392 105.819803) + (xy 128.910614 105.752871) (xy 128.982197 105.508902) (xy 128.1691 104.695805) (xy 127.356003 105.508902) (xy 111.023 105.508902) + (xy 111.023 101.716675) (xy 117.2191 101.716675) (xy 117.2191 102.235725) (xy 117.320361 102.744801) (xy 117.518993 103.224341) + (xy 117.807362 103.655915) (xy 118.174385 104.022938) (xy 118.605959 104.311307) (xy 119.085499 104.509939) (xy 119.594575 104.6112) + (xy 120.113625 104.6112) (xy 120.236735 104.586712) (xy 126.728883 104.586712) (xy 126.770313 104.86633) (xy 126.865497 105.132492) + (xy 126.932429 105.257714) (xy 127.176398 105.329297) (xy 127.989495 104.5162) (xy 127.176398 103.703103) (xy 126.932429 103.774686) + (xy 126.811529 104.030196) (xy 126.7428 104.304384) (xy 126.728883 104.586712) (xy 120.236735 104.586712) (xy 120.622701 104.509939) + (xy 121.102241 104.311307) (xy 121.533815 104.022938) (xy 121.900838 103.655915) (xy 121.989316 103.523498) (xy 127.356003 103.523498) + (xy 128.1691 104.336595) (xy 128.982197 103.523498) (xy 128.910614 103.279529) (xy 128.655104 103.158629) (xy 128.380916 103.0899) + (xy 128.098588 103.075983) (xy 127.81897 103.117413) (xy 127.552808 103.212597) (xy 127.427586 103.279529) (xy 127.356003 103.523498) + (xy 121.989316 103.523498) (xy 122.189207 103.224341) (xy 122.387839 102.744801) (xy 122.4891 102.235725) (xy 122.4891 101.716675) + (xy 122.387839 101.207599) (xy 122.25057 100.8762) (xy 125.346028 100.8762) (xy 125.346028 102.4762) (xy 125.358288 102.600682) + (xy 125.394598 102.72038) (xy 125.453563 102.830694) (xy 125.532915 102.927385) (xy 125.629606 103.006737) (xy 125.73992 103.065702) + (xy 125.859618 103.102012) (xy 125.9841 103.114272) (xy 127.5841 103.114272) (xy 127.708582 103.102012) (xy 127.82828 103.065702) + (xy 127.938594 103.006737) (xy 128.035285 102.927385) (xy 128.114637 102.830694) (xy 128.173602 102.72038) (xy 128.209912 102.600682) + (xy 128.222172 102.4762) (xy 128.222172 102.210475) (xy 128.28242 102.355927) (xy 128.439463 102.590959) (xy 128.639341 102.790837) + (xy 128.874373 102.94788) (xy 129.135526 103.056053) (xy 129.412765 103.1112) (xy 129.695435 103.1112) (xy 129.972674 103.056053) + (xy 130.233827 102.94788) (xy 130.468859 102.790837) (xy 130.668737 102.590959) (xy 130.82578 102.355927) (xy 130.933953 102.094774) + (xy 130.9391 102.068899) (xy 130.944247 102.094774) (xy 131.05242 102.355927) (xy 131.209463 102.590959) (xy 131.409341 102.790837) + (xy 131.644373 102.94788) (xy 131.905526 103.056053) (xy 132.182765 103.1112) (xy 132.465435 103.1112) (xy 132.742674 103.056053) + (xy 133.003827 102.94788) (xy 133.238859 102.790837) (xy 133.438737 102.590959) (xy 133.59578 102.355927) (xy 133.703953 102.094774) + (xy 133.7091 102.068899) (xy 133.714247 102.094774) (xy 133.82242 102.355927) (xy 133.979463 102.590959) (xy 134.179341 102.790837) + (xy 134.414373 102.94788) (xy 134.675526 103.056053) (xy 134.952765 103.1112) (xy 135.235435 103.1112) (xy 135.512674 103.056053) + (xy 135.773827 102.94788) (xy 136.008859 102.790837) (xy 136.208737 102.590959) (xy 136.36578 102.355927) (xy 136.473953 102.094774) + (xy 136.4791 102.068899) (xy 136.484247 102.094774) (xy 136.59242 102.355927) (xy 136.749463 102.590959) (xy 136.949341 102.790837) + (xy 137.184373 102.94788) (xy 137.445526 103.056053) (xy 137.722765 103.1112) (xy 138.005435 103.1112) (xy 138.282674 103.056053) + (xy 138.543827 102.94788) (xy 138.778859 102.790837) (xy 138.978737 102.590959) (xy 139.13578 102.355927) (xy 139.243953 102.094774) + (xy 139.2491 102.068899) (xy 139.254247 102.094774) (xy 139.36242 102.355927) (xy 139.519463 102.590959) (xy 139.719341 102.790837) + (xy 139.954373 102.94788) (xy 140.215526 103.056053) (xy 140.492765 103.1112) (xy 140.775435 103.1112) (xy 141.052674 103.056053) + (xy 141.313827 102.94788) (xy 141.548859 102.790837) (xy 141.677082 102.662614) (xy 142.095669 103.0812) (xy 141.877765 103.0812) + (xy 141.600526 103.136347) (xy 141.339373 103.24452) (xy 141.104341 103.401563) (xy 140.904463 103.601441) (xy 140.74742 103.836473) + (xy 140.639247 104.097626) (xy 140.633587 104.126082) (xy 140.552703 103.899908) (xy 140.485771 103.774686) (xy 140.241802 103.703103) + (xy 139.428705 104.5162) (xy 139.442848 104.530343) (xy 139.263243 104.709948) (xy 139.2491 104.695805) (xy 139.234958 104.709948) + (xy 139.055353 104.530343) (xy 139.069495 104.5162) (xy 138.256398 103.703103) (xy 138.012429 103.774686) (xy 137.891529 104.030196) + (xy 137.865888 104.132489) (xy 137.858953 104.097626) (xy 137.75078 103.836473) (xy 137.593737 103.601441) (xy 137.515794 103.523498) + (xy 138.436003 103.523498) (xy 139.2491 104.336595) (xy 140.062197 103.523498) (xy 139.990614 103.279529) (xy 139.735104 103.158629) + (xy 139.460916 103.0899) (xy 139.178588 103.075983) (xy 138.89897 103.117413) (xy 138.632808 103.212597) (xy 138.507586 103.279529) + (xy 138.436003 103.523498) (xy 137.515794 103.523498) (xy 137.393859 103.401563) (xy 137.158827 103.24452) (xy 136.897674 103.136347) + (xy 136.620435 103.0812) (xy 136.337765 103.0812) (xy 136.060526 103.136347) (xy 135.799373 103.24452) (xy 135.564341 103.401563) + (xy 135.364463 103.601441) (xy 135.20742 103.836473) (xy 135.099247 104.097626) (xy 135.093587 104.126082) (xy 135.012703 103.899908) + (xy 134.945771 103.774686) (xy 134.701802 103.703103) (xy 133.888705 104.5162) (xy 134.701802 105.329297) (xy 134.945771 105.257714) + (xy 135.066671 105.002204) (xy 135.092312 104.899911) (xy 135.099247 104.934774) (xy 135.20742 105.195927) (xy 135.364463 105.430959) + (xy 135.564341 105.630837) (xy 135.789413 105.781225) (xy 134.397567 105.781225) (xy 134.450614 105.752871) (xy 134.522197 105.508902) + (xy 133.7091 104.695805) (xy 133.694958 104.709948) (xy 133.515353 104.530343) (xy 133.529495 104.5162) (xy 132.716398 103.703103) + (xy 132.472429 103.774686) (xy 132.351529 104.030196) (xy 132.325888 104.132489) (xy 132.318953 104.097626) (xy 132.21078 103.836473) + (xy 132.053737 103.601441) (xy 131.975794 103.523498) (xy 132.896003 103.523498) (xy 133.7091 104.336595) (xy 134.522197 103.523498) + (xy 134.450614 103.279529) (xy 134.195104 103.158629) (xy 133.920916 103.0899) (xy 133.638588 103.075983) (xy 133.35897 103.117413) + (xy 133.092808 103.212597) (xy 132.967586 103.279529) (xy 132.896003 103.523498) (xy 131.975794 103.523498) (xy 131.853859 103.401563) + (xy 131.618827 103.24452) (xy 131.357674 103.136347) (xy 131.080435 103.0812) (xy 130.797765 103.0812) (xy 130.520526 103.136347) + (xy 130.259373 103.24452) (xy 130.024341 103.401563) (xy 129.824463 103.601441) (xy 129.66742 103.836473) (xy 129.559247 104.097626) + (xy 129.553587 104.126082) (xy 129.472703 103.899908) (xy 129.405771 103.774686) (xy 129.161802 103.703103) (xy 128.348705 104.5162) + (xy 129.161802 105.329297) (xy 129.405771 105.257714) (xy 129.526671 105.002204) (xy 129.552312 104.899911) (xy 129.559247 104.934774) + (xy 129.66742 105.195927) (xy 129.824463 105.430959) (xy 130.024341 105.630837) (xy 130.259373 105.78788) (xy 130.520526 105.896053) + (xy 130.797765 105.9512) (xy 131.080435 105.9512) (xy 131.262986 105.914888) (xy 132.400331 107.052233) (xy 132.424125 107.081226) + (xy 132.453118 107.10502) (xy 132.453123 107.105025) (xy 132.53985 107.176199) (xy 132.671879 107.246771) (xy 132.81514 107.290228) + (xy 132.964126 107.304902) (xy 133.001459 107.301225) (xy 151.036753 107.301225) (xy 151.074075 107.304901) (xy 151.111397 107.301225) + (xy 151.111408 107.301225) (xy 151.223061 107.290228) (xy 151.366322 107.246771) (xy 151.498351 107.176199) (xy 151.614076 107.081226) + (xy 151.637879 107.052222) (xy 152.775214 105.914888) (xy 152.957765 105.9512) (xy 153.240435 105.9512) (xy 153.517674 105.896053) + (xy 153.778827 105.78788) (xy 154.013859 105.630837) (xy 154.135794 105.508902) (xy 155.056003 105.508902) (xy 155.127586 105.752871) + (xy 155.383096 105.873771) (xy 155.657284 105.9425) (xy 155.939612 105.956417) (xy 156.21923 105.914987) (xy 156.485392 105.819803) + (xy 156.610614 105.752871) (xy 156.682197 105.508902) (xy 157.826003 105.508902) (xy 157.897586 105.752871) (xy 158.153096 105.873771) + (xy 158.427284 105.9425) (xy 158.709612 105.956417) (xy 158.98923 105.914987) (xy 159.255392 105.819803) (xy 159.380614 105.752871) + (xy 159.452197 105.508902) (xy 158.6391 104.695805) (xy 157.826003 105.508902) (xy 156.682197 105.508902) (xy 155.8691 104.695805) + (xy 155.056003 105.508902) (xy 154.135794 105.508902) (xy 154.213737 105.430959) (xy 154.37078 105.195927) (xy 154.478953 104.934774) + (xy 154.484613 104.906318) (xy 154.565497 105.132492) (xy 154.632429 105.257714) (xy 154.876398 105.329297) (xy 155.689495 104.5162) + (xy 156.048705 104.5162) (xy 156.861802 105.329297) (xy 157.105771 105.257714) (xy 157.226671 105.002204) (xy 157.252316 104.899895) + (xy 157.335497 105.132492) (xy 157.402429 105.257714) (xy 157.646398 105.329297) (xy 158.459495 104.5162) (xy 158.818705 104.5162) + (xy 159.631802 105.329297) (xy 159.875771 105.257714) (xy 159.996671 105.002204) (xy 160.0654 104.728016) (xy 160.079317 104.445688) + (xy 160.037887 104.16607) (xy 159.942703 103.899908) (xy 159.875771 103.774686) (xy 159.631802 103.703103) (xy 158.818705 104.5162) + (xy 158.459495 104.5162) (xy 157.646398 103.703103) (xy 157.402429 103.774686) (xy 157.281529 104.030196) (xy 157.255884 104.132505) + (xy 157.172703 103.899908) (xy 157.105771 103.774686) (xy 156.861802 103.703103) (xy 156.048705 104.5162) (xy 155.689495 104.5162) + (xy 154.876398 103.703103) (xy 154.632429 103.774686) (xy 154.511529 104.030196) (xy 154.485888 104.132489) (xy 154.478953 104.097626) + (xy 154.37078 103.836473) (xy 154.213737 103.601441) (xy 154.135794 103.523498) (xy 155.056003 103.523498) (xy 155.8691 104.336595) + (xy 156.682197 103.523498) (xy 157.826003 103.523498) (xy 158.6391 104.336595) (xy 159.452197 103.523498) (xy 159.380614 103.279529) + (xy 159.125104 103.158629) (xy 158.850916 103.0899) (xy 158.568588 103.075983) (xy 158.28897 103.117413) (xy 158.022808 103.212597) + (xy 157.897586 103.279529) (xy 157.826003 103.523498) (xy 156.682197 103.523498) (xy 156.610614 103.279529) (xy 156.355104 103.158629) + (xy 156.080916 103.0899) (xy 155.798588 103.075983) (xy 155.51897 103.117413) (xy 155.252808 103.212597) (xy 155.127586 103.279529) + (xy 155.056003 103.523498) (xy 154.135794 103.523498) (xy 154.013859 103.401563) (xy 153.778827 103.24452) (xy 153.517674 103.136347) + (xy 153.240435 103.0812) (xy 152.957765 103.0812) (xy 152.680526 103.136347) (xy 152.419373 103.24452) (xy 152.184341 103.401563) + (xy 151.984463 103.601441) (xy 151.82742 103.836473) (xy 151.719247 104.097626) (xy 151.7141 104.123501) (xy 151.708953 104.097626) + (xy 151.60078 103.836473) (xy 151.443737 103.601441) (xy 151.243859 103.401563) (xy 151.008827 103.24452) (xy 150.747674 103.136347) + (xy 150.470435 103.0812) (xy 150.187765 103.0812) (xy 149.910526 103.136347) (xy 149.649373 103.24452) (xy 149.414341 103.401563) + (xy 149.214463 103.601441) (xy 149.05742 103.836473) (xy 148.949247 104.097626) (xy 148.9441 104.123501) (xy 148.938953 104.097626) + (xy 148.83078 103.836473) (xy 148.673737 103.601441) (xy 148.473859 103.401563) (xy 148.238827 103.24452) (xy 147.977674 103.136347) + (xy 147.700435 103.0812) (xy 147.417765 103.0812) (xy 147.140526 103.136347) (xy 146.879373 103.24452) (xy 146.644341 103.401563) + (xy 146.444463 103.601441) (xy 146.28742 103.836473) (xy 146.179247 104.097626) (xy 146.1741 104.123501) (xy 146.168953 104.097626) + (xy 146.06078 103.836473) (xy 145.903737 103.601441) (xy 145.703859 103.401563) (xy 145.468827 103.24452) (xy 145.207674 103.136347) + (xy 144.930435 103.0812) (xy 144.647765 103.0812) (xy 144.370526 103.136347) (xy 144.320953 103.156881) (xy 144.100863 102.936791) + (xy 144.145614 102.912871) (xy 144.217197 102.668902) (xy 143.4041 101.855805) (xy 143.389958 101.869948) (xy 143.210353 101.690343) + (xy 143.224495 101.6762) (xy 143.210353 101.662058) (xy 143.389958 101.482453) (xy 143.4041 101.496595) (xy 143.418243 101.482453) + (xy 143.597848 101.662058) (xy 143.583705 101.6762) (xy 144.396802 102.489297) (xy 144.640771 102.417714) (xy 144.761671 102.162204) + (xy 144.787312 102.059911) (xy 144.794247 102.094774) (xy 144.90242 102.355927) (xy 145.059463 102.590959) (xy 145.259341 102.790837) + (xy 145.494373 102.94788) (xy 145.755526 103.056053) (xy 146.032765 103.1112) (xy 146.315435 103.1112) (xy 146.592674 103.056053) + (xy 146.853827 102.94788) (xy 147.088859 102.790837) (xy 147.210794 102.668902) (xy 148.131003 102.668902) (xy 148.202586 102.912871) + (xy 148.458096 103.033771) (xy 148.732284 103.1025) (xy 149.014612 103.116417) (xy 149.29423 103.074987) (xy 149.560392 102.979803) + (xy 149.685614 102.912871) (xy 149.757197 102.668902) (xy 148.9441 101.855805) (xy 148.131003 102.668902) (xy 147.210794 102.668902) + (xy 147.288737 102.590959) (xy 147.44578 102.355927) (xy 147.553953 102.094774) (xy 147.559613 102.066318) (xy 147.640497 102.292492) + (xy 147.707429 102.417714) (xy 147.951398 102.489297) (xy 148.764495 101.6762) (xy 147.951398 100.863103) (xy 147.707429 100.934686) + (xy 147.586529 101.190196) (xy 147.560888 101.292489) (xy 147.553953 101.257626) (xy 147.44578 100.996473) (xy 147.288737 100.761441) + (xy 147.088859 100.561563) (xy 146.910369 100.4423) (xy 148.201773 100.4423) (xy 148.131003 100.683498) (xy 148.9441 101.496595) + (xy 148.958243 101.482453) (xy 149.137848 101.662058) (xy 149.123705 101.6762) (xy 149.936802 102.489297) (xy 150.180771 102.417714) + (xy 150.301671 102.162204) (xy 150.327312 102.059911) (xy 150.334247 102.094774) (xy 150.44242 102.355927) (xy 150.599463 102.590959) + (xy 150.799341 102.790837) (xy 151.034373 102.94788) (xy 151.295526 103.056053) (xy 151.572765 103.1112) (xy 151.855435 103.1112) + (xy 152.132674 103.056053) (xy 152.393827 102.94788) (xy 152.628859 102.790837) (xy 152.828737 102.590959) (xy 152.98578 102.355927) + (xy 153.093953 102.094774) (xy 153.0991 102.068899) (xy 153.104247 102.094774) (xy 153.21242 102.355927) (xy 153.369463 102.590959) + (xy 153.569341 102.790837) (xy 153.804373 102.94788) (xy 154.065526 103.056053) (xy 154.342765 103.1112) (xy 154.625435 103.1112) + (xy 154.902674 103.056053) (xy 155.163827 102.94788) (xy 155.398859 102.790837) (xy 155.598737 102.590959) (xy 155.75578 102.355927) + (xy 155.863953 102.094774) (xy 155.8691 102.068899) (xy 155.874247 102.094774) (xy 155.98242 102.355927) (xy 156.139463 102.590959) + (xy 156.339341 102.790837) (xy 156.574373 102.94788) (xy 156.835526 103.056053) (xy 157.112765 103.1112) (xy 157.395435 103.1112) + (xy 157.672674 103.056053) (xy 157.933827 102.94788) (xy 158.168859 102.790837) (xy 158.368737 102.590959) (xy 158.52578 102.355927) + (xy 158.633953 102.094774) (xy 158.6391 102.068899) (xy 158.644247 102.094774) (xy 158.75242 102.355927) (xy 158.909463 102.590959) + (xy 159.109341 102.790837) (xy 159.344373 102.94788) (xy 159.605526 103.056053) (xy 159.882765 103.1112) (xy 160.165435 103.1112) + (xy 160.442674 103.056053) (xy 160.703827 102.94788) (xy 160.938859 102.790837) (xy 161.138737 102.590959) (xy 161.29578 102.355927) + (xy 161.403953 102.094774) (xy 161.4591 101.817535) (xy 161.4591 101.716675) (xy 164.3191 101.716675) (xy 164.3191 102.235725) + (xy 164.420361 102.744801) (xy 164.618993 103.224341) (xy 164.907362 103.655915) (xy 165.274385 104.022938) (xy 165.705959 104.311307) + (xy 166.185499 104.509939) (xy 166.694575 104.6112) (xy 167.213625 104.6112) (xy 167.722701 104.509939) (xy 168.202241 104.311307) + (xy 168.633815 104.022938) (xy 169.000838 103.655915) (xy 169.289207 103.224341) (xy 169.487839 102.744801) (xy 169.5891 102.235725) + (xy 169.5891 101.716675) (xy 169.487839 101.207599) (xy 169.289207 100.728059) (xy 169.000838 100.296485) (xy 168.633815 99.929462) + (xy 168.202241 99.641093) (xy 167.722701 99.442461) (xy 167.213625 99.3412) (xy 166.694575 99.3412) (xy 166.185499 99.442461) + (xy 165.705959 99.641093) (xy 165.274385 99.929462) (xy 164.907362 100.296485) (xy 164.618993 100.728059) (xy 164.420361 101.207599) + (xy 164.3191 101.716675) (xy 161.4591 101.716675) (xy 161.4591 101.534865) (xy 161.403953 101.257626) (xy 161.29578 100.996473) + (xy 161.138737 100.761441) (xy 160.938859 100.561563) (xy 160.703827 100.40452) (xy 160.442674 100.296347) (xy 160.165435 100.2412) + (xy 159.882765 100.2412) (xy 159.700214 100.277512) (xy 156.155604 96.732903) (xy 156.131801 96.703899) (xy 156.016076 96.608926) + (xy 155.884047 96.538354) (xy 155.740786 96.494897) (xy 155.629133 96.4839) (xy 155.629122 96.4839) (xy 155.5918 96.480224) + (xy 155.554478 96.4839) (xy 131.253725 96.4839) (xy 131.2164 96.480224) (xy 131.179075 96.4839) (xy 131.179067 96.4839) + (xy 131.067414 96.494897) (xy 130.924153 96.538354) (xy 130.792124 96.608926) (xy 130.676399 96.703899) (xy 130.652601 96.732897) + (xy 127.147371 100.238128) (xy 125.9841 100.238128) (xy 125.859618 100.250388) (xy 125.73992 100.286698) (xy 125.629606 100.345663) + (xy 125.532915 100.425015) (xy 125.453563 100.521706) (xy 125.394598 100.63202) (xy 125.358288 100.751718) (xy 125.346028 100.8762) + (xy 122.25057 100.8762) (xy 122.189207 100.728059) (xy 121.900838 100.296485) (xy 121.533815 99.929462) (xy 121.102241 99.641093) + (xy 120.622701 99.442461) (xy 120.113625 99.3412) (xy 119.594575 99.3412) (xy 119.085499 99.442461) (xy 118.605959 99.641093) + (xy 118.174385 99.929462) (xy 117.807362 100.296485) (xy 117.518993 100.728059) (xy 117.320361 101.207599) (xy 117.2191 101.716675) + (xy 111.023 101.716675) (xy 111.023 88.1262) (xy 111.453028 88.1262) (xy 111.453028 89.8262) (xy 111.465288 89.950682) + (xy 111.501598 90.07038) (xy 111.560563 90.180694) (xy 111.639915 90.277385) (xy 111.736606 90.356737) (xy 111.84692 90.415702) + (xy 111.91948 90.437713) (xy 111.787625 90.569568) (xy 111.62511 90.812789) (xy 111.513168 91.083042) (xy 111.4561 91.36994) + (xy 111.4561 91.66246) (xy 111.513168 91.949358) (xy 111.62511 92.219611) (xy 111.787625 92.462832) (xy 111.994468 92.669675) + (xy 112.237689 92.83219) (xy 112.507942 92.944132) (xy 112.79484 93.0012) (xy 113.08736 93.0012) (xy 113.374258 92.944132) + (xy 113.644511 92.83219) (xy 113.887732 92.669675) (xy 114.094575 92.462832) (xy 114.2111 92.28844) (xy 114.327625 92.462832) + (xy 114.534468 92.669675) (xy 114.777689 92.83219) (xy 115.047942 92.944132) (xy 115.33484 93.0012) (xy 115.62736 93.0012) + (xy 115.914258 92.944132) (xy 116.184511 92.83219) (xy 116.427732 92.669675) (xy 116.634575 92.462832) (xy 116.7511 92.28844) + (xy 116.867625 92.462832) (xy 117.074468 92.669675) (xy 117.317689 92.83219) (xy 117.587942 92.944132) (xy 117.87484 93.0012) + (xy 118.16736 93.0012) (xy 118.454258 92.944132) (xy 118.724511 92.83219) (xy 118.967732 92.669675) (xy 119.174575 92.462832) + (xy 119.2911 92.28844) (xy 119.407625 92.462832) (xy 119.614468 92.669675) (xy 119.857689 92.83219) (xy 120.127942 92.944132) + (xy 120.41484 93.0012) (xy 120.70736 93.0012) (xy 120.994258 92.944132) (xy 121.264511 92.83219) (xy 121.507732 92.669675) + (xy 121.714575 92.462832) (xy 121.8311 92.28844) (xy 121.947625 92.462832) (xy 122.154468 92.669675) (xy 122.397689 92.83219) + (xy 122.667942 92.944132) (xy 122.95484 93.0012) (xy 123.24736 93.0012) (xy 123.534258 92.944132) (xy 123.804511 92.83219) + (xy 124.047732 92.669675) (xy 124.254575 92.462832) (xy 124.3711 92.28844) (xy 124.487625 92.462832) (xy 124.694468 92.669675) + (xy 124.937689 92.83219) (xy 125.207942 92.944132) (xy 125.49484 93.0012) (xy 125.78736 93.0012) (xy 126.074258 92.944132) + (xy 126.344511 92.83219) (xy 126.587732 92.669675) (xy 126.794575 92.462832) (xy 126.9111 92.28844) (xy 127.027625 92.462832) + (xy 127.234468 92.669675) (xy 127.477689 92.83219) (xy 127.747942 92.944132) (xy 128.03484 93.0012) (xy 128.32736 93.0012) + (xy 128.614258 92.944132) (xy 128.884511 92.83219) (xy 129.127732 92.669675) (xy 129.334575 92.462832) (xy 129.4511 92.28844) + (xy 129.567625 92.462832) (xy 129.774468 92.669675) (xy 130.017689 92.83219) (xy 130.287942 92.944132) (xy 130.57484 93.0012) + (xy 130.86736 93.0012) (xy 131.154258 92.944132) (xy 131.424511 92.83219) (xy 131.667732 92.669675) (xy 131.874575 92.462832) + (xy 131.9911 92.28844) (xy 132.107625 92.462832) (xy 132.314468 92.669675) (xy 132.557689 92.83219) (xy 132.827942 92.944132) + (xy 133.11484 93.0012) (xy 133.40736 93.0012) (xy 133.694258 92.944132) (xy 133.964511 92.83219) (xy 134.207732 92.669675) + (xy 134.414575 92.462832) (xy 134.5311 92.28844) (xy 134.647625 92.462832) (xy 134.854468 92.669675) (xy 135.097689 92.83219) + (xy 135.367942 92.944132) (xy 135.65484 93.0012) (xy 135.94736 93.0012) (xy 136.234258 92.944132) (xy 136.504511 92.83219) + (xy 136.747732 92.669675) (xy 136.954575 92.462832) (xy 137.0711 92.28844) (xy 137.187625 92.462832) (xy 137.394468 92.669675) + (xy 137.637689 92.83219) (xy 137.907942 92.944132) (xy 138.19484 93.0012) (xy 138.48736 93.0012) (xy 138.774258 92.944132) + (xy 139.044511 92.83219) (xy 139.287732 92.669675) (xy 139.494575 92.462832) (xy 139.6111 92.28844) (xy 139.727625 92.462832) + (xy 139.934468 92.669675) (xy 140.177689 92.83219) (xy 140.447942 92.944132) (xy 140.73484 93.0012) (xy 141.02736 93.0012) + (xy 141.314258 92.944132) (xy 141.584511 92.83219) (xy 141.827732 92.669675) (xy 142.034575 92.462832) (xy 142.1511 92.28844) + (xy 142.267625 92.462832) (xy 142.474468 92.669675) (xy 142.717689 92.83219) (xy 142.987942 92.944132) (xy 143.27484 93.0012) + (xy 143.56736 93.0012) (xy 143.854258 92.944132) (xy 144.124511 92.83219) (xy 144.367732 92.669675) (xy 144.574575 92.462832) + (xy 144.6911 92.28844) (xy 144.807625 92.462832) (xy 145.014468 92.669675) (xy 145.257689 92.83219) (xy 145.527942 92.944132) + (xy 145.81484 93.0012) (xy 146.10736 93.0012) (xy 146.394258 92.944132) (xy 146.664511 92.83219) (xy 146.907732 92.669675) + (xy 147.114575 92.462832) (xy 147.2311 92.28844) (xy 147.347625 92.462832) (xy 147.554468 92.669675) (xy 147.797689 92.83219) + (xy 148.067942 92.944132) (xy 148.35484 93.0012) (xy 148.64736 93.0012) (xy 148.934258 92.944132) (xy 149.204511 92.83219) + (xy 149.447732 92.669675) (xy 149.654575 92.462832) (xy 149.7711 92.28844) (xy 149.887625 92.462832) (xy 150.094468 92.669675) + (xy 150.337689 92.83219) (xy 150.607942 92.944132) (xy 150.89484 93.0012) (xy 151.18736 93.0012) (xy 151.474258 92.944132) + (xy 151.744511 92.83219) (xy 151.987732 92.669675) (xy 152.194575 92.462832) (xy 152.3111 92.28844) (xy 152.427625 92.462832) + (xy 152.634468 92.669675) (xy 152.877689 92.83219) (xy 153.147942 92.944132) (xy 153.43484 93.0012) (xy 153.72736 93.0012) + (xy 154.014258 92.944132) (xy 154.284511 92.83219) (xy 154.527732 92.669675) (xy 154.734575 92.462832) (xy 154.8511 92.28844) + (xy 154.967625 92.462832) (xy 155.174468 92.669675) (xy 155.417689 92.83219) (xy 155.687942 92.944132) (xy 155.97484 93.0012) + (xy 156.26736 93.0012) (xy 156.554258 92.944132) (xy 156.824511 92.83219) (xy 157.067732 92.669675) (xy 157.274575 92.462832) + (xy 157.3911 92.28844) (xy 157.507625 92.462832) (xy 157.714468 92.669675) (xy 157.957689 92.83219) (xy 158.227942 92.944132) + (xy 158.51484 93.0012) (xy 158.80736 93.0012) (xy 159.094258 92.944132) (xy 159.364511 92.83219) (xy 159.607732 92.669675) + (xy 159.814575 92.462832) (xy 159.9311 92.28844) (xy 160.047625 92.462832) (xy 160.254468 92.669675) (xy 160.497689 92.83219) + (xy 160.767942 92.944132) (xy 161.05484 93.0012) (xy 161.34736 93.0012) (xy 161.634258 92.944132) (xy 161.904511 92.83219) + (xy 162.147732 92.669675) (xy 162.354575 92.462832) (xy 162.4711 92.28844) (xy 162.587625 92.462832) (xy 162.794468 92.669675) + (xy 163.037689 92.83219) (xy 163.307942 92.944132) (xy 163.59484 93.0012) (xy 163.88736 93.0012) (xy 164.174258 92.944132) + (xy 164.444511 92.83219) (xy 164.687732 92.669675) (xy 164.894575 92.462832) (xy 165.0111 92.28844) (xy 165.127625 92.462832) + (xy 165.334468 92.669675) (xy 165.577689 92.83219) (xy 165.847942 92.944132) (xy 166.13484 93.0012) (xy 166.42736 93.0012) + (xy 166.714258 92.944132) (xy 166.984511 92.83219) (xy 167.227732 92.669675) (xy 167.434575 92.462832) (xy 167.5511 92.28844) + (xy 167.667625 92.462832) (xy 167.874468 92.669675) (xy 168.117689 92.83219) (xy 168.387942 92.944132) (xy 168.67484 93.0012) + (xy 168.96736 93.0012) (xy 169.254258 92.944132) (xy 169.524511 92.83219) (xy 169.767732 92.669675) (xy 169.974575 92.462832) + (xy 170.0911 92.28844) (xy 170.207625 92.462832) (xy 170.414468 92.669675) (xy 170.657689 92.83219) (xy 170.927942 92.944132) + (xy 171.21484 93.0012) (xy 171.50736 93.0012) (xy 171.794258 92.944132) (xy 172.064511 92.83219) (xy 172.307732 92.669675) + (xy 172.514575 92.462832) (xy 172.67709 92.219611) (xy 172.789032 91.949358) (xy 172.8461 91.66246) (xy 172.8461 91.36994) + (xy 172.789032 91.083042) (xy 172.67709 90.812789) (xy 172.514575 90.569568) (xy 172.307732 90.362725) (xy 172.13334 90.2462) + (xy 172.307732 90.129675) (xy 172.514575 89.922832) (xy 172.67709 89.679611) (xy 172.789032 89.409358) (xy 172.8461 89.12246) + (xy 172.8461 88.82994) (xy 172.789032 88.543042) (xy 172.67709 88.272789) (xy 172.514575 88.029568) (xy 172.307732 87.822725) + (xy 172.064511 87.66021) (xy 171.794258 87.548268) (xy 171.50736 87.4912) (xy 171.21484 87.4912) (xy 170.927942 87.548268) + (xy 170.657689 87.66021) (xy 170.414468 87.822725) (xy 170.207625 88.029568) (xy 170.0911 88.20396) (xy 169.974575 88.029568) + (xy 169.767732 87.822725) (xy 169.524511 87.66021) (xy 169.254258 87.548268) (xy 168.96736 87.4912) (xy 168.67484 87.4912) + (xy 168.387942 87.548268) (xy 168.117689 87.66021) (xy 167.874468 87.822725) (xy 167.667625 88.029568) (xy 167.5511 88.20396) + (xy 167.434575 88.029568) (xy 167.227732 87.822725) (xy 166.984511 87.66021) (xy 166.714258 87.548268) (xy 166.42736 87.4912) + (xy 166.13484 87.4912) (xy 165.847942 87.548268) (xy 165.577689 87.66021) (xy 165.334468 87.822725) (xy 165.127625 88.029568) + (xy 165.0111 88.20396) (xy 164.894575 88.029568) (xy 164.687732 87.822725) (xy 164.444511 87.66021) (xy 164.174258 87.548268) + (xy 163.88736 87.4912) (xy 163.59484 87.4912) (xy 163.307942 87.548268) (xy 163.037689 87.66021) (xy 162.794468 87.822725) + (xy 162.587625 88.029568) (xy 162.4711 88.20396) (xy 162.354575 88.029568) (xy 162.147732 87.822725) (xy 161.904511 87.66021) + (xy 161.634258 87.548268) (xy 161.34736 87.4912) (xy 161.05484 87.4912) (xy 160.767942 87.548268) (xy 160.497689 87.66021) + (xy 160.254468 87.822725) (xy 160.047625 88.029568) (xy 159.9311 88.20396) (xy 159.814575 88.029568) (xy 159.607732 87.822725) + (xy 159.364511 87.66021) (xy 159.094258 87.548268) (xy 158.80736 87.4912) (xy 158.51484 87.4912) (xy 158.227942 87.548268) + (xy 157.957689 87.66021) (xy 157.714468 87.822725) (xy 157.507625 88.029568) (xy 157.3911 88.20396) (xy 157.274575 88.029568) + (xy 157.067732 87.822725) (xy 156.824511 87.66021) (xy 156.554258 87.548268) (xy 156.26736 87.4912) (xy 155.97484 87.4912) + (xy 155.687942 87.548268) (xy 155.417689 87.66021) (xy 155.174468 87.822725) (xy 154.967625 88.029568) (xy 154.8511 88.20396) + (xy 154.734575 88.029568) (xy 154.527732 87.822725) (xy 154.284511 87.66021) (xy 154.014258 87.548268) (xy 153.72736 87.4912) + (xy 153.43484 87.4912) (xy 153.147942 87.548268) (xy 152.877689 87.66021) (xy 152.634468 87.822725) (xy 152.427625 88.029568) + (xy 152.3111 88.20396) (xy 152.194575 88.029568) (xy 151.987732 87.822725) (xy 151.744511 87.66021) (xy 151.474258 87.548268) + (xy 151.18736 87.4912) (xy 150.89484 87.4912) (xy 150.607942 87.548268) (xy 150.337689 87.66021) (xy 150.094468 87.822725) + (xy 149.887625 88.029568) (xy 149.7711 88.20396) (xy 149.654575 88.029568) (xy 149.447732 87.822725) (xy 149.204511 87.66021) + (xy 148.934258 87.548268) (xy 148.64736 87.4912) (xy 148.35484 87.4912) (xy 148.067942 87.548268) (xy 147.797689 87.66021) + (xy 147.554468 87.822725) (xy 147.347625 88.029568) (xy 147.2311 88.20396) (xy 147.114575 88.029568) (xy 146.907732 87.822725) + (xy 146.664511 87.66021) (xy 146.394258 87.548268) (xy 146.10736 87.4912) (xy 145.81484 87.4912) (xy 145.527942 87.548268) + (xy 145.257689 87.66021) (xy 145.014468 87.822725) (xy 144.807625 88.029568) (xy 144.6911 88.20396) (xy 144.574575 88.029568) + (xy 144.367732 87.822725) (xy 144.124511 87.66021) (xy 143.854258 87.548268) (xy 143.56736 87.4912) (xy 143.27484 87.4912) + (xy 142.987942 87.548268) (xy 142.717689 87.66021) (xy 142.474468 87.822725) (xy 142.267625 88.029568) (xy 142.1511 88.20396) + (xy 142.034575 88.029568) (xy 141.827732 87.822725) (xy 141.584511 87.66021) (xy 141.314258 87.548268) (xy 141.02736 87.4912) + (xy 140.73484 87.4912) (xy 140.447942 87.548268) (xy 140.177689 87.66021) (xy 139.934468 87.822725) (xy 139.727625 88.029568) + (xy 139.6111 88.20396) (xy 139.494575 88.029568) (xy 139.287732 87.822725) (xy 139.044511 87.66021) (xy 138.774258 87.548268) + (xy 138.48736 87.4912) (xy 138.19484 87.4912) (xy 137.907942 87.548268) (xy 137.637689 87.66021) (xy 137.394468 87.822725) + (xy 137.187625 88.029568) (xy 137.0711 88.20396) (xy 136.954575 88.029568) (xy 136.747732 87.822725) (xy 136.504511 87.66021) + (xy 136.234258 87.548268) (xy 135.94736 87.4912) (xy 135.65484 87.4912) (xy 135.367942 87.548268) (xy 135.097689 87.66021) + (xy 134.854468 87.822725) (xy 134.647625 88.029568) (xy 134.5311 88.20396) (xy 134.414575 88.029568) (xy 134.207732 87.822725) + (xy 133.964511 87.66021) (xy 133.694258 87.548268) (xy 133.40736 87.4912) (xy 133.11484 87.4912) (xy 132.827942 87.548268) + (xy 132.557689 87.66021) (xy 132.314468 87.822725) (xy 132.107625 88.029568) (xy 131.9911 88.20396) (xy 131.874575 88.029568) + (xy 131.667732 87.822725) (xy 131.424511 87.66021) (xy 131.154258 87.548268) (xy 130.86736 87.4912) (xy 130.57484 87.4912) + (xy 130.287942 87.548268) (xy 130.017689 87.66021) (xy 129.774468 87.822725) (xy 129.567625 88.029568) (xy 129.4511 88.20396) + (xy 129.334575 88.029568) (xy 129.127732 87.822725) (xy 128.884511 87.66021) (xy 128.614258 87.548268) (xy 128.32736 87.4912) + (xy 128.03484 87.4912) (xy 127.747942 87.548268) (xy 127.477689 87.66021) (xy 127.234468 87.822725) (xy 127.027625 88.029568) + (xy 126.9111 88.20396) (xy 126.794575 88.029568) (xy 126.587732 87.822725) (xy 126.344511 87.66021) (xy 126.074258 87.548268) + (xy 125.78736 87.4912) (xy 125.49484 87.4912) (xy 125.207942 87.548268) (xy 124.937689 87.66021) (xy 124.694468 87.822725) + (xy 124.487625 88.029568) (xy 124.3711 88.20396) (xy 124.254575 88.029568) (xy 124.047732 87.822725) (xy 123.804511 87.66021) + (xy 123.534258 87.548268) (xy 123.24736 87.4912) (xy 122.95484 87.4912) (xy 122.667942 87.548268) (xy 122.397689 87.66021) + (xy 122.154468 87.822725) (xy 121.947625 88.029568) (xy 121.8311 88.20396) (xy 121.714575 88.029568) (xy 121.507732 87.822725) + (xy 121.264511 87.66021) (xy 120.994258 87.548268) (xy 120.70736 87.4912) (xy 120.41484 87.4912) (xy 120.127942 87.548268) + (xy 119.857689 87.66021) (xy 119.614468 87.822725) (xy 119.407625 88.029568) (xy 119.2911 88.20396) (xy 119.174575 88.029568) + (xy 118.967732 87.822725) (xy 118.724511 87.66021) (xy 118.454258 87.548268) (xy 118.16736 87.4912) (xy 117.87484 87.4912) + (xy 117.587942 87.548268) (xy 117.317689 87.66021) (xy 117.074468 87.822725) (xy 116.867625 88.029568) (xy 116.7511 88.20396) + (xy 116.634575 88.029568) (xy 116.427732 87.822725) (xy 116.184511 87.66021) (xy 115.914258 87.548268) (xy 115.62736 87.4912) + (xy 115.33484 87.4912) (xy 115.047942 87.548268) (xy 114.777689 87.66021) (xy 114.534468 87.822725) (xy 114.402613 87.95458) + (xy 114.380602 87.88202) (xy 114.321637 87.771706) (xy 114.242285 87.675015) (xy 114.145594 87.595663) (xy 114.03528 87.536698) + (xy 113.915582 87.500388) (xy 113.7911 87.488128) (xy 112.0911 87.488128) (xy 111.966618 87.500388) (xy 111.84692 87.536698) + (xy 111.736606 87.595663) (xy 111.639915 87.675015) (xy 111.560563 87.771706) (xy 111.501598 87.88202) (xy 111.465288 88.001718) + (xy 111.453028 88.1262) (xy 111.023 88.1262) (xy 111.023 87.1089) (xy 173.317301 87.1089) + ) + ) + ) + (zone (net 10) (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 176.0601 130.0734) (xy 89.92235 130.2766) (xy 89.73185 83.4136) (xy 175.8696 83.2104) + ) + ) + (filled_polygon + (pts + (xy 173.3173 108.814) (xy 111.023 108.814) (xy 111.023 105.508902) (xy 127.356003 105.508902) (xy 127.427586 105.752871) + (xy 127.683096 105.873771) (xy 127.957284 105.9425) (xy 128.239612 105.956417) (xy 128.51923 105.914987) (xy 128.785392 105.819803) + (xy 128.910614 105.752871) (xy 128.982197 105.508902) (xy 128.1691 104.695805) (xy 127.356003 105.508902) (xy 111.023 105.508902) + (xy 111.023 101.716675) (xy 117.2191 101.716675) (xy 117.2191 102.235725) (xy 117.320361 102.744801) (xy 117.518993 103.224341) + (xy 117.807362 103.655915) (xy 118.174385 104.022938) (xy 118.605959 104.311307) (xy 119.085499 104.509939) (xy 119.594575 104.6112) + (xy 120.113625 104.6112) (xy 120.236735 104.586712) (xy 126.728883 104.586712) (xy 126.770313 104.86633) (xy 126.865497 105.132492) + (xy 126.932429 105.257714) (xy 127.176398 105.329297) (xy 127.989495 104.5162) (xy 128.348705 104.5162) (xy 129.161802 105.329297) + (xy 129.405771 105.257714) (xy 129.526671 105.002204) (xy 129.552312 104.899911) (xy 129.559247 104.934774) (xy 129.66742 105.195927) + (xy 129.824463 105.430959) (xy 130.024341 105.630837) (xy 130.259373 105.78788) (xy 130.520526 105.896053) (xy 130.797765 105.9512) + (xy 131.080435 105.9512) (xy 131.357674 105.896053) (xy 131.618827 105.78788) (xy 131.853859 105.630837) (xy 131.975794 105.508902) + (xy 132.896003 105.508902) (xy 132.967586 105.752871) (xy 133.223096 105.873771) (xy 133.497284 105.9425) (xy 133.779612 105.956417) + (xy 134.05923 105.914987) (xy 134.325392 105.819803) (xy 134.450614 105.752871) (xy 134.522197 105.508902) (xy 133.7091 104.695805) + (xy 132.896003 105.508902) (xy 131.975794 105.508902) (xy 132.053737 105.430959) (xy 132.21078 105.195927) (xy 132.318953 104.934774) + (xy 132.324613 104.906318) (xy 132.405497 105.132492) (xy 132.472429 105.257714) (xy 132.716398 105.329297) (xy 133.529495 104.5162) + (xy 133.888705 104.5162) (xy 134.701802 105.329297) (xy 134.945771 105.257714) (xy 135.066671 105.002204) (xy 135.092312 104.899911) + (xy 135.099247 104.934774) (xy 135.20742 105.195927) (xy 135.364463 105.430959) (xy 135.564341 105.630837) (xy 135.799373 105.78788) + (xy 136.060526 105.896053) (xy 136.337765 105.9512) (xy 136.620435 105.9512) (xy 136.897674 105.896053) (xy 137.158827 105.78788) + (xy 137.393859 105.630837) (xy 137.515794 105.508902) (xy 138.436003 105.508902) (xy 138.507586 105.752871) (xy 138.763096 105.873771) + (xy 139.037284 105.9425) (xy 139.319612 105.956417) (xy 139.59923 105.914987) (xy 139.865392 105.819803) (xy 139.990614 105.752871) + (xy 140.062197 105.508902) (xy 139.2491 104.695805) (xy 138.436003 105.508902) (xy 137.515794 105.508902) (xy 137.593737 105.430959) + (xy 137.75078 105.195927) (xy 137.858953 104.934774) (xy 137.864613 104.906318) (xy 137.945497 105.132492) (xy 138.012429 105.257714) + (xy 138.256398 105.329297) (xy 139.069495 104.5162) (xy 139.428705 104.5162) (xy 140.241802 105.329297) (xy 140.485771 105.257714) + (xy 140.606671 105.002204) (xy 140.632312 104.899911) (xy 140.639247 104.934774) (xy 140.74742 105.195927) (xy 140.904463 105.430959) + (xy 141.104341 105.630837) (xy 141.339373 105.78788) (xy 141.600526 105.896053) (xy 141.877765 105.9512) (xy 142.160435 105.9512) + (xy 142.437674 105.896053) (xy 142.698827 105.78788) (xy 142.933859 105.630837) (xy 143.133737 105.430959) (xy 143.29078 105.195927) + (xy 143.398953 104.934774) (xy 143.4041 104.908899) (xy 143.409247 104.934774) (xy 143.51742 105.195927) (xy 143.674463 105.430959) + (xy 143.874341 105.630837) (xy 144.109373 105.78788) (xy 144.370526 105.896053) (xy 144.647765 105.9512) (xy 144.930435 105.9512) + (xy 145.207674 105.896053) (xy 145.468827 105.78788) (xy 145.703859 105.630837) (xy 145.903737 105.430959) (xy 146.06078 105.195927) + (xy 146.168953 104.934774) (xy 146.1741 104.908899) (xy 146.179247 104.934774) (xy 146.28742 105.195927) (xy 146.444463 105.430959) + (xy 146.644341 105.630837) (xy 146.879373 105.78788) (xy 147.140526 105.896053) (xy 147.417765 105.9512) (xy 147.700435 105.9512) + (xy 147.977674 105.896053) (xy 148.238827 105.78788) (xy 148.473859 105.630837) (xy 148.673737 105.430959) (xy 148.83078 105.195927) + (xy 148.938953 104.934774) (xy 148.9441 104.908899) (xy 148.949247 104.934774) (xy 149.05742 105.195927) (xy 149.214463 105.430959) + (xy 149.414341 105.630837) (xy 149.649373 105.78788) (xy 149.910526 105.896053) (xy 150.187765 105.9512) (xy 150.470435 105.9512) + (xy 150.747674 105.896053) (xy 151.008827 105.78788) (xy 151.243859 105.630837) (xy 151.443737 105.430959) (xy 151.60078 105.195927) + (xy 151.708953 104.934774) (xy 151.7141 104.908899) (xy 151.719247 104.934774) (xy 151.82742 105.195927) (xy 151.984463 105.430959) + (xy 152.184341 105.630837) (xy 152.419373 105.78788) (xy 152.680526 105.896053) (xy 152.957765 105.9512) (xy 153.240435 105.9512) + (xy 153.517674 105.896053) (xy 153.778827 105.78788) (xy 154.013859 105.630837) (xy 154.135794 105.508902) (xy 155.056003 105.508902) + (xy 155.127586 105.752871) (xy 155.383096 105.873771) (xy 155.657284 105.9425) (xy 155.939612 105.956417) (xy 156.21923 105.914987) + (xy 156.485392 105.819803) (xy 156.610614 105.752871) (xy 156.682197 105.508902) (xy 157.826003 105.508902) (xy 157.897586 105.752871) + (xy 158.153096 105.873771) (xy 158.427284 105.9425) (xy 158.709612 105.956417) (xy 158.98923 105.914987) (xy 159.255392 105.819803) + (xy 159.380614 105.752871) (xy 159.452197 105.508902) (xy 158.6391 104.695805) (xy 157.826003 105.508902) (xy 156.682197 105.508902) + (xy 155.8691 104.695805) (xy 155.056003 105.508902) (xy 154.135794 105.508902) (xy 154.213737 105.430959) (xy 154.37078 105.195927) + (xy 154.478953 104.934774) (xy 154.484613 104.906318) (xy 154.565497 105.132492) (xy 154.632429 105.257714) (xy 154.876398 105.329297) + (xy 155.689495 104.5162) (xy 156.048705 104.5162) (xy 156.861802 105.329297) (xy 157.105771 105.257714) (xy 157.226671 105.002204) + (xy 157.252316 104.899895) (xy 157.335497 105.132492) (xy 157.402429 105.257714) (xy 157.646398 105.329297) (xy 158.459495 104.5162) + (xy 158.818705 104.5162) (xy 159.631802 105.329297) (xy 159.875771 105.257714) (xy 159.996671 105.002204) (xy 160.0654 104.728016) + (xy 160.079317 104.445688) (xy 160.037887 104.16607) (xy 159.942703 103.899908) (xy 159.875771 103.774686) (xy 159.631802 103.703103) + (xy 158.818705 104.5162) (xy 158.459495 104.5162) (xy 157.646398 103.703103) (xy 157.402429 103.774686) (xy 157.281529 104.030196) + (xy 157.255884 104.132505) (xy 157.172703 103.899908) (xy 157.105771 103.774686) (xy 156.861802 103.703103) (xy 156.048705 104.5162) + (xy 155.689495 104.5162) (xy 154.876398 103.703103) (xy 154.632429 103.774686) (xy 154.511529 104.030196) (xy 154.485888 104.132489) + (xy 154.478953 104.097626) (xy 154.37078 103.836473) (xy 154.213737 103.601441) (xy 154.135794 103.523498) (xy 155.056003 103.523498) + (xy 155.8691 104.336595) (xy 156.682197 103.523498) (xy 157.826003 103.523498) (xy 158.6391 104.336595) (xy 159.452197 103.523498) + (xy 159.380614 103.279529) (xy 159.125104 103.158629) (xy 158.850916 103.0899) (xy 158.568588 103.075983) (xy 158.28897 103.117413) + (xy 158.022808 103.212597) (xy 157.897586 103.279529) (xy 157.826003 103.523498) (xy 156.682197 103.523498) (xy 156.610614 103.279529) + (xy 156.355104 103.158629) (xy 156.080916 103.0899) (xy 155.798588 103.075983) (xy 155.51897 103.117413) (xy 155.252808 103.212597) + (xy 155.127586 103.279529) (xy 155.056003 103.523498) (xy 154.135794 103.523498) (xy 154.013859 103.401563) (xy 153.778827 103.24452) + (xy 153.517674 103.136347) (xy 153.240435 103.0812) (xy 152.957765 103.0812) (xy 152.680526 103.136347) (xy 152.419373 103.24452) + (xy 152.184341 103.401563) (xy 151.984463 103.601441) (xy 151.82742 103.836473) (xy 151.719247 104.097626) (xy 151.7141 104.123501) + (xy 151.708953 104.097626) (xy 151.60078 103.836473) (xy 151.443737 103.601441) (xy 151.243859 103.401563) (xy 151.008827 103.24452) + (xy 150.747674 103.136347) (xy 150.470435 103.0812) (xy 150.187765 103.0812) (xy 149.910526 103.136347) (xy 149.649373 103.24452) + (xy 149.414341 103.401563) (xy 149.214463 103.601441) (xy 149.05742 103.836473) (xy 148.949247 104.097626) (xy 148.9441 104.123501) + (xy 148.938953 104.097626) (xy 148.83078 103.836473) (xy 148.673737 103.601441) (xy 148.473859 103.401563) (xy 148.238827 103.24452) + (xy 147.977674 103.136347) (xy 147.700435 103.0812) (xy 147.417765 103.0812) (xy 147.140526 103.136347) (xy 146.879373 103.24452) + (xy 146.644341 103.401563) (xy 146.444463 103.601441) (xy 146.28742 103.836473) (xy 146.179247 104.097626) (xy 146.1741 104.123501) + (xy 146.168953 104.097626) (xy 146.06078 103.836473) (xy 145.903737 103.601441) (xy 145.703859 103.401563) (xy 145.468827 103.24452) + (xy 145.207674 103.136347) (xy 144.930435 103.0812) (xy 144.647765 103.0812) (xy 144.370526 103.136347) (xy 144.109373 103.24452) + (xy 143.874341 103.401563) (xy 143.674463 103.601441) (xy 143.51742 103.836473) (xy 143.409247 104.097626) (xy 143.4041 104.123501) + (xy 143.398953 104.097626) (xy 143.29078 103.836473) (xy 143.133737 103.601441) (xy 142.933859 103.401563) (xy 142.698827 103.24452) + (xy 142.437674 103.136347) (xy 142.160435 103.0812) (xy 141.877765 103.0812) (xy 141.600526 103.136347) (xy 141.339373 103.24452) + (xy 141.104341 103.401563) (xy 140.904463 103.601441) (xy 140.74742 103.836473) (xy 140.639247 104.097626) (xy 140.633587 104.126082) + (xy 140.552703 103.899908) (xy 140.485771 103.774686) (xy 140.241802 103.703103) (xy 139.428705 104.5162) (xy 139.069495 104.5162) + (xy 138.256398 103.703103) (xy 138.012429 103.774686) (xy 137.891529 104.030196) (xy 137.865888 104.132489) (xy 137.858953 104.097626) + (xy 137.75078 103.836473) (xy 137.593737 103.601441) (xy 137.515794 103.523498) (xy 138.436003 103.523498) (xy 139.2491 104.336595) + (xy 140.062197 103.523498) (xy 139.990614 103.279529) (xy 139.735104 103.158629) (xy 139.460916 103.0899) (xy 139.178588 103.075983) + (xy 138.89897 103.117413) (xy 138.632808 103.212597) (xy 138.507586 103.279529) (xy 138.436003 103.523498) (xy 137.515794 103.523498) + (xy 137.393859 103.401563) (xy 137.158827 103.24452) (xy 136.897674 103.136347) (xy 136.620435 103.0812) (xy 136.337765 103.0812) + (xy 136.060526 103.136347) (xy 135.799373 103.24452) (xy 135.564341 103.401563) (xy 135.364463 103.601441) (xy 135.20742 103.836473) + (xy 135.099247 104.097626) (xy 135.093587 104.126082) (xy 135.012703 103.899908) (xy 134.945771 103.774686) (xy 134.701802 103.703103) + (xy 133.888705 104.5162) (xy 133.529495 104.5162) (xy 132.716398 103.703103) (xy 132.472429 103.774686) (xy 132.351529 104.030196) + (xy 132.325888 104.132489) (xy 132.318953 104.097626) (xy 132.21078 103.836473) (xy 132.053737 103.601441) (xy 131.975794 103.523498) + (xy 132.896003 103.523498) (xy 133.7091 104.336595) (xy 134.522197 103.523498) (xy 134.450614 103.279529) (xy 134.195104 103.158629) + (xy 133.920916 103.0899) (xy 133.638588 103.075983) (xy 133.35897 103.117413) (xy 133.092808 103.212597) (xy 132.967586 103.279529) + (xy 132.896003 103.523498) (xy 131.975794 103.523498) (xy 131.853859 103.401563) (xy 131.618827 103.24452) (xy 131.357674 103.136347) + (xy 131.080435 103.0812) (xy 130.797765 103.0812) (xy 130.520526 103.136347) (xy 130.259373 103.24452) (xy 130.024341 103.401563) + (xy 129.824463 103.601441) (xy 129.66742 103.836473) (xy 129.559247 104.097626) (xy 129.553587 104.126082) (xy 129.472703 103.899908) + (xy 129.405771 103.774686) (xy 129.161802 103.703103) (xy 128.348705 104.5162) (xy 127.989495 104.5162) (xy 127.176398 103.703103) + (xy 126.932429 103.774686) (xy 126.811529 104.030196) (xy 126.7428 104.304384) (xy 126.728883 104.586712) (xy 120.236735 104.586712) + (xy 120.622701 104.509939) (xy 121.102241 104.311307) (xy 121.533815 104.022938) (xy 121.900838 103.655915) (xy 121.989316 103.523498) + (xy 127.356003 103.523498) (xy 128.1691 104.336595) (xy 128.982197 103.523498) (xy 128.910614 103.279529) (xy 128.655104 103.158629) + (xy 128.380916 103.0899) (xy 128.098588 103.075983) (xy 127.81897 103.117413) (xy 127.552808 103.212597) (xy 127.427586 103.279529) + (xy 127.356003 103.523498) (xy 121.989316 103.523498) (xy 122.189207 103.224341) (xy 122.387839 102.744801) (xy 122.4891 102.235725) + (xy 122.4891 101.716675) (xy 122.387839 101.207599) (xy 122.25057 100.8762) (xy 125.346028 100.8762) (xy 125.346028 102.4762) + (xy 125.358288 102.600682) (xy 125.394598 102.72038) (xy 125.453563 102.830694) (xy 125.532915 102.927385) (xy 125.629606 103.006737) + (xy 125.73992 103.065702) (xy 125.859618 103.102012) (xy 125.9841 103.114272) (xy 127.5841 103.114272) (xy 127.708582 103.102012) + (xy 127.82828 103.065702) (xy 127.938594 103.006737) (xy 128.035285 102.927385) (xy 128.114637 102.830694) (xy 128.173602 102.72038) + (xy 128.209912 102.600682) (xy 128.222172 102.4762) (xy 128.222172 102.210475) (xy 128.28242 102.355927) (xy 128.439463 102.590959) + (xy 128.639341 102.790837) (xy 128.874373 102.94788) (xy 129.135526 103.056053) (xy 129.412765 103.1112) (xy 129.695435 103.1112) + (xy 129.972674 103.056053) (xy 130.233827 102.94788) (xy 130.468859 102.790837) (xy 130.668737 102.590959) (xy 130.82578 102.355927) + (xy 130.933953 102.094774) (xy 130.9391 102.068899) (xy 130.944247 102.094774) (xy 131.05242 102.355927) (xy 131.209463 102.590959) + (xy 131.409341 102.790837) (xy 131.644373 102.94788) (xy 131.905526 103.056053) (xy 132.182765 103.1112) (xy 132.465435 103.1112) + (xy 132.742674 103.056053) (xy 133.003827 102.94788) (xy 133.238859 102.790837) (xy 133.438737 102.590959) (xy 133.59578 102.355927) + (xy 133.703953 102.094774) (xy 133.7091 102.068899) (xy 133.714247 102.094774) (xy 133.82242 102.355927) (xy 133.979463 102.590959) + (xy 134.179341 102.790837) (xy 134.414373 102.94788) (xy 134.675526 103.056053) (xy 134.952765 103.1112) (xy 135.235435 103.1112) + (xy 135.512674 103.056053) (xy 135.773827 102.94788) (xy 136.008859 102.790837) (xy 136.208737 102.590959) (xy 136.36578 102.355927) + (xy 136.473953 102.094774) (xy 136.4791 102.068899) (xy 136.484247 102.094774) (xy 136.59242 102.355927) (xy 136.749463 102.590959) + (xy 136.949341 102.790837) (xy 137.184373 102.94788) (xy 137.445526 103.056053) (xy 137.722765 103.1112) (xy 138.005435 103.1112) + (xy 138.282674 103.056053) (xy 138.543827 102.94788) (xy 138.778859 102.790837) (xy 138.978737 102.590959) (xy 139.13578 102.355927) + (xy 139.243953 102.094774) (xy 139.2491 102.068899) (xy 139.254247 102.094774) (xy 139.36242 102.355927) (xy 139.519463 102.590959) + (xy 139.719341 102.790837) (xy 139.954373 102.94788) (xy 140.215526 103.056053) (xy 140.492765 103.1112) (xy 140.775435 103.1112) + (xy 141.052674 103.056053) (xy 141.313827 102.94788) (xy 141.548859 102.790837) (xy 141.670794 102.668902) (xy 142.591003 102.668902) + (xy 142.662586 102.912871) (xy 142.918096 103.033771) (xy 143.192284 103.1025) (xy 143.474612 103.116417) (xy 143.75423 103.074987) + (xy 144.020392 102.979803) (xy 144.145614 102.912871) (xy 144.217197 102.668902) (xy 143.4041 101.855805) (xy 142.591003 102.668902) + (xy 141.670794 102.668902) (xy 141.748737 102.590959) (xy 141.90578 102.355927) (xy 142.013953 102.094774) (xy 142.019613 102.066318) + (xy 142.100497 102.292492) (xy 142.167429 102.417714) (xy 142.411398 102.489297) (xy 143.224495 101.6762) (xy 143.583705 101.6762) + (xy 144.396802 102.489297) (xy 144.640771 102.417714) (xy 144.761671 102.162204) (xy 144.787312 102.059911) (xy 144.794247 102.094774) + (xy 144.90242 102.355927) (xy 145.059463 102.590959) (xy 145.259341 102.790837) (xy 145.494373 102.94788) (xy 145.755526 103.056053) + (xy 146.032765 103.1112) (xy 146.315435 103.1112) (xy 146.592674 103.056053) (xy 146.853827 102.94788) (xy 147.088859 102.790837) + (xy 147.210794 102.668902) (xy 148.131003 102.668902) (xy 148.202586 102.912871) (xy 148.458096 103.033771) (xy 148.732284 103.1025) + (xy 149.014612 103.116417) (xy 149.29423 103.074987) (xy 149.560392 102.979803) (xy 149.685614 102.912871) (xy 149.757197 102.668902) + (xy 148.9441 101.855805) (xy 148.131003 102.668902) (xy 147.210794 102.668902) (xy 147.288737 102.590959) (xy 147.44578 102.355927) + (xy 147.553953 102.094774) (xy 147.559613 102.066318) (xy 147.640497 102.292492) (xy 147.707429 102.417714) (xy 147.951398 102.489297) + (xy 148.764495 101.6762) (xy 149.123705 101.6762) (xy 149.936802 102.489297) (xy 150.180771 102.417714) (xy 150.301671 102.162204) + (xy 150.327312 102.059911) (xy 150.334247 102.094774) (xy 150.44242 102.355927) (xy 150.599463 102.590959) (xy 150.799341 102.790837) + (xy 151.034373 102.94788) (xy 151.295526 103.056053) (xy 151.572765 103.1112) (xy 151.855435 103.1112) (xy 152.132674 103.056053) + (xy 152.393827 102.94788) (xy 152.628859 102.790837) (xy 152.828737 102.590959) (xy 152.98578 102.355927) (xy 153.093953 102.094774) + (xy 153.0991 102.068899) (xy 153.104247 102.094774) (xy 153.21242 102.355927) (xy 153.369463 102.590959) (xy 153.569341 102.790837) + (xy 153.804373 102.94788) (xy 154.065526 103.056053) (xy 154.342765 103.1112) (xy 154.625435 103.1112) (xy 154.902674 103.056053) + (xy 155.163827 102.94788) (xy 155.398859 102.790837) (xy 155.598737 102.590959) (xy 155.75578 102.355927) (xy 155.863953 102.094774) + (xy 155.8691 102.068899) (xy 155.874247 102.094774) (xy 155.98242 102.355927) (xy 156.139463 102.590959) (xy 156.339341 102.790837) + (xy 156.574373 102.94788) (xy 156.835526 103.056053) (xy 157.112765 103.1112) (xy 157.395435 103.1112) (xy 157.672674 103.056053) + (xy 157.933827 102.94788) (xy 158.168859 102.790837) (xy 158.368737 102.590959) (xy 158.52578 102.355927) (xy 158.633953 102.094774) + (xy 158.6391 102.068899) (xy 158.644247 102.094774) (xy 158.75242 102.355927) (xy 158.909463 102.590959) (xy 159.109341 102.790837) + (xy 159.344373 102.94788) (xy 159.605526 103.056053) (xy 159.882765 103.1112) (xy 160.165435 103.1112) (xy 160.442674 103.056053) + (xy 160.703827 102.94788) (xy 160.938859 102.790837) (xy 161.138737 102.590959) (xy 161.29578 102.355927) (xy 161.403953 102.094774) + (xy 161.4591 101.817535) (xy 161.4591 101.716675) (xy 164.3191 101.716675) (xy 164.3191 102.235725) (xy 164.420361 102.744801) + (xy 164.618993 103.224341) (xy 164.907362 103.655915) (xy 165.274385 104.022938) (xy 165.705959 104.311307) (xy 166.185499 104.509939) + (xy 166.694575 104.6112) (xy 167.213625 104.6112) (xy 167.722701 104.509939) (xy 168.202241 104.311307) (xy 168.633815 104.022938) + (xy 169.000838 103.655915) (xy 169.289207 103.224341) (xy 169.487839 102.744801) (xy 169.5891 102.235725) (xy 169.5891 101.716675) + (xy 169.487839 101.207599) (xy 169.289207 100.728059) (xy 169.000838 100.296485) (xy 168.633815 99.929462) (xy 168.202241 99.641093) + (xy 167.722701 99.442461) (xy 167.213625 99.3412) (xy 166.694575 99.3412) (xy 166.185499 99.442461) (xy 165.705959 99.641093) + (xy 165.274385 99.929462) (xy 164.907362 100.296485) (xy 164.618993 100.728059) (xy 164.420361 101.207599) (xy 164.3191 101.716675) + (xy 161.4591 101.716675) (xy 161.4591 101.534865) (xy 161.403953 101.257626) (xy 161.29578 100.996473) (xy 161.138737 100.761441) + (xy 160.938859 100.561563) (xy 160.703827 100.40452) (xy 160.442674 100.296347) (xy 160.165435 100.2412) (xy 159.882765 100.2412) + (xy 159.605526 100.296347) (xy 159.344373 100.40452) (xy 159.109341 100.561563) (xy 158.909463 100.761441) (xy 158.75242 100.996473) + (xy 158.644247 101.257626) (xy 158.6391 101.283501) (xy 158.633953 101.257626) (xy 158.52578 100.996473) (xy 158.368737 100.761441) + (xy 158.168859 100.561563) (xy 157.933827 100.40452) (xy 157.672674 100.296347) (xy 157.395435 100.2412) (xy 157.112765 100.2412) + (xy 156.835526 100.296347) (xy 156.574373 100.40452) (xy 156.339341 100.561563) (xy 156.139463 100.761441) (xy 155.98242 100.996473) + (xy 155.874247 101.257626) (xy 155.8691 101.283501) (xy 155.863953 101.257626) (xy 155.75578 100.996473) (xy 155.598737 100.761441) + (xy 155.398859 100.561563) (xy 155.163827 100.40452) (xy 154.902674 100.296347) (xy 154.625435 100.2412) (xy 154.342765 100.2412) + (xy 154.065526 100.296347) (xy 153.804373 100.40452) (xy 153.569341 100.561563) (xy 153.369463 100.761441) (xy 153.21242 100.996473) + (xy 153.104247 101.257626) (xy 153.0991 101.283501) (xy 153.093953 101.257626) (xy 152.98578 100.996473) (xy 152.828737 100.761441) + (xy 152.628859 100.561563) (xy 152.393827 100.40452) (xy 152.132674 100.296347) (xy 151.855435 100.2412) (xy 151.572765 100.2412) + (xy 151.295526 100.296347) (xy 151.034373 100.40452) (xy 150.799341 100.561563) (xy 150.599463 100.761441) (xy 150.44242 100.996473) + (xy 150.334247 101.257626) (xy 150.328587 101.286082) (xy 150.247703 101.059908) (xy 150.180771 100.934686) (xy 149.936802 100.863103) + (xy 149.123705 101.6762) (xy 148.764495 101.6762) (xy 147.951398 100.863103) (xy 147.707429 100.934686) (xy 147.586529 101.190196) + (xy 147.560888 101.292489) (xy 147.553953 101.257626) (xy 147.44578 100.996473) (xy 147.288737 100.761441) (xy 147.210794 100.683498) + (xy 148.131003 100.683498) (xy 148.9441 101.496595) (xy 149.757197 100.683498) (xy 149.685614 100.439529) (xy 149.430104 100.318629) + (xy 149.155916 100.2499) (xy 148.873588 100.235983) (xy 148.59397 100.277413) (xy 148.327808 100.372597) (xy 148.202586 100.439529) + (xy 148.131003 100.683498) (xy 147.210794 100.683498) (xy 147.088859 100.561563) (xy 146.853827 100.40452) (xy 146.592674 100.296347) + (xy 146.315435 100.2412) (xy 146.032765 100.2412) (xy 145.755526 100.296347) (xy 145.494373 100.40452) (xy 145.259341 100.561563) + (xy 145.059463 100.761441) (xy 144.90242 100.996473) (xy 144.794247 101.257626) (xy 144.788587 101.286082) (xy 144.707703 101.059908) + (xy 144.640771 100.934686) (xy 144.396802 100.863103) (xy 143.583705 101.6762) (xy 143.224495 101.6762) (xy 142.411398 100.863103) + (xy 142.167429 100.934686) (xy 142.046529 101.190196) (xy 142.020888 101.292489) (xy 142.013953 101.257626) (xy 141.90578 100.996473) + (xy 141.748737 100.761441) (xy 141.670794 100.683498) (xy 142.591003 100.683498) (xy 143.4041 101.496595) (xy 144.217197 100.683498) + (xy 144.145614 100.439529) (xy 143.890104 100.318629) (xy 143.615916 100.2499) (xy 143.333588 100.235983) (xy 143.05397 100.277413) + (xy 142.787808 100.372597) (xy 142.662586 100.439529) (xy 142.591003 100.683498) (xy 141.670794 100.683498) (xy 141.548859 100.561563) + (xy 141.313827 100.40452) (xy 141.052674 100.296347) (xy 140.775435 100.2412) (xy 140.492765 100.2412) (xy 140.215526 100.296347) + (xy 139.954373 100.40452) (xy 139.719341 100.561563) (xy 139.519463 100.761441) (xy 139.36242 100.996473) (xy 139.254247 101.257626) + (xy 139.2491 101.283501) (xy 139.243953 101.257626) (xy 139.13578 100.996473) (xy 138.978737 100.761441) (xy 138.778859 100.561563) + (xy 138.543827 100.40452) (xy 138.282674 100.296347) (xy 138.005435 100.2412) (xy 137.722765 100.2412) (xy 137.445526 100.296347) + (xy 137.184373 100.40452) (xy 136.949341 100.561563) (xy 136.749463 100.761441) (xy 136.59242 100.996473) (xy 136.484247 101.257626) + (xy 136.4791 101.283501) (xy 136.473953 101.257626) (xy 136.36578 100.996473) (xy 136.208737 100.761441) (xy 136.008859 100.561563) + (xy 135.773827 100.40452) (xy 135.512674 100.296347) (xy 135.235435 100.2412) (xy 134.952765 100.2412) (xy 134.675526 100.296347) + (xy 134.414373 100.40452) (xy 134.179341 100.561563) (xy 133.979463 100.761441) (xy 133.82242 100.996473) (xy 133.714247 101.257626) + (xy 133.7091 101.283501) (xy 133.703953 101.257626) (xy 133.59578 100.996473) (xy 133.438737 100.761441) (xy 133.238859 100.561563) + (xy 133.003827 100.40452) (xy 132.742674 100.296347) (xy 132.465435 100.2412) (xy 132.182765 100.2412) (xy 131.905526 100.296347) + (xy 131.644373 100.40452) (xy 131.409341 100.561563) (xy 131.209463 100.761441) (xy 131.05242 100.996473) (xy 130.944247 101.257626) + (xy 130.9391 101.283501) (xy 130.933953 101.257626) (xy 130.82578 100.996473) (xy 130.668737 100.761441) (xy 130.468859 100.561563) + (xy 130.233827 100.40452) (xy 129.972674 100.296347) (xy 129.695435 100.2412) (xy 129.412765 100.2412) (xy 129.135526 100.296347) + (xy 128.874373 100.40452) (xy 128.639341 100.561563) (xy 128.439463 100.761441) (xy 128.28242 100.996473) (xy 128.222172 101.141925) + (xy 128.222172 100.8762) (xy 128.209912 100.751718) (xy 128.173602 100.63202) (xy 128.114637 100.521706) (xy 128.035285 100.425015) + (xy 127.938594 100.345663) (xy 127.82828 100.286698) (xy 127.708582 100.250388) (xy 127.5841 100.238128) (xy 125.9841 100.238128) + (xy 125.859618 100.250388) (xy 125.73992 100.286698) (xy 125.629606 100.345663) (xy 125.532915 100.425015) (xy 125.453563 100.521706) + (xy 125.394598 100.63202) (xy 125.358288 100.751718) (xy 125.346028 100.8762) (xy 122.25057 100.8762) (xy 122.189207 100.728059) + (xy 121.900838 100.296485) (xy 121.533815 99.929462) (xy 121.102241 99.641093) (xy 120.622701 99.442461) (xy 120.113625 99.3412) + (xy 119.594575 99.3412) (xy 119.085499 99.442461) (xy 118.605959 99.641093) (xy 118.174385 99.929462) (xy 117.807362 100.296485) + (xy 117.518993 100.728059) (xy 117.320361 101.207599) (xy 117.2191 101.716675) (xy 111.023 101.716675) (xy 111.023 88.1262) + (xy 111.453028 88.1262) (xy 111.453028 89.8262) (xy 111.465288 89.950682) (xy 111.501598 90.07038) (xy 111.560563 90.180694) + (xy 111.639915 90.277385) (xy 111.736606 90.356737) (xy 111.84692 90.415702) (xy 111.91948 90.437713) (xy 111.787625 90.569568) + (xy 111.62511 90.812789) (xy 111.513168 91.083042) (xy 111.4561 91.36994) (xy 111.4561 91.66246) (xy 111.513168 91.949358) + (xy 111.62511 92.219611) (xy 111.787625 92.462832) (xy 111.994468 92.669675) (xy 112.237689 92.83219) (xy 112.507942 92.944132) + (xy 112.79484 93.0012) (xy 113.08736 93.0012) (xy 113.374258 92.944132) (xy 113.644511 92.83219) (xy 113.887732 92.669675) + (xy 114.094575 92.462832) (xy 114.2111 92.28844) (xy 114.327625 92.462832) (xy 114.534468 92.669675) (xy 114.777689 92.83219) + (xy 115.047942 92.944132) (xy 115.33484 93.0012) (xy 115.62736 93.0012) (xy 115.914258 92.944132) (xy 116.184511 92.83219) + (xy 116.427732 92.669675) (xy 116.634575 92.462832) (xy 116.7511 92.28844) (xy 116.867625 92.462832) (xy 117.074468 92.669675) + (xy 117.317689 92.83219) (xy 117.587942 92.944132) (xy 117.87484 93.0012) (xy 118.16736 93.0012) (xy 118.454258 92.944132) + (xy 118.724511 92.83219) (xy 118.967732 92.669675) (xy 119.174575 92.462832) (xy 119.2911 92.28844) (xy 119.407625 92.462832) + (xy 119.614468 92.669675) (xy 119.857689 92.83219) (xy 120.127942 92.944132) (xy 120.41484 93.0012) (xy 120.70736 93.0012) + (xy 120.994258 92.944132) (xy 121.264511 92.83219) (xy 121.507732 92.669675) (xy 121.714575 92.462832) (xy 121.8311 92.28844) + (xy 121.947625 92.462832) (xy 122.154468 92.669675) (xy 122.397689 92.83219) (xy 122.667942 92.944132) (xy 122.95484 93.0012) + (xy 123.24736 93.0012) (xy 123.534258 92.944132) (xy 123.804511 92.83219) (xy 124.047732 92.669675) (xy 124.254575 92.462832) + (xy 124.3711 92.28844) (xy 124.487625 92.462832) (xy 124.694468 92.669675) (xy 124.937689 92.83219) (xy 125.207942 92.944132) + (xy 125.49484 93.0012) (xy 125.78736 93.0012) (xy 126.074258 92.944132) (xy 126.344511 92.83219) (xy 126.587732 92.669675) + (xy 126.794575 92.462832) (xy 126.9111 92.28844) (xy 127.027625 92.462832) (xy 127.234468 92.669675) (xy 127.477689 92.83219) + (xy 127.747942 92.944132) (xy 128.03484 93.0012) (xy 128.32736 93.0012) (xy 128.614258 92.944132) (xy 128.884511 92.83219) + (xy 129.127732 92.669675) (xy 129.334575 92.462832) (xy 129.4511 92.28844) (xy 129.567625 92.462832) (xy 129.774468 92.669675) + (xy 130.017689 92.83219) (xy 130.287942 92.944132) (xy 130.57484 93.0012) (xy 130.86736 93.0012) (xy 131.154258 92.944132) + (xy 131.424511 92.83219) (xy 131.667732 92.669675) (xy 131.874575 92.462832) (xy 131.9911 92.28844) (xy 132.107625 92.462832) + (xy 132.314468 92.669675) (xy 132.557689 92.83219) (xy 132.827942 92.944132) (xy 133.11484 93.0012) (xy 133.40736 93.0012) + (xy 133.694258 92.944132) (xy 133.964511 92.83219) (xy 134.207732 92.669675) (xy 134.414575 92.462832) (xy 134.5311 92.28844) + (xy 134.647625 92.462832) (xy 134.854468 92.669675) (xy 135.097689 92.83219) (xy 135.367942 92.944132) (xy 135.65484 93.0012) + (xy 135.94736 93.0012) (xy 136.234258 92.944132) (xy 136.504511 92.83219) (xy 136.747732 92.669675) (xy 136.954575 92.462832) + (xy 137.0711 92.28844) (xy 137.187625 92.462832) (xy 137.394468 92.669675) (xy 137.637689 92.83219) (xy 137.907942 92.944132) + (xy 138.19484 93.0012) (xy 138.48736 93.0012) (xy 138.774258 92.944132) (xy 139.044511 92.83219) (xy 139.287732 92.669675) + (xy 139.494575 92.462832) (xy 139.6111 92.28844) (xy 139.727625 92.462832) (xy 139.934468 92.669675) (xy 140.177689 92.83219) + (xy 140.447942 92.944132) (xy 140.73484 93.0012) (xy 141.02736 93.0012) (xy 141.314258 92.944132) (xy 141.584511 92.83219) + (xy 141.827732 92.669675) (xy 142.034575 92.462832) (xy 142.1511 92.28844) (xy 142.267625 92.462832) (xy 142.474468 92.669675) + (xy 142.717689 92.83219) (xy 142.987942 92.944132) (xy 143.27484 93.0012) (xy 143.56736 93.0012) (xy 143.854258 92.944132) + (xy 144.124511 92.83219) (xy 144.367732 92.669675) (xy 144.574575 92.462832) (xy 144.6911 92.28844) (xy 144.807625 92.462832) + (xy 145.014468 92.669675) (xy 145.257689 92.83219) (xy 145.527942 92.944132) (xy 145.81484 93.0012) (xy 146.10736 93.0012) + (xy 146.394258 92.944132) (xy 146.664511 92.83219) (xy 146.907732 92.669675) (xy 147.114575 92.462832) (xy 147.2311 92.28844) + (xy 147.347625 92.462832) (xy 147.554468 92.669675) (xy 147.797689 92.83219) (xy 148.067942 92.944132) (xy 148.35484 93.0012) + (xy 148.64736 93.0012) (xy 148.934258 92.944132) (xy 149.204511 92.83219) (xy 149.447732 92.669675) (xy 149.654575 92.462832) + (xy 149.7711 92.28844) (xy 149.887625 92.462832) (xy 150.094468 92.669675) (xy 150.337689 92.83219) (xy 150.607942 92.944132) + (xy 150.89484 93.0012) (xy 151.18736 93.0012) (xy 151.474258 92.944132) (xy 151.744511 92.83219) (xy 151.987732 92.669675) + (xy 152.194575 92.462832) (xy 152.3111 92.28844) (xy 152.427625 92.462832) (xy 152.634468 92.669675) (xy 152.877689 92.83219) + (xy 153.147942 92.944132) (xy 153.43484 93.0012) (xy 153.72736 93.0012) (xy 154.014258 92.944132) (xy 154.284511 92.83219) + (xy 154.527732 92.669675) (xy 154.734575 92.462832) (xy 154.8511 92.28844) (xy 154.967625 92.462832) (xy 155.174468 92.669675) + (xy 155.417689 92.83219) (xy 155.687942 92.944132) (xy 155.97484 93.0012) (xy 156.26736 93.0012) (xy 156.554258 92.944132) + (xy 156.824511 92.83219) (xy 157.067732 92.669675) (xy 157.274575 92.462832) (xy 157.3911 92.28844) (xy 157.507625 92.462832) + (xy 157.714468 92.669675) (xy 157.957689 92.83219) (xy 158.227942 92.944132) (xy 158.51484 93.0012) (xy 158.80736 93.0012) + (xy 159.094258 92.944132) (xy 159.364511 92.83219) (xy 159.607732 92.669675) (xy 159.814575 92.462832) (xy 159.9311 92.28844) + (xy 160.047625 92.462832) (xy 160.254468 92.669675) (xy 160.497689 92.83219) (xy 160.767942 92.944132) (xy 161.05484 93.0012) + (xy 161.34736 93.0012) (xy 161.634258 92.944132) (xy 161.904511 92.83219) (xy 162.147732 92.669675) (xy 162.354575 92.462832) + (xy 162.4711 92.28844) (xy 162.587625 92.462832) (xy 162.794468 92.669675) (xy 163.037689 92.83219) (xy 163.307942 92.944132) + (xy 163.59484 93.0012) (xy 163.88736 93.0012) (xy 164.174258 92.944132) (xy 164.444511 92.83219) (xy 164.687732 92.669675) + (xy 164.894575 92.462832) (xy 165.0111 92.28844) (xy 165.127625 92.462832) (xy 165.334468 92.669675) (xy 165.577689 92.83219) + (xy 165.847942 92.944132) (xy 166.13484 93.0012) (xy 166.42736 93.0012) (xy 166.714258 92.944132) (xy 166.984511 92.83219) + (xy 167.227732 92.669675) (xy 167.434575 92.462832) (xy 167.5511 92.28844) (xy 167.667625 92.462832) (xy 167.874468 92.669675) + (xy 168.117689 92.83219) (xy 168.387942 92.944132) (xy 168.67484 93.0012) (xy 168.96736 93.0012) (xy 169.254258 92.944132) + (xy 169.524511 92.83219) (xy 169.767732 92.669675) (xy 169.974575 92.462832) (xy 170.0911 92.28844) (xy 170.207625 92.462832) + (xy 170.414468 92.669675) (xy 170.657689 92.83219) (xy 170.927942 92.944132) (xy 171.21484 93.0012) (xy 171.50736 93.0012) + (xy 171.794258 92.944132) (xy 172.064511 92.83219) (xy 172.307732 92.669675) (xy 172.514575 92.462832) (xy 172.67709 92.219611) + (xy 172.789032 91.949358) (xy 172.8461 91.66246) (xy 172.8461 91.36994) (xy 172.789032 91.083042) (xy 172.67709 90.812789) + (xy 172.514575 90.569568) (xy 172.307732 90.362725) (xy 172.13334 90.2462) (xy 172.307732 90.129675) (xy 172.514575 89.922832) + (xy 172.67709 89.679611) (xy 172.789032 89.409358) (xy 172.8461 89.12246) (xy 172.8461 88.82994) (xy 172.789032 88.543042) + (xy 172.67709 88.272789) (xy 172.514575 88.029568) (xy 172.307732 87.822725) (xy 172.064511 87.66021) (xy 171.794258 87.548268) + (xy 171.50736 87.4912) (xy 171.21484 87.4912) (xy 170.927942 87.548268) (xy 170.657689 87.66021) (xy 170.414468 87.822725) + (xy 170.207625 88.029568) (xy 170.0911 88.20396) (xy 169.974575 88.029568) (xy 169.767732 87.822725) (xy 169.524511 87.66021) + (xy 169.254258 87.548268) (xy 168.96736 87.4912) (xy 168.67484 87.4912) (xy 168.387942 87.548268) (xy 168.117689 87.66021) + (xy 167.874468 87.822725) (xy 167.667625 88.029568) (xy 167.5511 88.20396) (xy 167.434575 88.029568) (xy 167.227732 87.822725) + (xy 166.984511 87.66021) (xy 166.714258 87.548268) (xy 166.42736 87.4912) (xy 166.13484 87.4912) (xy 165.847942 87.548268) + (xy 165.577689 87.66021) (xy 165.334468 87.822725) (xy 165.127625 88.029568) (xy 165.0111 88.20396) (xy 164.894575 88.029568) + (xy 164.687732 87.822725) (xy 164.444511 87.66021) (xy 164.174258 87.548268) (xy 163.88736 87.4912) (xy 163.59484 87.4912) + (xy 163.307942 87.548268) (xy 163.037689 87.66021) (xy 162.794468 87.822725) (xy 162.587625 88.029568) (xy 162.4711 88.20396) + (xy 162.354575 88.029568) (xy 162.147732 87.822725) (xy 161.904511 87.66021) (xy 161.634258 87.548268) (xy 161.34736 87.4912) + (xy 161.05484 87.4912) (xy 160.767942 87.548268) (xy 160.497689 87.66021) (xy 160.254468 87.822725) (xy 160.047625 88.029568) + (xy 159.9311 88.20396) (xy 159.814575 88.029568) (xy 159.607732 87.822725) (xy 159.364511 87.66021) (xy 159.094258 87.548268) + (xy 158.80736 87.4912) (xy 158.51484 87.4912) (xy 158.227942 87.548268) (xy 157.957689 87.66021) (xy 157.714468 87.822725) + (xy 157.507625 88.029568) (xy 157.3911 88.20396) (xy 157.274575 88.029568) (xy 157.067732 87.822725) (xy 156.824511 87.66021) + (xy 156.554258 87.548268) (xy 156.26736 87.4912) (xy 155.97484 87.4912) (xy 155.687942 87.548268) (xy 155.417689 87.66021) + (xy 155.174468 87.822725) (xy 154.967625 88.029568) (xy 154.8511 88.20396) (xy 154.734575 88.029568) (xy 154.527732 87.822725) + (xy 154.284511 87.66021) (xy 154.014258 87.548268) (xy 153.72736 87.4912) (xy 153.43484 87.4912) (xy 153.147942 87.548268) + (xy 152.877689 87.66021) (xy 152.634468 87.822725) (xy 152.427625 88.029568) (xy 152.3111 88.20396) (xy 152.194575 88.029568) + (xy 151.987732 87.822725) (xy 151.744511 87.66021) (xy 151.474258 87.548268) (xy 151.18736 87.4912) (xy 150.89484 87.4912) + (xy 150.607942 87.548268) (xy 150.337689 87.66021) (xy 150.094468 87.822725) (xy 149.887625 88.029568) (xy 149.7711 88.20396) + (xy 149.654575 88.029568) (xy 149.447732 87.822725) (xy 149.204511 87.66021) (xy 148.934258 87.548268) (xy 148.64736 87.4912) + (xy 148.35484 87.4912) (xy 148.067942 87.548268) (xy 147.797689 87.66021) (xy 147.554468 87.822725) (xy 147.347625 88.029568) + (xy 147.2311 88.20396) (xy 147.114575 88.029568) (xy 146.907732 87.822725) (xy 146.664511 87.66021) (xy 146.394258 87.548268) + (xy 146.10736 87.4912) (xy 145.81484 87.4912) (xy 145.527942 87.548268) (xy 145.257689 87.66021) (xy 145.014468 87.822725) + (xy 144.807625 88.029568) (xy 144.6911 88.20396) (xy 144.574575 88.029568) (xy 144.367732 87.822725) (xy 144.124511 87.66021) + (xy 143.854258 87.548268) (xy 143.56736 87.4912) (xy 143.27484 87.4912) (xy 142.987942 87.548268) (xy 142.717689 87.66021) + (xy 142.474468 87.822725) (xy 142.267625 88.029568) (xy 142.1511 88.20396) (xy 142.034575 88.029568) (xy 141.827732 87.822725) + (xy 141.584511 87.66021) (xy 141.314258 87.548268) (xy 141.02736 87.4912) (xy 140.73484 87.4912) (xy 140.447942 87.548268) + (xy 140.177689 87.66021) (xy 139.934468 87.822725) (xy 139.727625 88.029568) (xy 139.6111 88.20396) (xy 139.494575 88.029568) + (xy 139.287732 87.822725) (xy 139.044511 87.66021) (xy 138.774258 87.548268) (xy 138.48736 87.4912) (xy 138.19484 87.4912) + (xy 137.907942 87.548268) (xy 137.637689 87.66021) (xy 137.394468 87.822725) (xy 137.187625 88.029568) (xy 137.0711 88.20396) + (xy 136.954575 88.029568) (xy 136.747732 87.822725) (xy 136.504511 87.66021) (xy 136.234258 87.548268) (xy 135.94736 87.4912) + (xy 135.65484 87.4912) (xy 135.367942 87.548268) (xy 135.097689 87.66021) (xy 134.854468 87.822725) (xy 134.647625 88.029568) + (xy 134.5311 88.20396) (xy 134.414575 88.029568) (xy 134.207732 87.822725) (xy 133.964511 87.66021) (xy 133.694258 87.548268) + (xy 133.40736 87.4912) (xy 133.11484 87.4912) (xy 132.827942 87.548268) (xy 132.557689 87.66021) (xy 132.314468 87.822725) + (xy 132.107625 88.029568) (xy 131.9911 88.20396) (xy 131.874575 88.029568) (xy 131.667732 87.822725) (xy 131.424511 87.66021) + (xy 131.154258 87.548268) (xy 130.86736 87.4912) (xy 130.57484 87.4912) (xy 130.287942 87.548268) (xy 130.017689 87.66021) + (xy 129.774468 87.822725) (xy 129.567625 88.029568) (xy 129.4511 88.20396) (xy 129.334575 88.029568) (xy 129.127732 87.822725) + (xy 128.884511 87.66021) (xy 128.614258 87.548268) (xy 128.32736 87.4912) (xy 128.03484 87.4912) (xy 127.747942 87.548268) + (xy 127.477689 87.66021) (xy 127.234468 87.822725) (xy 127.027625 88.029568) (xy 126.9111 88.20396) (xy 126.794575 88.029568) + (xy 126.587732 87.822725) (xy 126.344511 87.66021) (xy 126.074258 87.548268) (xy 125.78736 87.4912) (xy 125.49484 87.4912) + (xy 125.207942 87.548268) (xy 124.937689 87.66021) (xy 124.694468 87.822725) (xy 124.487625 88.029568) (xy 124.3711 88.20396) + (xy 124.254575 88.029568) (xy 124.047732 87.822725) (xy 123.804511 87.66021) (xy 123.534258 87.548268) (xy 123.24736 87.4912) + (xy 122.95484 87.4912) (xy 122.667942 87.548268) (xy 122.397689 87.66021) (xy 122.154468 87.822725) (xy 121.947625 88.029568) + (xy 121.8311 88.20396) (xy 121.714575 88.029568) (xy 121.507732 87.822725) (xy 121.264511 87.66021) (xy 120.994258 87.548268) + (xy 120.70736 87.4912) (xy 120.41484 87.4912) (xy 120.127942 87.548268) (xy 119.857689 87.66021) (xy 119.614468 87.822725) + (xy 119.407625 88.029568) (xy 119.2911 88.20396) (xy 119.174575 88.029568) (xy 118.967732 87.822725) (xy 118.724511 87.66021) + (xy 118.454258 87.548268) (xy 118.16736 87.4912) (xy 117.87484 87.4912) (xy 117.587942 87.548268) (xy 117.317689 87.66021) + (xy 117.074468 87.822725) (xy 116.867625 88.029568) (xy 116.7511 88.20396) (xy 116.634575 88.029568) (xy 116.427732 87.822725) + (xy 116.184511 87.66021) (xy 115.914258 87.548268) (xy 115.62736 87.4912) (xy 115.33484 87.4912) (xy 115.047942 87.548268) + (xy 114.777689 87.66021) (xy 114.534468 87.822725) (xy 114.402613 87.95458) (xy 114.380602 87.88202) (xy 114.321637 87.771706) + (xy 114.242285 87.675015) (xy 114.145594 87.595663) (xy 114.03528 87.536698) (xy 113.915582 87.500388) (xy 113.7911 87.488128) + (xy 112.0911 87.488128) (xy 111.966618 87.500388) (xy 111.84692 87.536698) (xy 111.736606 87.595663) (xy 111.639915 87.675015) + (xy 111.560563 87.771706) (xy 111.501598 87.88202) (xy 111.465288 88.001718) (xy 111.453028 88.1262) (xy 111.023 88.1262) + (xy 111.023 87.1089) (xy 173.317301 87.1089) + ) + ) + ) +) diff --git a/hw/loopback/loopback.kicad_pcb-bak b/hw/loopback/loopback.kicad_pcb-bak new file mode 100644 index 00000000..5fa5b0a6 --- /dev/null +++ b/hw/loopback/loopback.kicad_pcb-bak @@ -0,0 +1,748 @@ +(kicad_pcb (version 20171130) (host pcbnew "(5.1.7-0-10_14)") + + (general + (thickness 1.6) + (drawings 4) + (tracks 27) + (zones 0) + (modules 2) + (nets 11) + ) + + (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) + (aux_axis_origin 0 0) + (visible_elements FFFFFF7F) + (pcbplotparams + (layerselection 0x010fc_ffffffff) + (usegerberextensions false) + (usegerberattributes true) + (usegerberadvancedattributes true) + (creategerberjobfile true) + (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 /CD) + (net 2 /ATN) + (net 3 /DB1) + (net 4 /BSY) + (net 5 /DB7) + (net 6 /DB6) + (net 7 /DB5) + (net 8 /DB3) + (net 9 /ACK) + (net 10 GND) + + (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 /ACK) + (add_net /ATN) + (add_net /BSY) + (add_net /CD) + (add_net /DB1) + (add_net /DB3) + (add_net /DB5) + (add_net /DB6) + (add_net /DB7) + (add_net GND) + (add_net "Net-(J2-Pad1)") + (add_net "Net-(J2-Pad10)") + (add_net "Net-(J2-Pad11)") + (add_net "Net-(J2-Pad12)") + (add_net "Net-(J2-Pad13)") + (add_net "Net-(J2-Pad14)") + (add_net "Net-(J2-Pad15)") + (add_net "Net-(J2-Pad16)") + (add_net "Net-(J2-Pad17)") + (add_net "Net-(J2-Pad18)") + (add_net "Net-(J2-Pad19)") + (add_net "Net-(J2-Pad2)") + (add_net "Net-(J2-Pad20)") + (add_net "Net-(J2-Pad21)") + (add_net "Net-(J2-Pad22)") + (add_net "Net-(J2-Pad23)") + (add_net "Net-(J2-Pad24)") + (add_net "Net-(J2-Pad25)") + (add_net "Net-(J2-Pad26)") + (add_net "Net-(J2-Pad27)") + (add_net "Net-(J2-Pad28)") + (add_net "Net-(J2-Pad29)") + (add_net "Net-(J2-Pad3)") + (add_net "Net-(J2-Pad30)") + (add_net "Net-(J2-Pad31)") + (add_net "Net-(J2-Pad32)") + (add_net "Net-(J2-Pad33)") + (add_net "Net-(J2-Pad34)") + (add_net "Net-(J2-Pad35)") + (add_net "Net-(J2-Pad36)") + (add_net "Net-(J2-Pad37)") + (add_net "Net-(J2-Pad38)") + (add_net "Net-(J2-Pad39)") + (add_net "Net-(J2-Pad4)") + (add_net "Net-(J2-Pad40)") + (add_net "Net-(J2-Pad41)") + (add_net "Net-(J2-Pad42)") + (add_net "Net-(J2-Pad43)") + (add_net "Net-(J2-Pad44)") + (add_net "Net-(J2-Pad45)") + (add_net "Net-(J2-Pad46)") + (add_net "Net-(J2-Pad47)") + (add_net "Net-(J2-Pad48)") + (add_net "Net-(J2-Pad5)") + (add_net "Net-(J2-Pad6)") + (add_net "Net-(J2-Pad7)") + (add_net "Net-(J2-Pad8)") + (add_net "Net-(J2-Pad9)") + ) + + (module Connector_PinSocket_2.54mm:PinSocket_2x24_P2.54mm_Vertical (layer F.Cu) (tedit 5A19A423) (tstamp 60A88E38) + (at 112.9411 88.9762 90) + (descr "Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated") + (tags "Through hole socket strip THT 2x24 2.54mm double row") + (path /60AB1BAF) + (fp_text reference J2 (at -1.27 -2.77 90) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value Conn_02x25_Counter_Clockwise (at -1.27 61.19 90) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at -1.27 29.21) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 -0.27) (end 1.27 59.69) (layer F.Fab) (width 0.1)) + (fp_line (start 1.27 59.69) (end -3.81 59.69) (layer F.Fab) (width 0.1)) + (fp_line (start -3.81 59.69) (end -3.81 -1.27) (layer F.Fab) (width 0.1)) + (fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.87 -1.33) (end -3.87 59.75) (layer F.SilkS) (width 0.12)) + (fp_line (start -3.87 59.75) (end 1.33 59.75) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 1.27) (end 1.33 59.75) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.27 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer F.SilkS) (width 0.12)) + (fp_line (start 1.33 -1.33) (end 1.33 0) (layer F.SilkS) (width 0.12)) + (fp_line (start 0 -1.33) (end 1.33 -1.33) (layer F.SilkS) (width 0.12)) + (fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.76 -1.8) (end 1.76 60.2) (layer F.CrtYd) (width 0.05)) + (fp_line (start 1.76 60.2) (end -4.34 60.2) (layer F.CrtYd) (width 0.05)) + (fp_line (start -4.34 60.2) (end -4.34 -1.8) (layer F.CrtYd) (width 0.05)) + (pad 48 thru_hole oval (at -2.54 58.42 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 47 thru_hole oval (at 0 58.42 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 46 thru_hole oval (at -2.54 55.88 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 45 thru_hole oval (at 0 55.88 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 44 thru_hole oval (at -2.54 53.34 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 43 thru_hole oval (at 0 53.34 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 42 thru_hole oval (at -2.54 50.8 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 41 thru_hole oval (at 0 50.8 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 40 thru_hole oval (at -2.54 48.26 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 39 thru_hole oval (at 0 48.26 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 38 thru_hole oval (at -2.54 45.72 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 37 thru_hole oval (at 0 45.72 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 36 thru_hole oval (at -2.54 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 35 thru_hole oval (at 0 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 34 thru_hole oval (at -2.54 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 33 thru_hole oval (at 0 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 32 thru_hole oval (at -2.54 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 31 thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 30 thru_hole oval (at -2.54 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 29 thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 28 thru_hole oval (at -2.54 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 27 thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 26 thru_hole oval (at -2.54 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 25 thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 24 thru_hole oval (at -2.54 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 23 thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 22 thru_hole oval (at -2.54 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 21 thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 20 thru_hole oval (at -2.54 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 19 thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 18 thru_hole oval (at -2.54 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 17 thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 16 thru_hole oval (at -2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 15 thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 14 thru_hole oval (at -2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 13 thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 12 thru_hole oval (at -2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 11 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 10 thru_hole oval (at -2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 9 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 8 thru_hole oval (at -2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 7 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 6 thru_hole oval (at -2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 5 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 4 thru_hole oval (at -2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 3 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 2 thru_hole oval (at -2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) + (model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x24_P2.54mm_Vertical.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (module Connector_Dsub:DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm (layer F.Cu) (tedit 59FEDEE2) (tstamp 60A88213) + (at 126.7841 101.6762) + (descr "25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf") + (tags "25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm") + (path /60A9E3C3) + (fp_text reference J1 (at 16.62 -3.7) (layer F.SilkS) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text value DB25_Male (at 16.62 15.68) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_text user %R (at 16.62 11.18) (layer F.Fab) + (effects (font (size 1 1) (thickness 0.15))) + ) + (fp_arc (start 40.17 0.3) (end 38.57 0.3) (angle 180) (layer F.Fab) (width 0.1)) + (fp_arc (start -6.93 0.3) (end -8.53 0.3) (angle 180) (layer F.Fab) (width 0.1)) + (fp_line (start -9.93 -2.7) (end -9.93 7.78) (layer F.Fab) (width 0.1)) + (fp_line (start -9.93 7.78) (end 43.17 7.78) (layer F.Fab) (width 0.1)) + (fp_line (start 43.17 7.78) (end 43.17 -2.7) (layer F.Fab) (width 0.1)) + (fp_line (start 43.17 -2.7) (end -9.93 -2.7) (layer F.Fab) (width 0.1)) + (fp_line (start -9.93 7.78) (end -9.93 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start -9.93 8.18) (end 43.17 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start 43.17 8.18) (end 43.17 7.78) (layer F.Fab) (width 0.1)) + (fp_line (start 43.17 7.78) (end -9.93 7.78) (layer F.Fab) (width 0.1)) + (fp_line (start -2.53 8.18) (end -2.53 14.18) (layer F.Fab) (width 0.1)) + (fp_line (start -2.53 14.18) (end 35.77 14.18) (layer F.Fab) (width 0.1)) + (fp_line (start 35.77 14.18) (end 35.77 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start 35.77 8.18) (end -2.53 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start -9.43 8.18) (end -9.43 13.18) (layer F.Fab) (width 0.1)) + (fp_line (start -9.43 13.18) (end -4.43 13.18) (layer F.Fab) (width 0.1)) + (fp_line (start -4.43 13.18) (end -4.43 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start -4.43 8.18) (end -9.43 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start 37.67 8.18) (end 37.67 13.18) (layer F.Fab) (width 0.1)) + (fp_line (start 37.67 13.18) (end 42.67 13.18) (layer F.Fab) (width 0.1)) + (fp_line (start 42.67 13.18) (end 42.67 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start 42.67 8.18) (end 37.67 8.18) (layer F.Fab) (width 0.1)) + (fp_line (start -8.53 7.78) (end -8.53 0.3) (layer F.Fab) (width 0.1)) + (fp_line (start -5.33 7.78) (end -5.33 0.3) (layer F.Fab) (width 0.1)) + (fp_line (start 38.57 7.78) (end 38.57 0.3) (layer F.Fab) (width 0.1)) + (fp_line (start 41.77 7.78) (end 41.77 0.3) (layer F.Fab) (width 0.1)) + (fp_line (start -9.99 7.72) (end -9.99 -2.76) (layer F.SilkS) (width 0.12)) + (fp_line (start -9.99 -2.76) (end 43.23 -2.76) (layer F.SilkS) (width 0.12)) + (fp_line (start 43.23 -2.76) (end 43.23 7.72) (layer F.SilkS) (width 0.12)) + (fp_line (start -0.25 -3.654338) (end 0.25 -3.654338) (layer F.SilkS) (width 0.12)) + (fp_line (start 0.25 -3.654338) (end 0 -3.221325) (layer F.SilkS) (width 0.12)) + (fp_line (start 0 -3.221325) (end -0.25 -3.654338) (layer F.SilkS) (width 0.12)) + (fp_line (start -10.45 -3.25) (end -10.45 14.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start -10.45 14.7) (end 43.7 14.7) (layer F.CrtYd) (width 0.05)) + (fp_line (start 43.7 14.7) (end 43.7 -3.25) (layer F.CrtYd) (width 0.05)) + (fp_line (start 43.7 -3.25) (end -10.45 -3.25) (layer F.CrtYd) (width 0.05)) + (pad 0 thru_hole circle (at 40.17 0.3) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)) + (pad 0 thru_hole circle (at -6.93 0.3) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)) + (pad 25 thru_hole circle (at 31.855 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 24 thru_hole circle (at 29.085 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 23 thru_hole circle (at 26.315 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 1 /CD)) + (pad 22 thru_hole circle (at 23.545 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 2 /ATN)) + (pad 21 thru_hole circle (at 20.775 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 3 /DB1)) + (pad 20 thru_hole circle (at 18.005 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 4 /BSY)) + (pad 19 thru_hole circle (at 15.235 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 3 /DB1)) + (pad 18 thru_hole circle (at 12.465 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 17 thru_hole circle (at 9.695 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 2 /ATN)) + (pad 16 thru_hole circle (at 6.925 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 15 thru_hole circle (at 4.155 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 1 /CD)) + (pad 14 thru_hole circle (at 1.385 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 13 thru_hole circle (at 33.24 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 5 /DB7)) + (pad 12 thru_hole circle (at 30.47 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 6 /DB6)) + (pad 11 thru_hole circle (at 27.7 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 7 /DB5)) + (pad 10 thru_hole circle (at 24.93 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 8 /DB3)) + (pad 9 thru_hole circle (at 22.16 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 8 thru_hole circle (at 19.39 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 9 /ACK)) + (pad 7 thru_hole circle (at 16.62 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 10 GND)) + (pad 6 thru_hole circle (at 13.85 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 4 /BSY)) + (pad 5 thru_hole circle (at 11.08 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 9 /ACK)) + (pad 4 thru_hole circle (at 8.31 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 8 /DB3)) + (pad 3 thru_hole circle (at 5.54 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 7 /DB5)) + (pad 2 thru_hole circle (at 2.77 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 6 /DB6)) + (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) + (net 5 /DB7)) + (model ${KISYS3DMOD}/Connector_Dsub.3dshapes/DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm.wrl + (at (xyz 0 0 0)) + (scale (xyz 1 1 1)) + (rotate (xyz 0 0 0)) + ) + ) + + (gr_line (start 110.363 86.4489) (end 110.363 109.474) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 173.9773 86.4489) (end 110.363 86.4489) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 173.9773 109.474) (end 173.9773 86.4489) (layer Edge.Cuts) (width 0.05)) + (gr_line (start 110.363 109.474) (end 173.9773 109.474) (layer Edge.Cuts) (width 0.05)) + + (segment (start 151.074075 106.541225) (end 153.0991 104.5162) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 132.964126 106.541225) (end 151.074075 106.541225) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 130.9391 104.5162) (end 132.964126 106.541225) (width 0.25) (layer F.Cu) (net 1)) + (segment (start 148.754088 106.091212) (end 150.3291 104.5162) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 138.054112 106.091212) (end 148.754088 106.091212) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 136.4791 104.5162) (end 138.054112 106.091212) (width 0.25) (layer F.Cu) (net 2)) + (segment (start 146.434099 105.641201) (end 147.5591 104.5162) (width 0.25) (layer F.Cu) (net 3)) + (segment (start 143.144101 105.641201) (end 146.434099 105.641201) (width 0.25) (layer F.Cu) (net 3)) + (segment (start 142.0191 104.5162) (end 143.144101 105.641201) (width 0.25) (layer F.Cu) (net 3)) + (segment (start 144.60547 104.5162) (end 144.7891 104.5162) (width 0.25) (layer F.Cu) (net 4)) + (segment (start 141.76547 101.6762) (end 144.60547 104.5162) (width 0.25) (layer F.Cu) (net 4)) + (segment (start 140.6341 101.6762) (end 141.76547 101.6762) (width 0.25) (layer F.Cu) (net 4)) + (segment (start 126.7841 101.6762) (end 131.2164 97.2439) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 155.5918 97.2439) (end 160.0241 101.6762) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 131.2164 97.2439) (end 155.5918 97.2439) (width 0.25) (layer F.Cu) (net 5)) + (segment (start 129.5541 101.6762) (end 133.2371 97.9932) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 153.5711 97.9932) (end 157.2541 101.6762) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 133.2371 97.9932) (end 153.5711 97.9932) (width 0.25) (layer F.Cu) (net 6)) + (segment (start 132.3241 101.6762) (end 135.207 98.7933) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 151.6012 98.7933) (end 154.4841 101.6762) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 135.207 98.7933) (end 151.6012 98.7933) (width 0.25) (layer F.Cu) (net 7)) + (segment (start 135.0941 101.6762) (end 137.088 99.6823) (width 0.25) (layer F.Cu) (net 8)) + (segment (start 149.7202 99.6823) (end 151.7141 101.6762) (width 0.25) (layer F.Cu) (net 8)) + (segment (start 137.088 99.6823) (end 149.7202 99.6823) (width 0.25) (layer F.Cu) (net 8)) + (segment (start 138.989101 100.551199) (end 137.8641 101.6762) (width 0.25) (layer F.Cu) (net 9)) + (segment (start 145.049099 100.551199) (end 138.989101 100.551199) (width 0.25) (layer F.Cu) (net 9)) + (segment (start 146.1741 101.6762) (end 145.049099 100.551199) (width 0.25) (layer F.Cu) (net 9)) + + (zone (net 10) (net_name GND) (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 176.3014 123.1773) (xy 108.7501 123.1773) (xy 108.7501 88.011) (xy 176.3014 88.011) + ) + ) + (filled_polygon + (pts + (xy 170.79 108.814) (xy 115.1124 108.814) (xy 115.1124 105.508902) (xy 127.356003 105.508902) (xy 127.427586 105.752871) + (xy 127.683096 105.873771) (xy 127.957284 105.9425) (xy 128.239612 105.956417) (xy 128.51923 105.914987) (xy 128.785392 105.819803) + (xy 128.910614 105.752871) (xy 128.982197 105.508902) (xy 128.1691 104.695805) (xy 127.356003 105.508902) (xy 115.1124 105.508902) + (xy 115.1124 101.716675) (xy 117.2191 101.716675) (xy 117.2191 102.235725) (xy 117.320361 102.744801) (xy 117.518993 103.224341) + (xy 117.807362 103.655915) (xy 118.174385 104.022938) (xy 118.605959 104.311307) (xy 119.085499 104.509939) (xy 119.594575 104.6112) + (xy 120.113625 104.6112) (xy 120.236735 104.586712) (xy 126.728883 104.586712) (xy 126.770313 104.86633) (xy 126.865497 105.132492) + (xy 126.932429 105.257714) (xy 127.176398 105.329297) (xy 127.989495 104.5162) (xy 127.176398 103.703103) (xy 126.932429 103.774686) + (xy 126.811529 104.030196) (xy 126.7428 104.304384) (xy 126.728883 104.586712) (xy 120.236735 104.586712) (xy 120.622701 104.509939) + (xy 121.102241 104.311307) (xy 121.533815 104.022938) (xy 121.900838 103.655915) (xy 121.989316 103.523498) (xy 127.356003 103.523498) + (xy 128.1691 104.336595) (xy 128.982197 103.523498) (xy 128.910614 103.279529) (xy 128.655104 103.158629) (xy 128.380916 103.0899) + (xy 128.098588 103.075983) (xy 127.81897 103.117413) (xy 127.552808 103.212597) (xy 127.427586 103.279529) (xy 127.356003 103.523498) + (xy 121.989316 103.523498) (xy 122.189207 103.224341) (xy 122.387839 102.744801) (xy 122.4891 102.235725) (xy 122.4891 101.716675) + (xy 122.387839 101.207599) (xy 122.25057 100.8762) (xy 125.346028 100.8762) (xy 125.346028 102.4762) (xy 125.358288 102.600682) + (xy 125.394598 102.72038) (xy 125.453563 102.830694) (xy 125.532915 102.927385) (xy 125.629606 103.006737) (xy 125.73992 103.065702) + (xy 125.859618 103.102012) (xy 125.9841 103.114272) (xy 127.5841 103.114272) (xy 127.708582 103.102012) (xy 127.82828 103.065702) + (xy 127.938594 103.006737) (xy 128.035285 102.927385) (xy 128.114637 102.830694) (xy 128.173602 102.72038) (xy 128.209912 102.600682) + (xy 128.222172 102.4762) (xy 128.222172 102.210475) (xy 128.28242 102.355927) (xy 128.439463 102.590959) (xy 128.639341 102.790837) + (xy 128.874373 102.94788) (xy 129.135526 103.056053) (xy 129.412765 103.1112) (xy 129.695435 103.1112) (xy 129.972674 103.056053) + (xy 130.233827 102.94788) (xy 130.468859 102.790837) (xy 130.668737 102.590959) (xy 130.82578 102.355927) (xy 130.933953 102.094774) + (xy 130.9391 102.068899) (xy 130.944247 102.094774) (xy 131.05242 102.355927) (xy 131.209463 102.590959) (xy 131.409341 102.790837) + (xy 131.644373 102.94788) (xy 131.905526 103.056053) (xy 132.182765 103.1112) (xy 132.465435 103.1112) (xy 132.742674 103.056053) + (xy 133.003827 102.94788) (xy 133.238859 102.790837) (xy 133.438737 102.590959) (xy 133.59578 102.355927) (xy 133.703953 102.094774) + (xy 133.7091 102.068899) (xy 133.714247 102.094774) (xy 133.82242 102.355927) (xy 133.979463 102.590959) (xy 134.179341 102.790837) + (xy 134.414373 102.94788) (xy 134.675526 103.056053) (xy 134.952765 103.1112) (xy 135.235435 103.1112) (xy 135.512674 103.056053) + (xy 135.773827 102.94788) (xy 136.008859 102.790837) (xy 136.208737 102.590959) (xy 136.36578 102.355927) (xy 136.473953 102.094774) + (xy 136.4791 102.068899) (xy 136.484247 102.094774) (xy 136.59242 102.355927) (xy 136.749463 102.590959) (xy 136.949341 102.790837) + (xy 137.184373 102.94788) (xy 137.445526 103.056053) (xy 137.722765 103.1112) (xy 138.005435 103.1112) (xy 138.282674 103.056053) + (xy 138.543827 102.94788) (xy 138.778859 102.790837) (xy 138.978737 102.590959) (xy 139.13578 102.355927) (xy 139.243953 102.094774) + (xy 139.2491 102.068899) (xy 139.254247 102.094774) (xy 139.36242 102.355927) (xy 139.519463 102.590959) (xy 139.719341 102.790837) + (xy 139.954373 102.94788) (xy 140.215526 103.056053) (xy 140.492765 103.1112) (xy 140.775435 103.1112) (xy 141.052674 103.056053) + (xy 141.313827 102.94788) (xy 141.548859 102.790837) (xy 141.677082 102.662614) (xy 142.095669 103.0812) (xy 141.877765 103.0812) + (xy 141.600526 103.136347) (xy 141.339373 103.24452) (xy 141.104341 103.401563) (xy 140.904463 103.601441) (xy 140.74742 103.836473) + (xy 140.639247 104.097626) (xy 140.633587 104.126082) (xy 140.552703 103.899908) (xy 140.485771 103.774686) (xy 140.241802 103.703103) + (xy 139.428705 104.5162) (xy 139.442848 104.530343) (xy 139.263243 104.709948) (xy 139.2491 104.695805) (xy 139.234958 104.709948) + (xy 139.055353 104.530343) (xy 139.069495 104.5162) (xy 138.256398 103.703103) (xy 138.012429 103.774686) (xy 137.891529 104.030196) + (xy 137.865888 104.132489) (xy 137.858953 104.097626) (xy 137.75078 103.836473) (xy 137.593737 103.601441) (xy 137.515794 103.523498) + (xy 138.436003 103.523498) (xy 139.2491 104.336595) (xy 140.062197 103.523498) (xy 139.990614 103.279529) (xy 139.735104 103.158629) + (xy 139.460916 103.0899) (xy 139.178588 103.075983) (xy 138.89897 103.117413) (xy 138.632808 103.212597) (xy 138.507586 103.279529) + (xy 138.436003 103.523498) (xy 137.515794 103.523498) (xy 137.393859 103.401563) (xy 137.158827 103.24452) (xy 136.897674 103.136347) + (xy 136.620435 103.0812) (xy 136.337765 103.0812) (xy 136.060526 103.136347) (xy 135.799373 103.24452) (xy 135.564341 103.401563) + (xy 135.364463 103.601441) (xy 135.20742 103.836473) (xy 135.099247 104.097626) (xy 135.093587 104.126082) (xy 135.012703 103.899908) + (xy 134.945771 103.774686) (xy 134.701802 103.703103) (xy 133.888705 104.5162) (xy 134.701802 105.329297) (xy 134.945771 105.257714) + (xy 135.066671 105.002204) (xy 135.092312 104.899911) (xy 135.099247 104.934774) (xy 135.20742 105.195927) (xy 135.364463 105.430959) + (xy 135.564341 105.630837) (xy 135.789413 105.781225) (xy 134.397567 105.781225) (xy 134.450614 105.752871) (xy 134.522197 105.508902) + (xy 133.7091 104.695805) (xy 133.694958 104.709948) (xy 133.515353 104.530343) (xy 133.529495 104.5162) (xy 132.716398 103.703103) + (xy 132.472429 103.774686) (xy 132.351529 104.030196) (xy 132.325888 104.132489) (xy 132.318953 104.097626) (xy 132.21078 103.836473) + (xy 132.053737 103.601441) (xy 131.975794 103.523498) (xy 132.896003 103.523498) (xy 133.7091 104.336595) (xy 134.522197 103.523498) + (xy 134.450614 103.279529) (xy 134.195104 103.158629) (xy 133.920916 103.0899) (xy 133.638588 103.075983) (xy 133.35897 103.117413) + (xy 133.092808 103.212597) (xy 132.967586 103.279529) (xy 132.896003 103.523498) (xy 131.975794 103.523498) (xy 131.853859 103.401563) + (xy 131.618827 103.24452) (xy 131.357674 103.136347) (xy 131.080435 103.0812) (xy 130.797765 103.0812) (xy 130.520526 103.136347) + (xy 130.259373 103.24452) (xy 130.024341 103.401563) (xy 129.824463 103.601441) (xy 129.66742 103.836473) (xy 129.559247 104.097626) + (xy 129.553587 104.126082) (xy 129.472703 103.899908) (xy 129.405771 103.774686) (xy 129.161802 103.703103) (xy 128.348705 104.5162) + (xy 129.161802 105.329297) (xy 129.405771 105.257714) (xy 129.526671 105.002204) (xy 129.552312 104.899911) (xy 129.559247 104.934774) + (xy 129.66742 105.195927) (xy 129.824463 105.430959) (xy 130.024341 105.630837) (xy 130.259373 105.78788) (xy 130.520526 105.896053) + (xy 130.797765 105.9512) (xy 131.080435 105.9512) (xy 131.262986 105.914888) (xy 132.400331 107.052233) (xy 132.424125 107.081226) + (xy 132.453118 107.10502) (xy 132.453123 107.105025) (xy 132.53985 107.176199) (xy 132.671879 107.246771) (xy 132.81514 107.290228) + (xy 132.964126 107.304902) (xy 133.001459 107.301225) (xy 151.036753 107.301225) (xy 151.074075 107.304901) (xy 151.111397 107.301225) + (xy 151.111408 107.301225) (xy 151.223061 107.290228) (xy 151.366322 107.246771) (xy 151.498351 107.176199) (xy 151.614076 107.081226) + (xy 151.637879 107.052222) (xy 152.775214 105.914888) (xy 152.957765 105.9512) (xy 153.240435 105.9512) (xy 153.517674 105.896053) + (xy 153.778827 105.78788) (xy 154.013859 105.630837) (xy 154.135794 105.508902) (xy 155.056003 105.508902) (xy 155.127586 105.752871) + (xy 155.383096 105.873771) (xy 155.657284 105.9425) (xy 155.939612 105.956417) (xy 156.21923 105.914987) (xy 156.485392 105.819803) + (xy 156.610614 105.752871) (xy 156.682197 105.508902) (xy 157.826003 105.508902) (xy 157.897586 105.752871) (xy 158.153096 105.873771) + (xy 158.427284 105.9425) (xy 158.709612 105.956417) (xy 158.98923 105.914987) (xy 159.255392 105.819803) (xy 159.380614 105.752871) + (xy 159.452197 105.508902) (xy 158.6391 104.695805) (xy 157.826003 105.508902) (xy 156.682197 105.508902) (xy 155.8691 104.695805) + (xy 155.056003 105.508902) (xy 154.135794 105.508902) (xy 154.213737 105.430959) (xy 154.37078 105.195927) (xy 154.478953 104.934774) + (xy 154.484613 104.906318) (xy 154.565497 105.132492) (xy 154.632429 105.257714) (xy 154.876398 105.329297) (xy 155.689495 104.5162) + (xy 156.048705 104.5162) (xy 156.861802 105.329297) (xy 157.105771 105.257714) (xy 157.226671 105.002204) (xy 157.252316 104.899895) + (xy 157.335497 105.132492) (xy 157.402429 105.257714) (xy 157.646398 105.329297) (xy 158.459495 104.5162) (xy 158.818705 104.5162) + (xy 159.631802 105.329297) (xy 159.875771 105.257714) (xy 159.996671 105.002204) (xy 160.0654 104.728016) (xy 160.079317 104.445688) + (xy 160.037887 104.16607) (xy 159.942703 103.899908) (xy 159.875771 103.774686) (xy 159.631802 103.703103) (xy 158.818705 104.5162) + (xy 158.459495 104.5162) (xy 157.646398 103.703103) (xy 157.402429 103.774686) (xy 157.281529 104.030196) (xy 157.255884 104.132505) + (xy 157.172703 103.899908) (xy 157.105771 103.774686) (xy 156.861802 103.703103) (xy 156.048705 104.5162) (xy 155.689495 104.5162) + (xy 154.876398 103.703103) (xy 154.632429 103.774686) (xy 154.511529 104.030196) (xy 154.485888 104.132489) (xy 154.478953 104.097626) + (xy 154.37078 103.836473) (xy 154.213737 103.601441) (xy 154.135794 103.523498) (xy 155.056003 103.523498) (xy 155.8691 104.336595) + (xy 156.682197 103.523498) (xy 157.826003 103.523498) (xy 158.6391 104.336595) (xy 159.452197 103.523498) (xy 159.380614 103.279529) + (xy 159.125104 103.158629) (xy 158.850916 103.0899) (xy 158.568588 103.075983) (xy 158.28897 103.117413) (xy 158.022808 103.212597) + (xy 157.897586 103.279529) (xy 157.826003 103.523498) (xy 156.682197 103.523498) (xy 156.610614 103.279529) (xy 156.355104 103.158629) + (xy 156.080916 103.0899) (xy 155.798588 103.075983) (xy 155.51897 103.117413) (xy 155.252808 103.212597) (xy 155.127586 103.279529) + (xy 155.056003 103.523498) (xy 154.135794 103.523498) (xy 154.013859 103.401563) (xy 153.778827 103.24452) (xy 153.517674 103.136347) + (xy 153.240435 103.0812) (xy 152.957765 103.0812) (xy 152.680526 103.136347) (xy 152.419373 103.24452) (xy 152.184341 103.401563) + (xy 151.984463 103.601441) (xy 151.82742 103.836473) (xy 151.719247 104.097626) (xy 151.7141 104.123501) (xy 151.708953 104.097626) + (xy 151.60078 103.836473) (xy 151.443737 103.601441) (xy 151.243859 103.401563) (xy 151.008827 103.24452) (xy 150.747674 103.136347) + (xy 150.470435 103.0812) (xy 150.187765 103.0812) (xy 149.910526 103.136347) (xy 149.649373 103.24452) (xy 149.414341 103.401563) + (xy 149.214463 103.601441) (xy 149.05742 103.836473) (xy 148.949247 104.097626) (xy 148.9441 104.123501) (xy 148.938953 104.097626) + (xy 148.83078 103.836473) (xy 148.673737 103.601441) (xy 148.473859 103.401563) (xy 148.238827 103.24452) (xy 147.977674 103.136347) + (xy 147.700435 103.0812) (xy 147.417765 103.0812) (xy 147.140526 103.136347) (xy 146.879373 103.24452) (xy 146.644341 103.401563) + (xy 146.444463 103.601441) (xy 146.28742 103.836473) (xy 146.179247 104.097626) (xy 146.1741 104.123501) (xy 146.168953 104.097626) + (xy 146.06078 103.836473) (xy 145.903737 103.601441) (xy 145.703859 103.401563) (xy 145.468827 103.24452) (xy 145.207674 103.136347) + (xy 144.930435 103.0812) (xy 144.647765 103.0812) (xy 144.370526 103.136347) (xy 144.320953 103.156881) (xy 144.100863 102.936791) + (xy 144.145614 102.912871) (xy 144.217197 102.668902) (xy 143.4041 101.855805) (xy 143.389958 101.869948) (xy 143.210353 101.690343) + (xy 143.224495 101.6762) (xy 143.210353 101.662058) (xy 143.389958 101.482453) (xy 143.4041 101.496595) (xy 143.418243 101.482453) + (xy 143.597848 101.662058) (xy 143.583705 101.6762) (xy 144.396802 102.489297) (xy 144.640771 102.417714) (xy 144.761671 102.162204) + (xy 144.787312 102.059911) (xy 144.794247 102.094774) (xy 144.90242 102.355927) (xy 145.059463 102.590959) (xy 145.259341 102.790837) + (xy 145.494373 102.94788) (xy 145.755526 103.056053) (xy 146.032765 103.1112) (xy 146.315435 103.1112) (xy 146.592674 103.056053) + (xy 146.853827 102.94788) (xy 147.088859 102.790837) (xy 147.210794 102.668902) (xy 148.131003 102.668902) (xy 148.202586 102.912871) + (xy 148.458096 103.033771) (xy 148.732284 103.1025) (xy 149.014612 103.116417) (xy 149.29423 103.074987) (xy 149.560392 102.979803) + (xy 149.685614 102.912871) (xy 149.757197 102.668902) (xy 148.9441 101.855805) (xy 148.131003 102.668902) (xy 147.210794 102.668902) + (xy 147.288737 102.590959) (xy 147.44578 102.355927) (xy 147.553953 102.094774) (xy 147.559613 102.066318) (xy 147.640497 102.292492) + (xy 147.707429 102.417714) (xy 147.951398 102.489297) (xy 148.764495 101.6762) (xy 147.951398 100.863103) (xy 147.707429 100.934686) + (xy 147.586529 101.190196) (xy 147.560888 101.292489) (xy 147.553953 101.257626) (xy 147.44578 100.996473) (xy 147.288737 100.761441) + (xy 147.088859 100.561563) (xy 146.910369 100.4423) (xy 148.201773 100.4423) (xy 148.131003 100.683498) (xy 148.9441 101.496595) + (xy 148.958243 101.482453) (xy 149.137848 101.662058) (xy 149.123705 101.6762) (xy 149.936802 102.489297) (xy 150.180771 102.417714) + (xy 150.301671 102.162204) (xy 150.327312 102.059911) (xy 150.334247 102.094774) (xy 150.44242 102.355927) (xy 150.599463 102.590959) + (xy 150.799341 102.790837) (xy 151.034373 102.94788) (xy 151.295526 103.056053) (xy 151.572765 103.1112) (xy 151.855435 103.1112) + (xy 152.132674 103.056053) (xy 152.393827 102.94788) (xy 152.628859 102.790837) (xy 152.828737 102.590959) (xy 152.98578 102.355927) + (xy 153.093953 102.094774) (xy 153.0991 102.068899) (xy 153.104247 102.094774) (xy 153.21242 102.355927) (xy 153.369463 102.590959) + (xy 153.569341 102.790837) (xy 153.804373 102.94788) (xy 154.065526 103.056053) (xy 154.342765 103.1112) (xy 154.625435 103.1112) + (xy 154.902674 103.056053) (xy 155.163827 102.94788) (xy 155.398859 102.790837) (xy 155.598737 102.590959) (xy 155.75578 102.355927) + (xy 155.863953 102.094774) (xy 155.8691 102.068899) (xy 155.874247 102.094774) (xy 155.98242 102.355927) (xy 156.139463 102.590959) + (xy 156.339341 102.790837) (xy 156.574373 102.94788) (xy 156.835526 103.056053) (xy 157.112765 103.1112) (xy 157.395435 103.1112) + (xy 157.672674 103.056053) (xy 157.933827 102.94788) (xy 158.168859 102.790837) (xy 158.368737 102.590959) (xy 158.52578 102.355927) + (xy 158.633953 102.094774) (xy 158.6391 102.068899) (xy 158.644247 102.094774) (xy 158.75242 102.355927) (xy 158.909463 102.590959) + (xy 159.109341 102.790837) (xy 159.344373 102.94788) (xy 159.605526 103.056053) (xy 159.882765 103.1112) (xy 160.165435 103.1112) + (xy 160.442674 103.056053) (xy 160.703827 102.94788) (xy 160.938859 102.790837) (xy 161.138737 102.590959) (xy 161.29578 102.355927) + (xy 161.403953 102.094774) (xy 161.4591 101.817535) (xy 161.4591 101.716675) (xy 164.3191 101.716675) (xy 164.3191 102.235725) + (xy 164.420361 102.744801) (xy 164.618993 103.224341) (xy 164.907362 103.655915) (xy 165.274385 104.022938) (xy 165.705959 104.311307) + (xy 166.185499 104.509939) (xy 166.694575 104.6112) (xy 167.213625 104.6112) (xy 167.722701 104.509939) (xy 168.202241 104.311307) + (xy 168.633815 104.022938) (xy 169.000838 103.655915) (xy 169.289207 103.224341) (xy 169.487839 102.744801) (xy 169.5891 102.235725) + (xy 169.5891 101.716675) (xy 169.487839 101.207599) (xy 169.289207 100.728059) (xy 169.000838 100.296485) (xy 168.633815 99.929462) + (xy 168.202241 99.641093) (xy 167.722701 99.442461) (xy 167.213625 99.3412) (xy 166.694575 99.3412) (xy 166.185499 99.442461) + (xy 165.705959 99.641093) (xy 165.274385 99.929462) (xy 164.907362 100.296485) (xy 164.618993 100.728059) (xy 164.420361 101.207599) + (xy 164.3191 101.716675) (xy 161.4591 101.716675) (xy 161.4591 101.534865) (xy 161.403953 101.257626) (xy 161.29578 100.996473) + (xy 161.138737 100.761441) (xy 160.938859 100.561563) (xy 160.703827 100.40452) (xy 160.442674 100.296347) (xy 160.165435 100.2412) + (xy 159.882765 100.2412) (xy 159.700214 100.277512) (xy 156.155604 96.732903) (xy 156.131801 96.703899) (xy 156.016076 96.608926) + (xy 155.884047 96.538354) (xy 155.740786 96.494897) (xy 155.629133 96.4839) (xy 155.629122 96.4839) (xy 155.5918 96.480224) + (xy 155.554478 96.4839) (xy 131.253725 96.4839) (xy 131.2164 96.480224) (xy 131.179075 96.4839) (xy 131.179067 96.4839) + (xy 131.067414 96.494897) (xy 130.924153 96.538354) (xy 130.792124 96.608926) (xy 130.676399 96.703899) (xy 130.652601 96.732897) + (xy 127.147371 100.238128) (xy 125.9841 100.238128) (xy 125.859618 100.250388) (xy 125.73992 100.286698) (xy 125.629606 100.345663) + (xy 125.532915 100.425015) (xy 125.453563 100.521706) (xy 125.394598 100.63202) (xy 125.358288 100.751718) (xy 125.346028 100.8762) + (xy 122.25057 100.8762) (xy 122.189207 100.728059) (xy 121.900838 100.296485) (xy 121.533815 99.929462) (xy 121.102241 99.641093) + (xy 120.622701 99.442461) (xy 120.113625 99.3412) (xy 119.594575 99.3412) (xy 119.085499 99.442461) (xy 118.605959 99.641093) + (xy 118.174385 99.929462) (xy 117.807362 100.296485) (xy 117.518993 100.728059) (xy 117.320361 101.207599) (xy 117.2191 101.716675) + (xy 115.1124 101.716675) (xy 115.1124 94.1066) (xy 170.790001 94.1066) + ) + ) + ) + (zone (net 10) (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 176.3014 122.8598) (xy 108.6358 122.8598) (xy 108.6358 88.2142) (xy 176.3014 88.2142) + ) + ) + (filled_polygon + (pts + (xy 170.79 108.814) (xy 115.1124 108.814) (xy 115.1124 105.508902) (xy 127.356003 105.508902) (xy 127.427586 105.752871) + (xy 127.683096 105.873771) (xy 127.957284 105.9425) (xy 128.239612 105.956417) (xy 128.51923 105.914987) (xy 128.785392 105.819803) + (xy 128.910614 105.752871) (xy 128.982197 105.508902) (xy 128.1691 104.695805) (xy 127.356003 105.508902) (xy 115.1124 105.508902) + (xy 115.1124 101.716675) (xy 117.2191 101.716675) (xy 117.2191 102.235725) (xy 117.320361 102.744801) (xy 117.518993 103.224341) + (xy 117.807362 103.655915) (xy 118.174385 104.022938) (xy 118.605959 104.311307) (xy 119.085499 104.509939) (xy 119.594575 104.6112) + (xy 120.113625 104.6112) (xy 120.236735 104.586712) (xy 126.728883 104.586712) (xy 126.770313 104.86633) (xy 126.865497 105.132492) + (xy 126.932429 105.257714) (xy 127.176398 105.329297) (xy 127.989495 104.5162) (xy 128.348705 104.5162) (xy 129.161802 105.329297) + (xy 129.405771 105.257714) (xy 129.526671 105.002204) (xy 129.552312 104.899911) (xy 129.559247 104.934774) (xy 129.66742 105.195927) + (xy 129.824463 105.430959) (xy 130.024341 105.630837) (xy 130.259373 105.78788) (xy 130.520526 105.896053) (xy 130.797765 105.9512) + (xy 131.080435 105.9512) (xy 131.357674 105.896053) (xy 131.618827 105.78788) (xy 131.853859 105.630837) (xy 131.975794 105.508902) + (xy 132.896003 105.508902) (xy 132.967586 105.752871) (xy 133.223096 105.873771) (xy 133.497284 105.9425) (xy 133.779612 105.956417) + (xy 134.05923 105.914987) (xy 134.325392 105.819803) (xy 134.450614 105.752871) (xy 134.522197 105.508902) (xy 133.7091 104.695805) + (xy 132.896003 105.508902) (xy 131.975794 105.508902) (xy 132.053737 105.430959) (xy 132.21078 105.195927) (xy 132.318953 104.934774) + (xy 132.324613 104.906318) (xy 132.405497 105.132492) (xy 132.472429 105.257714) (xy 132.716398 105.329297) (xy 133.529495 104.5162) + (xy 133.888705 104.5162) (xy 134.701802 105.329297) (xy 134.945771 105.257714) (xy 135.066671 105.002204) (xy 135.092312 104.899911) + (xy 135.099247 104.934774) (xy 135.20742 105.195927) (xy 135.364463 105.430959) (xy 135.564341 105.630837) (xy 135.799373 105.78788) + (xy 136.060526 105.896053) (xy 136.337765 105.9512) (xy 136.620435 105.9512) (xy 136.897674 105.896053) (xy 137.158827 105.78788) + (xy 137.393859 105.630837) (xy 137.515794 105.508902) (xy 138.436003 105.508902) (xy 138.507586 105.752871) (xy 138.763096 105.873771) + (xy 139.037284 105.9425) (xy 139.319612 105.956417) (xy 139.59923 105.914987) (xy 139.865392 105.819803) (xy 139.990614 105.752871) + (xy 140.062197 105.508902) (xy 139.2491 104.695805) (xy 138.436003 105.508902) (xy 137.515794 105.508902) (xy 137.593737 105.430959) + (xy 137.75078 105.195927) (xy 137.858953 104.934774) (xy 137.864613 104.906318) (xy 137.945497 105.132492) (xy 138.012429 105.257714) + (xy 138.256398 105.329297) (xy 139.069495 104.5162) (xy 139.428705 104.5162) (xy 140.241802 105.329297) (xy 140.485771 105.257714) + (xy 140.606671 105.002204) (xy 140.632312 104.899911) (xy 140.639247 104.934774) (xy 140.74742 105.195927) (xy 140.904463 105.430959) + (xy 141.104341 105.630837) (xy 141.339373 105.78788) (xy 141.600526 105.896053) (xy 141.877765 105.9512) (xy 142.160435 105.9512) + (xy 142.437674 105.896053) (xy 142.698827 105.78788) (xy 142.933859 105.630837) (xy 143.133737 105.430959) (xy 143.29078 105.195927) + (xy 143.398953 104.934774) (xy 143.4041 104.908899) (xy 143.409247 104.934774) (xy 143.51742 105.195927) (xy 143.674463 105.430959) + (xy 143.874341 105.630837) (xy 144.109373 105.78788) (xy 144.370526 105.896053) (xy 144.647765 105.9512) (xy 144.930435 105.9512) + (xy 145.207674 105.896053) (xy 145.468827 105.78788) (xy 145.703859 105.630837) (xy 145.903737 105.430959) (xy 146.06078 105.195927) + (xy 146.168953 104.934774) (xy 146.1741 104.908899) (xy 146.179247 104.934774) (xy 146.28742 105.195927) (xy 146.444463 105.430959) + (xy 146.644341 105.630837) (xy 146.879373 105.78788) (xy 147.140526 105.896053) (xy 147.417765 105.9512) (xy 147.700435 105.9512) + (xy 147.977674 105.896053) (xy 148.238827 105.78788) (xy 148.473859 105.630837) (xy 148.673737 105.430959) (xy 148.83078 105.195927) + (xy 148.938953 104.934774) (xy 148.9441 104.908899) (xy 148.949247 104.934774) (xy 149.05742 105.195927) (xy 149.214463 105.430959) + (xy 149.414341 105.630837) (xy 149.649373 105.78788) (xy 149.910526 105.896053) (xy 150.187765 105.9512) (xy 150.470435 105.9512) + (xy 150.747674 105.896053) (xy 151.008827 105.78788) (xy 151.243859 105.630837) (xy 151.443737 105.430959) (xy 151.60078 105.195927) + (xy 151.708953 104.934774) (xy 151.7141 104.908899) (xy 151.719247 104.934774) (xy 151.82742 105.195927) (xy 151.984463 105.430959) + (xy 152.184341 105.630837) (xy 152.419373 105.78788) (xy 152.680526 105.896053) (xy 152.957765 105.9512) (xy 153.240435 105.9512) + (xy 153.517674 105.896053) (xy 153.778827 105.78788) (xy 154.013859 105.630837) (xy 154.135794 105.508902) (xy 155.056003 105.508902) + (xy 155.127586 105.752871) (xy 155.383096 105.873771) (xy 155.657284 105.9425) (xy 155.939612 105.956417) (xy 156.21923 105.914987) + (xy 156.485392 105.819803) (xy 156.610614 105.752871) (xy 156.682197 105.508902) (xy 157.826003 105.508902) (xy 157.897586 105.752871) + (xy 158.153096 105.873771) (xy 158.427284 105.9425) (xy 158.709612 105.956417) (xy 158.98923 105.914987) (xy 159.255392 105.819803) + (xy 159.380614 105.752871) (xy 159.452197 105.508902) (xy 158.6391 104.695805) (xy 157.826003 105.508902) (xy 156.682197 105.508902) + (xy 155.8691 104.695805) (xy 155.056003 105.508902) (xy 154.135794 105.508902) (xy 154.213737 105.430959) (xy 154.37078 105.195927) + (xy 154.478953 104.934774) (xy 154.484613 104.906318) (xy 154.565497 105.132492) (xy 154.632429 105.257714) (xy 154.876398 105.329297) + (xy 155.689495 104.5162) (xy 156.048705 104.5162) (xy 156.861802 105.329297) (xy 157.105771 105.257714) (xy 157.226671 105.002204) + (xy 157.252316 104.899895) (xy 157.335497 105.132492) (xy 157.402429 105.257714) (xy 157.646398 105.329297) (xy 158.459495 104.5162) + (xy 158.818705 104.5162) (xy 159.631802 105.329297) (xy 159.875771 105.257714) (xy 159.996671 105.002204) (xy 160.0654 104.728016) + (xy 160.079317 104.445688) (xy 160.037887 104.16607) (xy 159.942703 103.899908) (xy 159.875771 103.774686) (xy 159.631802 103.703103) + (xy 158.818705 104.5162) (xy 158.459495 104.5162) (xy 157.646398 103.703103) (xy 157.402429 103.774686) (xy 157.281529 104.030196) + (xy 157.255884 104.132505) (xy 157.172703 103.899908) (xy 157.105771 103.774686) (xy 156.861802 103.703103) (xy 156.048705 104.5162) + (xy 155.689495 104.5162) (xy 154.876398 103.703103) (xy 154.632429 103.774686) (xy 154.511529 104.030196) (xy 154.485888 104.132489) + (xy 154.478953 104.097626) (xy 154.37078 103.836473) (xy 154.213737 103.601441) (xy 154.135794 103.523498) (xy 155.056003 103.523498) + (xy 155.8691 104.336595) (xy 156.682197 103.523498) (xy 157.826003 103.523498) (xy 158.6391 104.336595) (xy 159.452197 103.523498) + (xy 159.380614 103.279529) (xy 159.125104 103.158629) (xy 158.850916 103.0899) (xy 158.568588 103.075983) (xy 158.28897 103.117413) + (xy 158.022808 103.212597) (xy 157.897586 103.279529) (xy 157.826003 103.523498) (xy 156.682197 103.523498) (xy 156.610614 103.279529) + (xy 156.355104 103.158629) (xy 156.080916 103.0899) (xy 155.798588 103.075983) (xy 155.51897 103.117413) (xy 155.252808 103.212597) + (xy 155.127586 103.279529) (xy 155.056003 103.523498) (xy 154.135794 103.523498) (xy 154.013859 103.401563) (xy 153.778827 103.24452) + (xy 153.517674 103.136347) (xy 153.240435 103.0812) (xy 152.957765 103.0812) (xy 152.680526 103.136347) (xy 152.419373 103.24452) + (xy 152.184341 103.401563) (xy 151.984463 103.601441) (xy 151.82742 103.836473) (xy 151.719247 104.097626) (xy 151.7141 104.123501) + (xy 151.708953 104.097626) (xy 151.60078 103.836473) (xy 151.443737 103.601441) (xy 151.243859 103.401563) (xy 151.008827 103.24452) + (xy 150.747674 103.136347) (xy 150.470435 103.0812) (xy 150.187765 103.0812) (xy 149.910526 103.136347) (xy 149.649373 103.24452) + (xy 149.414341 103.401563) (xy 149.214463 103.601441) (xy 149.05742 103.836473) (xy 148.949247 104.097626) (xy 148.9441 104.123501) + (xy 148.938953 104.097626) (xy 148.83078 103.836473) (xy 148.673737 103.601441) (xy 148.473859 103.401563) (xy 148.238827 103.24452) + (xy 147.977674 103.136347) (xy 147.700435 103.0812) (xy 147.417765 103.0812) (xy 147.140526 103.136347) (xy 146.879373 103.24452) + (xy 146.644341 103.401563) (xy 146.444463 103.601441) (xy 146.28742 103.836473) (xy 146.179247 104.097626) (xy 146.1741 104.123501) + (xy 146.168953 104.097626) (xy 146.06078 103.836473) (xy 145.903737 103.601441) (xy 145.703859 103.401563) (xy 145.468827 103.24452) + (xy 145.207674 103.136347) (xy 144.930435 103.0812) (xy 144.647765 103.0812) (xy 144.370526 103.136347) (xy 144.109373 103.24452) + (xy 143.874341 103.401563) (xy 143.674463 103.601441) (xy 143.51742 103.836473) (xy 143.409247 104.097626) (xy 143.4041 104.123501) + (xy 143.398953 104.097626) (xy 143.29078 103.836473) (xy 143.133737 103.601441) (xy 142.933859 103.401563) (xy 142.698827 103.24452) + (xy 142.437674 103.136347) (xy 142.160435 103.0812) (xy 141.877765 103.0812) (xy 141.600526 103.136347) (xy 141.339373 103.24452) + (xy 141.104341 103.401563) (xy 140.904463 103.601441) (xy 140.74742 103.836473) (xy 140.639247 104.097626) (xy 140.633587 104.126082) + (xy 140.552703 103.899908) (xy 140.485771 103.774686) (xy 140.241802 103.703103) (xy 139.428705 104.5162) (xy 139.069495 104.5162) + (xy 138.256398 103.703103) (xy 138.012429 103.774686) (xy 137.891529 104.030196) (xy 137.865888 104.132489) (xy 137.858953 104.097626) + (xy 137.75078 103.836473) (xy 137.593737 103.601441) (xy 137.515794 103.523498) (xy 138.436003 103.523498) (xy 139.2491 104.336595) + (xy 140.062197 103.523498) (xy 139.990614 103.279529) (xy 139.735104 103.158629) (xy 139.460916 103.0899) (xy 139.178588 103.075983) + (xy 138.89897 103.117413) (xy 138.632808 103.212597) (xy 138.507586 103.279529) (xy 138.436003 103.523498) (xy 137.515794 103.523498) + (xy 137.393859 103.401563) (xy 137.158827 103.24452) (xy 136.897674 103.136347) (xy 136.620435 103.0812) (xy 136.337765 103.0812) + (xy 136.060526 103.136347) (xy 135.799373 103.24452) (xy 135.564341 103.401563) (xy 135.364463 103.601441) (xy 135.20742 103.836473) + (xy 135.099247 104.097626) (xy 135.093587 104.126082) (xy 135.012703 103.899908) (xy 134.945771 103.774686) (xy 134.701802 103.703103) + (xy 133.888705 104.5162) (xy 133.529495 104.5162) (xy 132.716398 103.703103) (xy 132.472429 103.774686) (xy 132.351529 104.030196) + (xy 132.325888 104.132489) (xy 132.318953 104.097626) (xy 132.21078 103.836473) (xy 132.053737 103.601441) (xy 131.975794 103.523498) + (xy 132.896003 103.523498) (xy 133.7091 104.336595) (xy 134.522197 103.523498) (xy 134.450614 103.279529) (xy 134.195104 103.158629) + (xy 133.920916 103.0899) (xy 133.638588 103.075983) (xy 133.35897 103.117413) (xy 133.092808 103.212597) (xy 132.967586 103.279529) + (xy 132.896003 103.523498) (xy 131.975794 103.523498) (xy 131.853859 103.401563) (xy 131.618827 103.24452) (xy 131.357674 103.136347) + (xy 131.080435 103.0812) (xy 130.797765 103.0812) (xy 130.520526 103.136347) (xy 130.259373 103.24452) (xy 130.024341 103.401563) + (xy 129.824463 103.601441) (xy 129.66742 103.836473) (xy 129.559247 104.097626) (xy 129.553587 104.126082) (xy 129.472703 103.899908) + (xy 129.405771 103.774686) (xy 129.161802 103.703103) (xy 128.348705 104.5162) (xy 127.989495 104.5162) (xy 127.176398 103.703103) + (xy 126.932429 103.774686) (xy 126.811529 104.030196) (xy 126.7428 104.304384) (xy 126.728883 104.586712) (xy 120.236735 104.586712) + (xy 120.622701 104.509939) (xy 121.102241 104.311307) (xy 121.533815 104.022938) (xy 121.900838 103.655915) (xy 121.989316 103.523498) + (xy 127.356003 103.523498) (xy 128.1691 104.336595) (xy 128.982197 103.523498) (xy 128.910614 103.279529) (xy 128.655104 103.158629) + (xy 128.380916 103.0899) (xy 128.098588 103.075983) (xy 127.81897 103.117413) (xy 127.552808 103.212597) (xy 127.427586 103.279529) + (xy 127.356003 103.523498) (xy 121.989316 103.523498) (xy 122.189207 103.224341) (xy 122.387839 102.744801) (xy 122.4891 102.235725) + (xy 122.4891 101.716675) (xy 122.387839 101.207599) (xy 122.25057 100.8762) (xy 125.346028 100.8762) (xy 125.346028 102.4762) + (xy 125.358288 102.600682) (xy 125.394598 102.72038) (xy 125.453563 102.830694) (xy 125.532915 102.927385) (xy 125.629606 103.006737) + (xy 125.73992 103.065702) (xy 125.859618 103.102012) (xy 125.9841 103.114272) (xy 127.5841 103.114272) (xy 127.708582 103.102012) + (xy 127.82828 103.065702) (xy 127.938594 103.006737) (xy 128.035285 102.927385) (xy 128.114637 102.830694) (xy 128.173602 102.72038) + (xy 128.209912 102.600682) (xy 128.222172 102.4762) (xy 128.222172 102.210475) (xy 128.28242 102.355927) (xy 128.439463 102.590959) + (xy 128.639341 102.790837) (xy 128.874373 102.94788) (xy 129.135526 103.056053) (xy 129.412765 103.1112) (xy 129.695435 103.1112) + (xy 129.972674 103.056053) (xy 130.233827 102.94788) (xy 130.468859 102.790837) (xy 130.668737 102.590959) (xy 130.82578 102.355927) + (xy 130.933953 102.094774) (xy 130.9391 102.068899) (xy 130.944247 102.094774) (xy 131.05242 102.355927) (xy 131.209463 102.590959) + (xy 131.409341 102.790837) (xy 131.644373 102.94788) (xy 131.905526 103.056053) (xy 132.182765 103.1112) (xy 132.465435 103.1112) + (xy 132.742674 103.056053) (xy 133.003827 102.94788) (xy 133.238859 102.790837) (xy 133.438737 102.590959) (xy 133.59578 102.355927) + (xy 133.703953 102.094774) (xy 133.7091 102.068899) (xy 133.714247 102.094774) (xy 133.82242 102.355927) (xy 133.979463 102.590959) + (xy 134.179341 102.790837) (xy 134.414373 102.94788) (xy 134.675526 103.056053) (xy 134.952765 103.1112) (xy 135.235435 103.1112) + (xy 135.512674 103.056053) (xy 135.773827 102.94788) (xy 136.008859 102.790837) (xy 136.208737 102.590959) (xy 136.36578 102.355927) + (xy 136.473953 102.094774) (xy 136.4791 102.068899) (xy 136.484247 102.094774) (xy 136.59242 102.355927) (xy 136.749463 102.590959) + (xy 136.949341 102.790837) (xy 137.184373 102.94788) (xy 137.445526 103.056053) (xy 137.722765 103.1112) (xy 138.005435 103.1112) + (xy 138.282674 103.056053) (xy 138.543827 102.94788) (xy 138.778859 102.790837) (xy 138.978737 102.590959) (xy 139.13578 102.355927) + (xy 139.243953 102.094774) (xy 139.2491 102.068899) (xy 139.254247 102.094774) (xy 139.36242 102.355927) (xy 139.519463 102.590959) + (xy 139.719341 102.790837) (xy 139.954373 102.94788) (xy 140.215526 103.056053) (xy 140.492765 103.1112) (xy 140.775435 103.1112) + (xy 141.052674 103.056053) (xy 141.313827 102.94788) (xy 141.548859 102.790837) (xy 141.670794 102.668902) (xy 142.591003 102.668902) + (xy 142.662586 102.912871) (xy 142.918096 103.033771) (xy 143.192284 103.1025) (xy 143.474612 103.116417) (xy 143.75423 103.074987) + (xy 144.020392 102.979803) (xy 144.145614 102.912871) (xy 144.217197 102.668902) (xy 143.4041 101.855805) (xy 142.591003 102.668902) + (xy 141.670794 102.668902) (xy 141.748737 102.590959) (xy 141.90578 102.355927) (xy 142.013953 102.094774) (xy 142.019613 102.066318) + (xy 142.100497 102.292492) (xy 142.167429 102.417714) (xy 142.411398 102.489297) (xy 143.224495 101.6762) (xy 143.583705 101.6762) + (xy 144.396802 102.489297) (xy 144.640771 102.417714) (xy 144.761671 102.162204) (xy 144.787312 102.059911) (xy 144.794247 102.094774) + (xy 144.90242 102.355927) (xy 145.059463 102.590959) (xy 145.259341 102.790837) (xy 145.494373 102.94788) (xy 145.755526 103.056053) + (xy 146.032765 103.1112) (xy 146.315435 103.1112) (xy 146.592674 103.056053) (xy 146.853827 102.94788) (xy 147.088859 102.790837) + (xy 147.210794 102.668902) (xy 148.131003 102.668902) (xy 148.202586 102.912871) (xy 148.458096 103.033771) (xy 148.732284 103.1025) + (xy 149.014612 103.116417) (xy 149.29423 103.074987) (xy 149.560392 102.979803) (xy 149.685614 102.912871) (xy 149.757197 102.668902) + (xy 148.9441 101.855805) (xy 148.131003 102.668902) (xy 147.210794 102.668902) (xy 147.288737 102.590959) (xy 147.44578 102.355927) + (xy 147.553953 102.094774) (xy 147.559613 102.066318) (xy 147.640497 102.292492) (xy 147.707429 102.417714) (xy 147.951398 102.489297) + (xy 148.764495 101.6762) (xy 149.123705 101.6762) (xy 149.936802 102.489297) (xy 150.180771 102.417714) (xy 150.301671 102.162204) + (xy 150.327312 102.059911) (xy 150.334247 102.094774) (xy 150.44242 102.355927) (xy 150.599463 102.590959) (xy 150.799341 102.790837) + (xy 151.034373 102.94788) (xy 151.295526 103.056053) (xy 151.572765 103.1112) (xy 151.855435 103.1112) (xy 152.132674 103.056053) + (xy 152.393827 102.94788) (xy 152.628859 102.790837) (xy 152.828737 102.590959) (xy 152.98578 102.355927) (xy 153.093953 102.094774) + (xy 153.0991 102.068899) (xy 153.104247 102.094774) (xy 153.21242 102.355927) (xy 153.369463 102.590959) (xy 153.569341 102.790837) + (xy 153.804373 102.94788) (xy 154.065526 103.056053) (xy 154.342765 103.1112) (xy 154.625435 103.1112) (xy 154.902674 103.056053) + (xy 155.163827 102.94788) (xy 155.398859 102.790837) (xy 155.598737 102.590959) (xy 155.75578 102.355927) (xy 155.863953 102.094774) + (xy 155.8691 102.068899) (xy 155.874247 102.094774) (xy 155.98242 102.355927) (xy 156.139463 102.590959) (xy 156.339341 102.790837) + (xy 156.574373 102.94788) (xy 156.835526 103.056053) (xy 157.112765 103.1112) (xy 157.395435 103.1112) (xy 157.672674 103.056053) + (xy 157.933827 102.94788) (xy 158.168859 102.790837) (xy 158.368737 102.590959) (xy 158.52578 102.355927) (xy 158.633953 102.094774) + (xy 158.6391 102.068899) (xy 158.644247 102.094774) (xy 158.75242 102.355927) (xy 158.909463 102.590959) (xy 159.109341 102.790837) + (xy 159.344373 102.94788) (xy 159.605526 103.056053) (xy 159.882765 103.1112) (xy 160.165435 103.1112) (xy 160.442674 103.056053) + (xy 160.703827 102.94788) (xy 160.938859 102.790837) (xy 161.138737 102.590959) (xy 161.29578 102.355927) (xy 161.403953 102.094774) + (xy 161.4591 101.817535) (xy 161.4591 101.716675) (xy 164.3191 101.716675) (xy 164.3191 102.235725) (xy 164.420361 102.744801) + (xy 164.618993 103.224341) (xy 164.907362 103.655915) (xy 165.274385 104.022938) (xy 165.705959 104.311307) (xy 166.185499 104.509939) + (xy 166.694575 104.6112) (xy 167.213625 104.6112) (xy 167.722701 104.509939) (xy 168.202241 104.311307) (xy 168.633815 104.022938) + (xy 169.000838 103.655915) (xy 169.289207 103.224341) (xy 169.487839 102.744801) (xy 169.5891 102.235725) (xy 169.5891 101.716675) + (xy 169.487839 101.207599) (xy 169.289207 100.728059) (xy 169.000838 100.296485) (xy 168.633815 99.929462) (xy 168.202241 99.641093) + (xy 167.722701 99.442461) (xy 167.213625 99.3412) (xy 166.694575 99.3412) (xy 166.185499 99.442461) (xy 165.705959 99.641093) + (xy 165.274385 99.929462) (xy 164.907362 100.296485) (xy 164.618993 100.728059) (xy 164.420361 101.207599) (xy 164.3191 101.716675) + (xy 161.4591 101.716675) (xy 161.4591 101.534865) (xy 161.403953 101.257626) (xy 161.29578 100.996473) (xy 161.138737 100.761441) + (xy 160.938859 100.561563) (xy 160.703827 100.40452) (xy 160.442674 100.296347) (xy 160.165435 100.2412) (xy 159.882765 100.2412) + (xy 159.605526 100.296347) (xy 159.344373 100.40452) (xy 159.109341 100.561563) (xy 158.909463 100.761441) (xy 158.75242 100.996473) + (xy 158.644247 101.257626) (xy 158.6391 101.283501) (xy 158.633953 101.257626) (xy 158.52578 100.996473) (xy 158.368737 100.761441) + (xy 158.168859 100.561563) (xy 157.933827 100.40452) (xy 157.672674 100.296347) (xy 157.395435 100.2412) (xy 157.112765 100.2412) + (xy 156.835526 100.296347) (xy 156.574373 100.40452) (xy 156.339341 100.561563) (xy 156.139463 100.761441) (xy 155.98242 100.996473) + (xy 155.874247 101.257626) (xy 155.8691 101.283501) (xy 155.863953 101.257626) (xy 155.75578 100.996473) (xy 155.598737 100.761441) + (xy 155.398859 100.561563) (xy 155.163827 100.40452) (xy 154.902674 100.296347) (xy 154.625435 100.2412) (xy 154.342765 100.2412) + (xy 154.065526 100.296347) (xy 153.804373 100.40452) (xy 153.569341 100.561563) (xy 153.369463 100.761441) (xy 153.21242 100.996473) + (xy 153.104247 101.257626) (xy 153.0991 101.283501) (xy 153.093953 101.257626) (xy 152.98578 100.996473) (xy 152.828737 100.761441) + (xy 152.628859 100.561563) (xy 152.393827 100.40452) (xy 152.132674 100.296347) (xy 151.855435 100.2412) (xy 151.572765 100.2412) + (xy 151.295526 100.296347) (xy 151.034373 100.40452) (xy 150.799341 100.561563) (xy 150.599463 100.761441) (xy 150.44242 100.996473) + (xy 150.334247 101.257626) (xy 150.328587 101.286082) (xy 150.247703 101.059908) (xy 150.180771 100.934686) (xy 149.936802 100.863103) + (xy 149.123705 101.6762) (xy 148.764495 101.6762) (xy 147.951398 100.863103) (xy 147.707429 100.934686) (xy 147.586529 101.190196) + (xy 147.560888 101.292489) (xy 147.553953 101.257626) (xy 147.44578 100.996473) (xy 147.288737 100.761441) (xy 147.210794 100.683498) + (xy 148.131003 100.683498) (xy 148.9441 101.496595) (xy 149.757197 100.683498) (xy 149.685614 100.439529) (xy 149.430104 100.318629) + (xy 149.155916 100.2499) (xy 148.873588 100.235983) (xy 148.59397 100.277413) (xy 148.327808 100.372597) (xy 148.202586 100.439529) + (xy 148.131003 100.683498) (xy 147.210794 100.683498) (xy 147.088859 100.561563) (xy 146.853827 100.40452) (xy 146.592674 100.296347) + (xy 146.315435 100.2412) (xy 146.032765 100.2412) (xy 145.755526 100.296347) (xy 145.494373 100.40452) (xy 145.259341 100.561563) + (xy 145.059463 100.761441) (xy 144.90242 100.996473) (xy 144.794247 101.257626) (xy 144.788587 101.286082) (xy 144.707703 101.059908) + (xy 144.640771 100.934686) (xy 144.396802 100.863103) (xy 143.583705 101.6762) (xy 143.224495 101.6762) (xy 142.411398 100.863103) + (xy 142.167429 100.934686) (xy 142.046529 101.190196) (xy 142.020888 101.292489) (xy 142.013953 101.257626) (xy 141.90578 100.996473) + (xy 141.748737 100.761441) (xy 141.670794 100.683498) (xy 142.591003 100.683498) (xy 143.4041 101.496595) (xy 144.217197 100.683498) + (xy 144.145614 100.439529) (xy 143.890104 100.318629) (xy 143.615916 100.2499) (xy 143.333588 100.235983) (xy 143.05397 100.277413) + (xy 142.787808 100.372597) (xy 142.662586 100.439529) (xy 142.591003 100.683498) (xy 141.670794 100.683498) (xy 141.548859 100.561563) + (xy 141.313827 100.40452) (xy 141.052674 100.296347) (xy 140.775435 100.2412) (xy 140.492765 100.2412) (xy 140.215526 100.296347) + (xy 139.954373 100.40452) (xy 139.719341 100.561563) (xy 139.519463 100.761441) (xy 139.36242 100.996473) (xy 139.254247 101.257626) + (xy 139.2491 101.283501) (xy 139.243953 101.257626) (xy 139.13578 100.996473) (xy 138.978737 100.761441) (xy 138.778859 100.561563) + (xy 138.543827 100.40452) (xy 138.282674 100.296347) (xy 138.005435 100.2412) (xy 137.722765 100.2412) (xy 137.445526 100.296347) + (xy 137.184373 100.40452) (xy 136.949341 100.561563) (xy 136.749463 100.761441) (xy 136.59242 100.996473) (xy 136.484247 101.257626) + (xy 136.4791 101.283501) (xy 136.473953 101.257626) (xy 136.36578 100.996473) (xy 136.208737 100.761441) (xy 136.008859 100.561563) + (xy 135.773827 100.40452) (xy 135.512674 100.296347) (xy 135.235435 100.2412) (xy 134.952765 100.2412) (xy 134.675526 100.296347) + (xy 134.414373 100.40452) (xy 134.179341 100.561563) (xy 133.979463 100.761441) (xy 133.82242 100.996473) (xy 133.714247 101.257626) + (xy 133.7091 101.283501) (xy 133.703953 101.257626) (xy 133.59578 100.996473) (xy 133.438737 100.761441) (xy 133.238859 100.561563) + (xy 133.003827 100.40452) (xy 132.742674 100.296347) (xy 132.465435 100.2412) (xy 132.182765 100.2412) (xy 131.905526 100.296347) + (xy 131.644373 100.40452) (xy 131.409341 100.561563) (xy 131.209463 100.761441) (xy 131.05242 100.996473) (xy 130.944247 101.257626) + (xy 130.9391 101.283501) (xy 130.933953 101.257626) (xy 130.82578 100.996473) (xy 130.668737 100.761441) (xy 130.468859 100.561563) + (xy 130.233827 100.40452) (xy 129.972674 100.296347) (xy 129.695435 100.2412) (xy 129.412765 100.2412) (xy 129.135526 100.296347) + (xy 128.874373 100.40452) (xy 128.639341 100.561563) (xy 128.439463 100.761441) (xy 128.28242 100.996473) (xy 128.222172 101.141925) + (xy 128.222172 100.8762) (xy 128.209912 100.751718) (xy 128.173602 100.63202) (xy 128.114637 100.521706) (xy 128.035285 100.425015) + (xy 127.938594 100.345663) (xy 127.82828 100.286698) (xy 127.708582 100.250388) (xy 127.5841 100.238128) (xy 125.9841 100.238128) + (xy 125.859618 100.250388) (xy 125.73992 100.286698) (xy 125.629606 100.345663) (xy 125.532915 100.425015) (xy 125.453563 100.521706) + (xy 125.394598 100.63202) (xy 125.358288 100.751718) (xy 125.346028 100.8762) (xy 122.25057 100.8762) (xy 122.189207 100.728059) + (xy 121.900838 100.296485) (xy 121.533815 99.929462) (xy 121.102241 99.641093) (xy 120.622701 99.442461) (xy 120.113625 99.3412) + (xy 119.594575 99.3412) (xy 119.085499 99.442461) (xy 118.605959 99.641093) (xy 118.174385 99.929462) (xy 117.807362 100.296485) + (xy 117.518993 100.728059) (xy 117.320361 101.207599) (xy 117.2191 101.716675) (xy 115.1124 101.716675) (xy 115.1124 94.1066) + (xy 170.790001 94.1066) + ) + ) + ) +) diff --git a/hw/loopback/loopback.pro b/hw/loopback/loopback.pro new file mode 100644 index 00000000..152769cb --- /dev/null +++ b/hw/loopback/loopback.pro @@ -0,0 +1,33 @@ +update=22/05/2015 07:44:53 +version=1 +last_client=kicad +[general] +version=1 +RootSch= +BoardNm= +[pcbnew] +version=1 +LastNetListRead= +UseCmpFile=1 +PadDrill=0.600000000000 +PadDrillOvalY=0.600000000000 +PadSizeH=1.500000000000 +PadSizeV=1.500000000000 +PcbTextSizeV=1.500000000000 +PcbTextSizeH=1.500000000000 +PcbTextThickness=0.300000000000 +ModuleTextSizeV=1.000000000000 +ModuleTextSizeH=1.000000000000 +ModuleTextSizeThickness=0.150000000000 +SolderMaskClearance=0.000000000000 +SolderMaskMinWidth=0.000000000000 +DrawSegmentWidth=0.200000000000 +BoardOutlineThickness=0.100000000000 +ModuleOutlineThickness=0.150000000000 +[cvpcb] +version=1 +NetIExt=net +[eeschema] +version=1 +LibDir= +[eeschema/libraries] diff --git a/hw/loopback/loopback.sch b/hw/loopback/loopback.sch new file mode 100644 index 00000000..e2b2ff7f --- /dev/null +++ b/hw/loopback/loopback.sch @@ -0,0 +1,205 @@ +EESchema Schematic File Version 4 +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 Connector:DB25_Male J1 +U 1 1 60A9E3C3 +P 2800 3050 +F 0 "J1" H 2718 1558 50 0000 C CNN +F 1 "DB25_Male" H 2718 1649 50 0000 C CNN +F 2 "Connector_Dsub:DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm" H 2800 3050 50 0001 C CNN +F 3 " ~" H 2800 3050 50 0001 C CNN + 1 2800 3050 + -1 0 0 1 +$EndComp +Wire Wire Line + 3100 4250 4150 4250 +Wire Wire Line + 4150 4250 4150 1850 +Wire Wire Line + 4150 1850 3100 1850 +Text Label 3150 1850 0 50 ~ 0 +REQ +Text Label 3150 4250 0 50 ~ 0 +DB7 +Wire Wire Line + 3100 2050 4050 2050 +Wire Wire Line + 4050 2050 4050 4050 +Wire Wire Line + 4050 4050 3100 4050 +Text Label 3150 2050 0 50 ~ 0 +MSG +Text Label 3150 4050 0 50 ~ 0 +DB6 +Wire Wire Line + 3100 2250 3950 2250 +Wire Wire Line + 3950 2250 3950 3850 +Wire Wire Line + 3950 3850 3100 3850 +Text Label 3150 2250 0 50 ~ 0 +IO +Text Label 3150 3850 0 50 ~ 0 +DB5 +Wire Wire Line + 3100 3650 3850 3650 +Wire Wire Line + 3850 3650 3850 2450 +Wire Wire Line + 3850 2450 3100 2450 +Text Label 3150 2450 0 50 ~ 0 +RST +Wire Wire Line + 3100 2650 3750 2650 +Wire Wire Line + 3750 2650 3750 3250 +Wire Wire Line + 3750 3250 3100 3250 +Text Label 3150 2650 0 50 ~ 0 +ACK +Text Label 3150 3250 0 50 ~ 0 +DB0 +Wire Wire Line + 3100 2150 4000 2150 +Wire Wire Line + 4000 2150 4000 3750 +Wire Wire Line + 4000 3750 3100 3750 +Text Label 3150 3750 0 50 ~ 0 +DB4 +Text Label 3150 3650 0 50 ~ 0 +DB3 +Text Label 3150 2150 0 50 ~ 0 +CD +Wire Wire Line + 3100 2550 3800 2550 +Wire Wire Line + 3800 2550 3800 3550 +Wire Wire Line + 3800 3550 3100 3550 +Text Label 3150 3550 0 50 ~ 0 +DB2 +Text Label 3150 2550 0 50 ~ 0 +ATN +Wire Wire Line + 3100 3350 3700 3350 +Text Label 3150 2850 0 50 ~ 0 +BSY +Text Label 3150 3350 0 50 ~ 0 +DB1 +Text Label 3150 3150 0 50 ~ 0 +DBP +Wire Wire Line + 3100 3150 3600 3150 +Wire Wire Line + 3600 3150 3600 2850 +Wire Wire Line + 3600 2850 3100 2850 +Wire Wire Line + 3100 2950 3700 2950 +Wire Wire Line + 3700 2950 3700 3350 +Text Label 3150 2950 0 50 ~ 0 +SEL +$Comp +L power:GND #PWR0101 +U 1 1 60AAE0F5 +P 3100 4150 +F 0 "#PWR0101" H 3100 3900 50 0001 C CNN +F 1 "GND" V 3105 4022 50 0000 R CNN +F 2 "" H 3100 4150 50 0001 C CNN +F 3 "" H 3100 4150 50 0001 C CNN + 1 3100 4150 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0102 +U 1 1 60AAEBA7 +P 3100 3950 +F 0 "#PWR0102" H 3100 3700 50 0001 C CNN +F 1 "GND" V 3105 3822 50 0000 R CNN +F 2 "" H 3100 3950 50 0001 C CNN +F 3 "" H 3100 3950 50 0001 C CNN + 1 3100 3950 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0103 +U 1 1 60AAF1B2 +P 3100 3450 +F 0 "#PWR0103" H 3100 3200 50 0001 C CNN +F 1 "GND" V 3105 3322 50 0000 R CNN +F 2 "" H 3100 3450 50 0001 C CNN +F 3 "" H 3100 3450 50 0001 C CNN + 1 3100 3450 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0104 +U 1 1 60AAF986 +P 3100 3050 +F 0 "#PWR0104" H 3100 2800 50 0001 C CNN +F 1 "GND" V 3105 2922 50 0000 R CNN +F 2 "" H 3100 3050 50 0001 C CNN +F 3 "" H 3100 3050 50 0001 C CNN + 1 3100 3050 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0105 +U 1 1 60AB006C +P 3100 2750 +F 0 "#PWR0105" H 3100 2500 50 0001 C CNN +F 1 "GND" V 3105 2622 50 0000 R CNN +F 2 "" H 3100 2750 50 0001 C CNN +F 3 "" H 3100 2750 50 0001 C CNN + 1 3100 2750 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0106 +U 1 1 60AB09A4 +P 3100 2350 +F 0 "#PWR0106" H 3100 2100 50 0001 C CNN +F 1 "GND" V 3105 2222 50 0000 R CNN +F 2 "" H 3100 2350 50 0001 C CNN +F 3 "" H 3100 2350 50 0001 C CNN + 1 3100 2350 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0107 +U 1 1 60AB12AA +P 3100 1950 +F 0 "#PWR0107" H 3100 1700 50 0001 C CNN +F 1 "GND" V 3105 1822 50 0000 R CNN +F 2 "" H 3100 1950 50 0001 C CNN +F 3 "" H 3100 1950 50 0001 C CNN + 1 3100 1950 + 0 -1 -1 0 +$EndComp +$Comp +L Connector_Generic:Conn_02x25_Counter_Clockwise J2 +U 1 1 60AB1BAF +P 7000 3050 +F 0 "J2" H 7050 4467 50 0000 C CNN +F 1 "Conn_02x25_Counter_Clockwise" H 7050 4376 50 0000 C CNN +F 2 "Connector_PinSocket_2.54mm:PinSocket_2x24_P2.54mm_Vertical" H 7000 3050 50 0001 C CNN +F 3 "~" H 7000 3050 50 0001 C CNN + 1 7000 3050 + 1 0 0 -1 +$EndComp +$EndSCHEMATC diff --git a/hw/loopback/loopback.sch-bak b/hw/loopback/loopback.sch-bak new file mode 100644 index 00000000..e1f50597 --- /dev/null +++ b/hw/loopback/loopback.sch-bak @@ -0,0 +1,205 @@ +EESchema Schematic File Version 4 +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 Connector:DB25_Male J1 +U 1 1 60A9E3C3 +P 2800 3050 +F 0 "J1" H 2718 1558 50 0000 C CNN +F 1 "DB25_Male" H 2718 1649 50 0000 C CNN +F 2 "Connector_Dsub:DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm" H 2800 3050 50 0001 C CNN +F 3 " ~" H 2800 3050 50 0001 C CNN + 1 2800 3050 + -1 0 0 1 +$EndComp +Wire Wire Line + 3100 4250 4150 4250 +Wire Wire Line + 4150 4250 4150 1850 +Wire Wire Line + 4150 1850 3100 1850 +Text Label 3150 1850 0 50 ~ 0 +REQ +Text Label 3150 4250 0 50 ~ 0 +DB7 +Wire Wire Line + 3100 2050 4050 2050 +Wire Wire Line + 4050 2050 4050 4050 +Wire Wire Line + 4050 4050 3100 4050 +Text Label 3150 2050 0 50 ~ 0 +MSG +Text Label 3150 4050 0 50 ~ 0 +DB6 +Wire Wire Line + 3100 2250 3950 2250 +Wire Wire Line + 3950 2250 3950 3850 +Wire Wire Line + 3950 3850 3100 3850 +Text Label 3150 2250 0 50 ~ 0 +IO +Text Label 3150 3850 0 50 ~ 0 +DB5 +Wire Wire Line + 3100 3650 3850 3650 +Wire Wire Line + 3850 3650 3850 2450 +Wire Wire Line + 3850 2450 3100 2450 +Text Label 3150 2450 0 50 ~ 0 +RST +Wire Wire Line + 3100 2650 3750 2650 +Wire Wire Line + 3750 2650 3750 3250 +Wire Wire Line + 3750 3250 3100 3250 +Text Label 3150 2650 0 50 ~ 0 +ACK +Text Label 3150 3250 0 50 ~ 0 +DB0 +Wire Wire Line + 3100 2150 4000 2150 +Wire Wire Line + 4000 2150 4000 3750 +Wire Wire Line + 4000 3750 3100 3750 +Text Label 3150 3750 0 50 ~ 0 +DB4 +Text Label 3150 3650 0 50 ~ 0 +DB3 +Text Label 3150 2150 0 50 ~ 0 +CD +Wire Wire Line + 3100 2550 3800 2550 +Wire Wire Line + 3800 2550 3800 3550 +Wire Wire Line + 3800 3550 3100 3550 +Text Label 3150 3550 0 50 ~ 0 +DB2 +Text Label 3150 2550 0 50 ~ 0 +ATN +Wire Wire Line + 3100 3350 3700 3350 +Text Label 3150 2850 0 50 ~ 0 +BSY +Text Label 3150 3350 0 50 ~ 0 +DB1 +Text Label 3150 3150 0 50 ~ 0 +DBP +Wire Wire Line + 3100 3150 3600 3150 +Wire Wire Line + 3600 3150 3600 2850 +Wire Wire Line + 3600 2850 3100 2850 +Wire Wire Line + 3100 2950 3700 2950 +Wire Wire Line + 3700 2950 3700 3350 +Text Label 3150 2950 0 50 ~ 0 +SEL +$Comp +L power:GND #PWR0101 +U 1 1 60AAE0F5 +P 3100 4150 +F 0 "#PWR0101" H 3100 3900 50 0001 C CNN +F 1 "GND" V 3105 4022 50 0000 R CNN +F 2 "" H 3100 4150 50 0001 C CNN +F 3 "" H 3100 4150 50 0001 C CNN + 1 3100 4150 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0102 +U 1 1 60AAEBA7 +P 3100 3950 +F 0 "#PWR0102" H 3100 3700 50 0001 C CNN +F 1 "GND" V 3105 3822 50 0000 R CNN +F 2 "" H 3100 3950 50 0001 C CNN +F 3 "" H 3100 3950 50 0001 C CNN + 1 3100 3950 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0103 +U 1 1 60AAF1B2 +P 3100 3450 +F 0 "#PWR0103" H 3100 3200 50 0001 C CNN +F 1 "GND" V 3105 3322 50 0000 R CNN +F 2 "" H 3100 3450 50 0001 C CNN +F 3 "" H 3100 3450 50 0001 C CNN + 1 3100 3450 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0104 +U 1 1 60AAF986 +P 3100 3050 +F 0 "#PWR0104" H 3100 2800 50 0001 C CNN +F 1 "GND" V 3105 2922 50 0000 R CNN +F 2 "" H 3100 3050 50 0001 C CNN +F 3 "" H 3100 3050 50 0001 C CNN + 1 3100 3050 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0105 +U 1 1 60AB006C +P 3100 2750 +F 0 "#PWR0105" H 3100 2500 50 0001 C CNN +F 1 "GND" V 3105 2622 50 0000 R CNN +F 2 "" H 3100 2750 50 0001 C CNN +F 3 "" H 3100 2750 50 0001 C CNN + 1 3100 2750 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0106 +U 1 1 60AB09A4 +P 3100 2350 +F 0 "#PWR0106" H 3100 2100 50 0001 C CNN +F 1 "GND" V 3105 2222 50 0000 R CNN +F 2 "" H 3100 2350 50 0001 C CNN +F 3 "" H 3100 2350 50 0001 C CNN + 1 3100 2350 + 0 -1 -1 0 +$EndComp +$Comp +L power:GND #PWR0107 +U 1 1 60AB12AA +P 3100 1950 +F 0 "#PWR0107" H 3100 1700 50 0001 C CNN +F 1 "GND" V 3105 1822 50 0000 R CNN +F 2 "" H 3100 1950 50 0001 C CNN +F 3 "" H 3100 1950 50 0001 C CNN + 1 3100 1950 + 0 -1 -1 0 +$EndComp +$Comp +L Connector_Generic:Conn_02x25_Counter_Clockwise J? +U 1 1 60AB1BAF +P 7000 3050 +F 0 "J?" H 7050 4467 50 0000 C CNN +F 1 "Conn_02x25_Counter_Clockwise" H 7050 4376 50 0000 C CNN +F 2 "Connector_PinSocket_2.54mm:PinSocket_2x24_P2.54mm_Vertical" H 7000 3050 50 0001 C CNN +F 3 "~" H 7000 3050 50 0001 C CNN + 1 7000 3050 + 1 0 0 -1 +$EndComp +$EndSCHEMATC From b7a9f6baddce106829b999cbd0388bd096c0a192 Mon Sep 17 00:00:00 2001 From: Tony Kuker Date: Sat, 22 May 2021 10:48:18 -0500 Subject: [PATCH 4/4] Remove schematic --- hw/loopback/fp-info-cache | 1947 ---------------------------- hw/loopback/loopback-cache.lib | 222 ---- hw/loopback/loopback.kicad_pcb | 974 -------------- hw/loopback/loopback.kicad_pcb-bak | 748 ----------- hw/loopback/loopback.pro | 33 - hw/loopback/loopback.sch | 205 --- hw/loopback/loopback.sch-bak | 205 --- 7 files changed, 4334 deletions(-) delete mode 100644 hw/loopback/fp-info-cache delete mode 100644 hw/loopback/loopback-cache.lib delete mode 100644 hw/loopback/loopback.kicad_pcb delete mode 100644 hw/loopback/loopback.kicad_pcb-bak delete mode 100644 hw/loopback/loopback.pro delete mode 100644 hw/loopback/loopback.sch delete mode 100644 hw/loopback/loopback.sch-bak diff --git a/hw/loopback/fp-info-cache b/hw/loopback/fp-info-cache deleted file mode 100644 index 71b3df40..00000000 --- a/hw/loopback/fp-info-cache +++ /dev/null @@ -1,1947 +0,0 @@ -445178407244460 -Connector_PinSocket_2.54mm -PinSocket_1x01_P2.54mm_Horizontal -Through hole angled socket strip, 1x01, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x01 2.54mm single row -0 -1 -1 -Connector_PinSocket_2.54mm -PinSocket_1x01_P2.54mm_Vertical -Through hole straight socket strip, 1x01, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x01 2.54mm single row -0 -1 -1 -Connector_PinSocket_2.54mm -PinSocket_1x02_P2.54mm_Horizontal -Through hole angled socket strip, 1x02, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x02 2.54mm single row -0 -2 -2 -Connector_PinSocket_2.54mm -PinSocket_1x02_P2.54mm_Vertical -Through hole straight socket strip, 1x02, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x02 2.54mm single row -0 -2 -2 -Connector_PinSocket_2.54mm -PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x02 2.54mm single row style1 pin1 left -0 -2 -2 -Connector_PinSocket_2.54mm -PinSocket_1x02_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x02, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x02 2.54mm single row style2 pin1 right -0 -2 -2 -Connector_PinSocket_2.54mm -PinSocket_1x03_P2.54mm_Horizontal -Through hole angled socket strip, 1x03, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x03 2.54mm single row -0 -3 -3 -Connector_PinSocket_2.54mm -PinSocket_1x03_P2.54mm_Vertical -Through hole straight socket strip, 1x03, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x03 2.54mm single row -0 -3 -3 -Connector_PinSocket_2.54mm -PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x03 2.54mm single row style1 pin1 left -0 -3 -3 -Connector_PinSocket_2.54mm -PinSocket_1x03_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x03, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x03 2.54mm single row style2 pin1 right -0 -3 -3 -Connector_PinSocket_2.54mm -PinSocket_1x04_P2.54mm_Horizontal -Through hole angled socket strip, 1x04, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x04 2.54mm single row -0 -4 -4 -Connector_PinSocket_2.54mm -PinSocket_1x04_P2.54mm_Vertical -Through hole straight socket strip, 1x04, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x04 2.54mm single row -0 -4 -4 -Connector_PinSocket_2.54mm -PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x04 2.54mm single row style1 pin1 left -0 -4 -4 -Connector_PinSocket_2.54mm -PinSocket_1x04_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x04, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x04 2.54mm single row style2 pin1 right -0 -4 -4 -Connector_PinSocket_2.54mm -PinSocket_1x05_P2.54mm_Horizontal -Through hole angled socket strip, 1x05, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x05 2.54mm single row -0 -5 -5 -Connector_PinSocket_2.54mm -PinSocket_1x05_P2.54mm_Vertical -Through hole straight socket strip, 1x05, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x05 2.54mm single row -0 -5 -5 -Connector_PinSocket_2.54mm -PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x05 2.54mm single row style1 pin1 left -0 -5 -5 -Connector_PinSocket_2.54mm -PinSocket_1x05_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x05, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x05 2.54mm single row style2 pin1 right -0 -5 -5 -Connector_PinSocket_2.54mm -PinSocket_1x06_P2.54mm_Horizontal -Through hole angled socket strip, 1x06, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x06 2.54mm single row -0 -6 -6 -Connector_PinSocket_2.54mm -PinSocket_1x06_P2.54mm_Vertical -Through hole straight socket strip, 1x06, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x06 2.54mm single row -0 -6 -6 -Connector_PinSocket_2.54mm -PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x06 2.54mm single row style1 pin1 left -0 -6 -6 -Connector_PinSocket_2.54mm -PinSocket_1x06_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x06, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x06 2.54mm single row style2 pin1 right -0 -6 -6 -Connector_PinSocket_2.54mm -PinSocket_1x07_P2.54mm_Horizontal -Through hole angled socket strip, 1x07, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x07 2.54mm single row -0 -7 -7 -Connector_PinSocket_2.54mm -PinSocket_1x07_P2.54mm_Vertical -Through hole straight socket strip, 1x07, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x07 2.54mm single row -0 -7 -7 -Connector_PinSocket_2.54mm -PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x07 2.54mm single row style1 pin1 left -0 -7 -7 -Connector_PinSocket_2.54mm -PinSocket_1x07_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x07, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x07 2.54mm single row style2 pin1 right -0 -7 -7 -Connector_PinSocket_2.54mm -PinSocket_1x08_P2.54mm_Horizontal -Through hole angled socket strip, 1x08, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x08 2.54mm single row -0 -8 -8 -Connector_PinSocket_2.54mm -PinSocket_1x08_P2.54mm_Vertical -Through hole straight socket strip, 1x08, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x08 2.54mm single row -0 -8 -8 -Connector_PinSocket_2.54mm -PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x08 2.54mm single row style1 pin1 left -0 -8 -8 -Connector_PinSocket_2.54mm -PinSocket_1x08_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x08, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x08 2.54mm single row style2 pin1 right -0 -8 -8 -Connector_PinSocket_2.54mm -PinSocket_1x09_P2.54mm_Horizontal -Through hole angled socket strip, 1x09, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x09 2.54mm single row -0 -9 -9 -Connector_PinSocket_2.54mm -PinSocket_1x09_P2.54mm_Vertical -Through hole straight socket strip, 1x09, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x09 2.54mm single row -0 -9 -9 -Connector_PinSocket_2.54mm -PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x09 2.54mm single row style1 pin1 left -0 -9 -9 -Connector_PinSocket_2.54mm -PinSocket_1x09_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x09, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x09 2.54mm single row style2 pin1 right -0 -9 -9 -Connector_PinSocket_2.54mm -PinSocket_1x10_P2.54mm_Horizontal -Through hole angled socket strip, 1x10, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x10 2.54mm single row -0 -10 -10 -Connector_PinSocket_2.54mm -PinSocket_1x10_P2.54mm_Vertical -Through hole straight socket strip, 1x10, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x10 2.54mm single row -0 -10 -10 -Connector_PinSocket_2.54mm -PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x10 2.54mm single row style1 pin1 left -0 -10 -10 -Connector_PinSocket_2.54mm -PinSocket_1x10_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x10, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x10 2.54mm single row style2 pin1 right -0 -10 -10 -Connector_PinSocket_2.54mm -PinSocket_1x11_P2.54mm_Horizontal -Through hole angled socket strip, 1x11, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x11 2.54mm single row -0 -11 -11 -Connector_PinSocket_2.54mm -PinSocket_1x11_P2.54mm_Vertical -Through hole straight socket strip, 1x11, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x11 2.54mm single row -0 -11 -11 -Connector_PinSocket_2.54mm -PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x11 2.54mm single row style1 pin1 left -0 -11 -11 -Connector_PinSocket_2.54mm -PinSocket_1x11_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x11, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x11 2.54mm single row style2 pin1 right -0 -11 -11 -Connector_PinSocket_2.54mm -PinSocket_1x12_P2.54mm_Horizontal -Through hole angled socket strip, 1x12, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x12 2.54mm single row -0 -12 -12 -Connector_PinSocket_2.54mm -PinSocket_1x12_P2.54mm_Vertical -Through hole straight socket strip, 1x12, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x12 2.54mm single row -0 -12 -12 -Connector_PinSocket_2.54mm -PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x12 2.54mm single row style1 pin1 left -0 -12 -12 -Connector_PinSocket_2.54mm -PinSocket_1x12_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x12, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x12 2.54mm single row style2 pin1 right -0 -12 -12 -Connector_PinSocket_2.54mm -PinSocket_1x13_P2.54mm_Horizontal -Through hole angled socket strip, 1x13, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x13 2.54mm single row -0 -13 -13 -Connector_PinSocket_2.54mm -PinSocket_1x13_P2.54mm_Vertical -Through hole straight socket strip, 1x13, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x13 2.54mm single row -0 -13 -13 -Connector_PinSocket_2.54mm -PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x13 2.54mm single row style1 pin1 left -0 -13 -13 -Connector_PinSocket_2.54mm -PinSocket_1x13_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x13, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x13 2.54mm single row style2 pin1 right -0 -13 -13 -Connector_PinSocket_2.54mm -PinSocket_1x14_P2.54mm_Horizontal -Through hole angled socket strip, 1x14, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x14 2.54mm single row -0 -14 -14 -Connector_PinSocket_2.54mm -PinSocket_1x14_P2.54mm_Vertical -Through hole straight socket strip, 1x14, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x14 2.54mm single row -0 -14 -14 -Connector_PinSocket_2.54mm -PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x14 2.54mm single row style1 pin1 left -0 -14 -14 -Connector_PinSocket_2.54mm -PinSocket_1x14_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x14, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x14 2.54mm single row style2 pin1 right -0 -14 -14 -Connector_PinSocket_2.54mm -PinSocket_1x15_P2.54mm_Horizontal -Through hole angled socket strip, 1x15, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x15 2.54mm single row -0 -15 -15 -Connector_PinSocket_2.54mm -PinSocket_1x15_P2.54mm_Vertical -Through hole straight socket strip, 1x15, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x15 2.54mm single row -0 -15 -15 -Connector_PinSocket_2.54mm -PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x15 2.54mm single row style1 pin1 left -0 -15 -15 -Connector_PinSocket_2.54mm -PinSocket_1x15_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x15, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x15 2.54mm single row style2 pin1 right -0 -15 -15 -Connector_PinSocket_2.54mm -PinSocket_1x16_P2.54mm_Horizontal -Through hole angled socket strip, 1x16, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x16 2.54mm single row -0 -16 -16 -Connector_PinSocket_2.54mm -PinSocket_1x16_P2.54mm_Vertical -Through hole straight socket strip, 1x16, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x16 2.54mm single row -0 -16 -16 -Connector_PinSocket_2.54mm -PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x16 2.54mm single row style1 pin1 left -0 -16 -16 -Connector_PinSocket_2.54mm -PinSocket_1x16_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x16, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x16 2.54mm single row style2 pin1 right -0 -16 -16 -Connector_PinSocket_2.54mm -PinSocket_1x17_P2.54mm_Horizontal -Through hole angled socket strip, 1x17, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x17 2.54mm single row -0 -17 -17 -Connector_PinSocket_2.54mm -PinSocket_1x17_P2.54mm_Vertical -Through hole straight socket strip, 1x17, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x17 2.54mm single row -0 -17 -17 -Connector_PinSocket_2.54mm -PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x17 2.54mm single row style1 pin1 left -0 -17 -17 -Connector_PinSocket_2.54mm -PinSocket_1x17_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x17, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x17 2.54mm single row style2 pin1 right -0 -17 -17 -Connector_PinSocket_2.54mm -PinSocket_1x18_P2.54mm_Horizontal -Through hole angled socket strip, 1x18, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x18 2.54mm single row -0 -18 -18 -Connector_PinSocket_2.54mm -PinSocket_1x18_P2.54mm_Vertical -Through hole straight socket strip, 1x18, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x18 2.54mm single row -0 -18 -18 -Connector_PinSocket_2.54mm -PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x18 2.54mm single row style1 pin1 left -0 -18 -18 -Connector_PinSocket_2.54mm -PinSocket_1x18_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x18, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x18 2.54mm single row style2 pin1 right -0 -18 -18 -Connector_PinSocket_2.54mm -PinSocket_1x19_P2.54mm_Horizontal -Through hole angled socket strip, 1x19, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x19 2.54mm single row -0 -19 -19 -Connector_PinSocket_2.54mm -PinSocket_1x19_P2.54mm_Vertical -Through hole straight socket strip, 1x19, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x19 2.54mm single row -0 -19 -19 -Connector_PinSocket_2.54mm -PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x19 2.54mm single row style1 pin1 left -0 -19 -19 -Connector_PinSocket_2.54mm -PinSocket_1x19_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x19, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x19 2.54mm single row style2 pin1 right -0 -19 -19 -Connector_PinSocket_2.54mm -PinSocket_1x20_P2.54mm_Horizontal -Through hole angled socket strip, 1x20, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x20 2.54mm single row -0 -20 -20 -Connector_PinSocket_2.54mm -PinSocket_1x20_P2.54mm_Vertical -Through hole straight socket strip, 1x20, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x20 2.54mm single row -0 -20 -20 -Connector_PinSocket_2.54mm -PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x20 2.54mm single row style1 pin1 left -0 -20 -20 -Connector_PinSocket_2.54mm -PinSocket_1x20_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x20, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x20 2.54mm single row style2 pin1 right -0 -20 -20 -Connector_PinSocket_2.54mm -PinSocket_1x21_P2.54mm_Horizontal -Through hole angled socket strip, 1x21, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x21 2.54mm single row -0 -21 -21 -Connector_PinSocket_2.54mm -PinSocket_1x21_P2.54mm_Vertical -Through hole straight socket strip, 1x21, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x21 2.54mm single row -0 -21 -21 -Connector_PinSocket_2.54mm -PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x21 2.54mm single row style1 pin1 left -0 -21 -21 -Connector_PinSocket_2.54mm -PinSocket_1x21_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x21, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x21 2.54mm single row style2 pin1 right -0 -21 -21 -Connector_PinSocket_2.54mm -PinSocket_1x22_P2.54mm_Horizontal -Through hole angled socket strip, 1x22, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x22 2.54mm single row -0 -22 -22 -Connector_PinSocket_2.54mm -PinSocket_1x22_P2.54mm_Vertical -Through hole straight socket strip, 1x22, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x22 2.54mm single row -0 -22 -22 -Connector_PinSocket_2.54mm -PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x22 2.54mm single row style1 pin1 left -0 -22 -22 -Connector_PinSocket_2.54mm -PinSocket_1x22_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x22, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x22 2.54mm single row style2 pin1 right -0 -22 -22 -Connector_PinSocket_2.54mm -PinSocket_1x23_P2.54mm_Horizontal -Through hole angled socket strip, 1x23, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x23 2.54mm single row -0 -23 -23 -Connector_PinSocket_2.54mm -PinSocket_1x23_P2.54mm_Vertical -Through hole straight socket strip, 1x23, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x23 2.54mm single row -0 -23 -23 -Connector_PinSocket_2.54mm -PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x23 2.54mm single row style1 pin1 left -0 -23 -23 -Connector_PinSocket_2.54mm -PinSocket_1x23_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x23, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x23 2.54mm single row style2 pin1 right -0 -23 -23 -Connector_PinSocket_2.54mm -PinSocket_1x24_P2.54mm_Horizontal -Through hole angled socket strip, 1x24, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x24 2.54mm single row -0 -24 -24 -Connector_PinSocket_2.54mm -PinSocket_1x24_P2.54mm_Vertical -Through hole straight socket strip, 1x24, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x24 2.54mm single row -0 -24 -24 -Connector_PinSocket_2.54mm -PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x24 2.54mm single row style1 pin1 left -0 -24 -24 -Connector_PinSocket_2.54mm -PinSocket_1x24_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x24, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x24 2.54mm single row style2 pin1 right -0 -24 -24 -Connector_PinSocket_2.54mm -PinSocket_1x25_P2.54mm_Horizontal -Through hole angled socket strip, 1x25, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x25 2.54mm single row -0 -25 -25 -Connector_PinSocket_2.54mm -PinSocket_1x25_P2.54mm_Vertical -Through hole straight socket strip, 1x25, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x25 2.54mm single row -0 -25 -25 -Connector_PinSocket_2.54mm -PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x25 2.54mm single row style1 pin1 left -0 -25 -25 -Connector_PinSocket_2.54mm -PinSocket_1x25_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x25, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x25 2.54mm single row style2 pin1 right -0 -25 -25 -Connector_PinSocket_2.54mm -PinSocket_1x26_P2.54mm_Horizontal -Through hole angled socket strip, 1x26, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x26 2.54mm single row -0 -26 -26 -Connector_PinSocket_2.54mm -PinSocket_1x26_P2.54mm_Vertical -Through hole straight socket strip, 1x26, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x26 2.54mm single row -0 -26 -26 -Connector_PinSocket_2.54mm -PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x26 2.54mm single row style1 pin1 left -0 -26 -26 -Connector_PinSocket_2.54mm -PinSocket_1x26_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x26, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x26 2.54mm single row style2 pin1 right -0 -26 -26 -Connector_PinSocket_2.54mm -PinSocket_1x27_P2.54mm_Horizontal -Through hole angled socket strip, 1x27, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x27 2.54mm single row -0 -27 -27 -Connector_PinSocket_2.54mm -PinSocket_1x27_P2.54mm_Vertical -Through hole straight socket strip, 1x27, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x27 2.54mm single row -0 -27 -27 -Connector_PinSocket_2.54mm -PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x27 2.54mm single row style1 pin1 left -0 -27 -27 -Connector_PinSocket_2.54mm -PinSocket_1x27_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x27, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x27 2.54mm single row style2 pin1 right -0 -27 -27 -Connector_PinSocket_2.54mm -PinSocket_1x28_P2.54mm_Horizontal -Through hole angled socket strip, 1x28, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x28 2.54mm single row -0 -28 -28 -Connector_PinSocket_2.54mm -PinSocket_1x28_P2.54mm_Vertical -Through hole straight socket strip, 1x28, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x28 2.54mm single row -0 -28 -28 -Connector_PinSocket_2.54mm -PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x28 2.54mm single row style1 pin1 left -0 -28 -28 -Connector_PinSocket_2.54mm -PinSocket_1x28_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x28, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x28 2.54mm single row style2 pin1 right -0 -28 -28 -Connector_PinSocket_2.54mm -PinSocket_1x29_P2.54mm_Horizontal -Through hole angled socket strip, 1x29, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x29 2.54mm single row -0 -29 -29 -Connector_PinSocket_2.54mm -PinSocket_1x29_P2.54mm_Vertical -Through hole straight socket strip, 1x29, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x29 2.54mm single row -0 -29 -29 -Connector_PinSocket_2.54mm -PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x29 2.54mm single row style1 pin1 left -0 -29 -29 -Connector_PinSocket_2.54mm -PinSocket_1x29_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x29, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x29 2.54mm single row style2 pin1 right -0 -29 -29 -Connector_PinSocket_2.54mm -PinSocket_1x30_P2.54mm_Horizontal -Through hole angled socket strip, 1x30, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x30 2.54mm single row -0 -30 -30 -Connector_PinSocket_2.54mm -PinSocket_1x30_P2.54mm_Vertical -Through hole straight socket strip, 1x30, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x30 2.54mm single row -0 -30 -30 -Connector_PinSocket_2.54mm -PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x30 2.54mm single row style1 pin1 left -0 -30 -30 -Connector_PinSocket_2.54mm -PinSocket_1x30_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x30, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x30 2.54mm single row style2 pin1 right -0 -30 -30 -Connector_PinSocket_2.54mm -PinSocket_1x31_P2.54mm_Horizontal -Through hole angled socket strip, 1x31, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x31 2.54mm single row -0 -31 -31 -Connector_PinSocket_2.54mm -PinSocket_1x31_P2.54mm_Vertical -Through hole straight socket strip, 1x31, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x31 2.54mm single row -0 -31 -31 -Connector_PinSocket_2.54mm -PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x31 2.54mm single row style1 pin1 left -0 -31 -31 -Connector_PinSocket_2.54mm -PinSocket_1x31_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x31, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x31 2.54mm single row style2 pin1 right -0 -31 -31 -Connector_PinSocket_2.54mm -PinSocket_1x32_P2.54mm_Horizontal -Through hole angled socket strip, 1x32, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x32 2.54mm single row -0 -32 -32 -Connector_PinSocket_2.54mm -PinSocket_1x32_P2.54mm_Vertical -Through hole straight socket strip, 1x32, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x32 2.54mm single row -0 -32 -32 -Connector_PinSocket_2.54mm -PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x32 2.54mm single row style1 pin1 left -0 -32 -32 -Connector_PinSocket_2.54mm -PinSocket_1x32_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x32, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x32 2.54mm single row style2 pin1 right -0 -32 -32 -Connector_PinSocket_2.54mm -PinSocket_1x33_P2.54mm_Horizontal -Through hole angled socket strip, 1x33, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x33 2.54mm single row -0 -33 -33 -Connector_PinSocket_2.54mm -PinSocket_1x33_P2.54mm_Vertical -Through hole straight socket strip, 1x33, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x33 2.54mm single row -0 -33 -33 -Connector_PinSocket_2.54mm -PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x33 2.54mm single row style1 pin1 left -0 -33 -33 -Connector_PinSocket_2.54mm -PinSocket_1x33_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x33, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x33 2.54mm single row style2 pin1 right -0 -33 -33 -Connector_PinSocket_2.54mm -PinSocket_1x34_P2.54mm_Horizontal -Through hole angled socket strip, 1x34, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x34 2.54mm single row -0 -34 -34 -Connector_PinSocket_2.54mm -PinSocket_1x34_P2.54mm_Vertical -Through hole straight socket strip, 1x34, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x34 2.54mm single row -0 -34 -34 -Connector_PinSocket_2.54mm -PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x34 2.54mm single row style1 pin1 left -0 -34 -34 -Connector_PinSocket_2.54mm -PinSocket_1x34_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x34, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x34 2.54mm single row style2 pin1 right -0 -34 -34 -Connector_PinSocket_2.54mm -PinSocket_1x35_P2.54mm_Horizontal -Through hole angled socket strip, 1x35, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x35 2.54mm single row -0 -35 -35 -Connector_PinSocket_2.54mm -PinSocket_1x35_P2.54mm_Vertical -Through hole straight socket strip, 1x35, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x35 2.54mm single row -0 -35 -35 -Connector_PinSocket_2.54mm -PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x35 2.54mm single row style1 pin1 left -0 -35 -35 -Connector_PinSocket_2.54mm -PinSocket_1x35_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x35, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x35 2.54mm single row style2 pin1 right -0 -35 -35 -Connector_PinSocket_2.54mm -PinSocket_1x36_P2.54mm_Horizontal -Through hole angled socket strip, 1x36, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x36 2.54mm single row -0 -36 -36 -Connector_PinSocket_2.54mm -PinSocket_1x36_P2.54mm_Vertical -Through hole straight socket strip, 1x36, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x36 2.54mm single row -0 -36 -36 -Connector_PinSocket_2.54mm -PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x36 2.54mm single row style1 pin1 left -0 -36 -36 -Connector_PinSocket_2.54mm -PinSocket_1x36_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x36, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x36 2.54mm single row style2 pin1 right -0 -36 -36 -Connector_PinSocket_2.54mm -PinSocket_1x37_P2.54mm_Horizontal -Through hole angled socket strip, 1x37, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x37 2.54mm single row -0 -37 -37 -Connector_PinSocket_2.54mm -PinSocket_1x37_P2.54mm_Vertical -Through hole straight socket strip, 1x37, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x37 2.54mm single row -0 -37 -37 -Connector_PinSocket_2.54mm -PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x37 2.54mm single row style1 pin1 left -0 -37 -37 -Connector_PinSocket_2.54mm -PinSocket_1x37_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x37, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x37 2.54mm single row style2 pin1 right -0 -37 -37 -Connector_PinSocket_2.54mm -PinSocket_1x38_P2.54mm_Horizontal -Through hole angled socket strip, 1x38, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x38 2.54mm single row -0 -38 -38 -Connector_PinSocket_2.54mm -PinSocket_1x38_P2.54mm_Vertical -Through hole straight socket strip, 1x38, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x38 2.54mm single row -0 -38 -38 -Connector_PinSocket_2.54mm -PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x38 2.54mm single row style1 pin1 left -0 -38 -38 -Connector_PinSocket_2.54mm -PinSocket_1x38_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x38, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x38 2.54mm single row style2 pin1 right -0 -38 -38 -Connector_PinSocket_2.54mm -PinSocket_1x39_P2.54mm_Horizontal -Through hole angled socket strip, 1x39, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x39 2.54mm single row -0 -39 -39 -Connector_PinSocket_2.54mm -PinSocket_1x39_P2.54mm_Vertical -Through hole straight socket strip, 1x39, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x39 2.54mm single row -0 -39 -39 -Connector_PinSocket_2.54mm -PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x39 2.54mm single row style1 pin1 left -0 -39 -39 -Connector_PinSocket_2.54mm -PinSocket_1x39_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x39, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x39 2.54mm single row style2 pin1 right -0 -39 -39 -Connector_PinSocket_2.54mm -PinSocket_1x40_P2.54mm_Horizontal -Through hole angled socket strip, 1x40, 2.54mm pitch, 8.51mm socket length, single row (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 1x40 2.54mm single row -0 -40 -40 -Connector_PinSocket_2.54mm -PinSocket_1x40_P2.54mm_Vertical -Through hole straight socket strip, 1x40, 2.54mm pitch, single row (from Kicad 4.0.7), script generated -Through hole socket strip THT 1x40 2.54mm single row -0 -40 -40 -Connector_PinSocket_2.54mm -PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Left -surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 1 (pin 1 left) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x40 2.54mm single row style1 pin1 left -0 -40 -40 -Connector_PinSocket_2.54mm -PinSocket_1x40_P2.54mm_Vertical_SMD_Pin1Right -surface-mounted straight socket strip, 1x40, 2.54mm pitch, single row, style 2 (pin 1 right) (https://cdn.harwin.com/pdfs/M20-786.pdf), script generated -Surface mounted socket strip SMD 1x40 2.54mm single row style2 pin1 right -0 -40 -40 -Connector_PinSocket_2.54mm -PinSocket_2x01_P2.54mm_Horizontal -Through hole angled socket strip, 2x01, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x01 2.54mm double row -0 -2 -2 -Connector_PinSocket_2.54mm -PinSocket_2x01_P2.54mm_Vertical -Through hole straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x01 2.54mm double row -0 -2 -2 -Connector_PinSocket_2.54mm -PinSocket_2x01_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x01, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x01 2.54mm double row -0 -2 -2 -Connector_PinSocket_2.54mm -PinSocket_2x02_P2.54mm_Horizontal -Through hole angled socket strip, 2x02, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x02 2.54mm double row -0 -4 -4 -Connector_PinSocket_2.54mm -PinSocket_2x02_P2.54mm_Vertical -Through hole straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x02 2.54mm double row -0 -4 -4 -Connector_PinSocket_2.54mm -PinSocket_2x02_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x02, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x02 2.54mm double row -0 -4 -4 -Connector_PinSocket_2.54mm -PinSocket_2x03_P2.54mm_Horizontal -Through hole angled socket strip, 2x03, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x03 2.54mm double row -0 -6 -6 -Connector_PinSocket_2.54mm -PinSocket_2x03_P2.54mm_Vertical -Through hole straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x03 2.54mm double row -0 -6 -6 -Connector_PinSocket_2.54mm -PinSocket_2x03_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x03, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x03 2.54mm double row -0 -6 -6 -Connector_PinSocket_2.54mm -PinSocket_2x04_P2.54mm_Horizontal -Through hole angled socket strip, 2x04, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x04 2.54mm double row -0 -8 -8 -Connector_PinSocket_2.54mm -PinSocket_2x04_P2.54mm_Vertical -Through hole straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x04 2.54mm double row -0 -8 -8 -Connector_PinSocket_2.54mm -PinSocket_2x04_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x04, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x04 2.54mm double row -0 -8 -8 -Connector_PinSocket_2.54mm -PinSocket_2x05_P2.54mm_Horizontal -Through hole angled socket strip, 2x05, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x05 2.54mm double row -0 -10 -10 -Connector_PinSocket_2.54mm -PinSocket_2x05_P2.54mm_Vertical -Through hole straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x05 2.54mm double row -0 -10 -10 -Connector_PinSocket_2.54mm -PinSocket_2x05_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x05, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x05 2.54mm double row -0 -10 -10 -Connector_PinSocket_2.54mm -PinSocket_2x06_P2.54mm_Horizontal -Through hole angled socket strip, 2x06, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x06 2.54mm double row -0 -12 -12 -Connector_PinSocket_2.54mm -PinSocket_2x06_P2.54mm_Vertical -Through hole straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x06 2.54mm double row -0 -12 -12 -Connector_PinSocket_2.54mm -PinSocket_2x06_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x06, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x06 2.54mm double row -0 -12 -12 -Connector_PinSocket_2.54mm -PinSocket_2x07_P2.54mm_Horizontal -Through hole angled socket strip, 2x07, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x07 2.54mm double row -0 -14 -14 -Connector_PinSocket_2.54mm -PinSocket_2x07_P2.54mm_Vertical -Through hole straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x07 2.54mm double row -0 -14 -14 -Connector_PinSocket_2.54mm -PinSocket_2x07_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x07, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x07 2.54mm double row -0 -14 -14 -Connector_PinSocket_2.54mm -PinSocket_2x08_P2.54mm_Horizontal -Through hole angled socket strip, 2x08, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x08 2.54mm double row -0 -16 -16 -Connector_PinSocket_2.54mm -PinSocket_2x08_P2.54mm_Vertical -Through hole straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x08 2.54mm double row -0 -16 -16 -Connector_PinSocket_2.54mm -PinSocket_2x08_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x08, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x08 2.54mm double row -0 -16 -16 -Connector_PinSocket_2.54mm -PinSocket_2x09_P2.54mm_Horizontal -Through hole angled socket strip, 2x09, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x09 2.54mm double row -0 -18 -18 -Connector_PinSocket_2.54mm -PinSocket_2x09_P2.54mm_Vertical -Through hole straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x09 2.54mm double row -0 -18 -18 -Connector_PinSocket_2.54mm -PinSocket_2x09_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x09, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x09 2.54mm double row -0 -18 -18 -Connector_PinSocket_2.54mm -PinSocket_2x10_P2.54mm_Horizontal -Through hole angled socket strip, 2x10, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x10 2.54mm double row -0 -20 -20 -Connector_PinSocket_2.54mm -PinSocket_2x10_P2.54mm_Vertical -Through hole straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x10 2.54mm double row -0 -20 -20 -Connector_PinSocket_2.54mm -PinSocket_2x10_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x10, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x10 2.54mm double row -0 -20 -20 -Connector_PinSocket_2.54mm -PinSocket_2x11_P2.54mm_Horizontal -Through hole angled socket strip, 2x11, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x11 2.54mm double row -0 -22 -22 -Connector_PinSocket_2.54mm -PinSocket_2x11_P2.54mm_Vertical -Through hole straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x11 2.54mm double row -0 -22 -22 -Connector_PinSocket_2.54mm -PinSocket_2x11_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x11, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x11 2.54mm double row -0 -22 -22 -Connector_PinSocket_2.54mm -PinSocket_2x12_P2.54mm_Horizontal -Through hole angled socket strip, 2x12, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x12 2.54mm double row -0 -24 -24 -Connector_PinSocket_2.54mm -PinSocket_2x12_P2.54mm_Vertical -Through hole straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x12 2.54mm double row -0 -24 -24 -Connector_PinSocket_2.54mm -PinSocket_2x12_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x12, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x12 2.54mm double row -0 -24 -24 -Connector_PinSocket_2.54mm -PinSocket_2x13_P2.54mm_Horizontal -Through hole angled socket strip, 2x13, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x13 2.54mm double row -0 -26 -26 -Connector_PinSocket_2.54mm -PinSocket_2x13_P2.54mm_Vertical -Through hole straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x13 2.54mm double row -0 -26 -26 -Connector_PinSocket_2.54mm -PinSocket_2x13_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x13, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x13 2.54mm double row -0 -26 -26 -Connector_PinSocket_2.54mm -PinSocket_2x14_P2.54mm_Horizontal -Through hole angled socket strip, 2x14, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x14 2.54mm double row -0 -28 -28 -Connector_PinSocket_2.54mm -PinSocket_2x14_P2.54mm_Vertical -Through hole straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x14 2.54mm double row -0 -28 -28 -Connector_PinSocket_2.54mm -PinSocket_2x14_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x14, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x14 2.54mm double row -0 -28 -28 -Connector_PinSocket_2.54mm -PinSocket_2x15_P2.54mm_Horizontal -Through hole angled socket strip, 2x15, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x15 2.54mm double row -0 -30 -30 -Connector_PinSocket_2.54mm -PinSocket_2x15_P2.54mm_Vertical -Through hole straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x15 2.54mm double row -0 -30 -30 -Connector_PinSocket_2.54mm -PinSocket_2x15_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x15, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x15 2.54mm double row -0 -30 -30 -Connector_PinSocket_2.54mm -PinSocket_2x16_P2.54mm_Horizontal -Through hole angled socket strip, 2x16, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x16 2.54mm double row -0 -32 -32 -Connector_PinSocket_2.54mm -PinSocket_2x16_P2.54mm_Vertical -Through hole straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x16 2.54mm double row -0 -32 -32 -Connector_PinSocket_2.54mm -PinSocket_2x16_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x16, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x16 2.54mm double row -0 -32 -32 -Connector_PinSocket_2.54mm -PinSocket_2x17_P2.54mm_Horizontal -Through hole angled socket strip, 2x17, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x17 2.54mm double row -0 -34 -34 -Connector_PinSocket_2.54mm -PinSocket_2x17_P2.54mm_Vertical -Through hole straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x17 2.54mm double row -0 -34 -34 -Connector_PinSocket_2.54mm -PinSocket_2x17_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x17, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x17 2.54mm double row -0 -34 -34 -Connector_PinSocket_2.54mm -PinSocket_2x18_P2.54mm_Horizontal -Through hole angled socket strip, 2x18, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x18 2.54mm double row -0 -36 -36 -Connector_PinSocket_2.54mm -PinSocket_2x18_P2.54mm_Vertical -Through hole straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x18 2.54mm double row -0 -36 -36 -Connector_PinSocket_2.54mm -PinSocket_2x18_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x18, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x18 2.54mm double row -0 -36 -36 -Connector_PinSocket_2.54mm -PinSocket_2x19_P2.54mm_Horizontal -Through hole angled socket strip, 2x19, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x19 2.54mm double row -0 -38 -38 -Connector_PinSocket_2.54mm -PinSocket_2x19_P2.54mm_Vertical -Through hole straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x19 2.54mm double row -0 -38 -38 -Connector_PinSocket_2.54mm -PinSocket_2x19_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x19, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x19 2.54mm double row -0 -38 -38 -Connector_PinSocket_2.54mm -PinSocket_2x20_P2.54mm_Horizontal -Through hole angled socket strip, 2x20, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x20 2.54mm double row -0 -40 -40 -Connector_PinSocket_2.54mm -PinSocket_2x20_P2.54mm_Vertical -Through hole straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x20 2.54mm double row -0 -40 -40 -Connector_PinSocket_2.54mm -PinSocket_2x20_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x20, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x20 2.54mm double row -0 -40 -40 -Connector_PinSocket_2.54mm -PinSocket_2x21_P2.54mm_Horizontal -Through hole angled socket strip, 2x21, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x21 2.54mm double row -0 -42 -42 -Connector_PinSocket_2.54mm -PinSocket_2x21_P2.54mm_Vertical -Through hole straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x21 2.54mm double row -0 -42 -42 -Connector_PinSocket_2.54mm -PinSocket_2x21_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x21, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x21 2.54mm double row -0 -42 -42 -Connector_PinSocket_2.54mm -PinSocket_2x22_P2.54mm_Horizontal -Through hole angled socket strip, 2x22, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x22 2.54mm double row -0 -44 -44 -Connector_PinSocket_2.54mm -PinSocket_2x22_P2.54mm_Vertical -Through hole straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x22 2.54mm double row -0 -44 -44 -Connector_PinSocket_2.54mm -PinSocket_2x22_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x22, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x22 2.54mm double row -0 -44 -44 -Connector_PinSocket_2.54mm -PinSocket_2x23_P2.54mm_Horizontal -Through hole angled socket strip, 2x23, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x23 2.54mm double row -0 -46 -46 -Connector_PinSocket_2.54mm -PinSocket_2x23_P2.54mm_Vertical -Through hole straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x23 2.54mm double row -0 -46 -46 -Connector_PinSocket_2.54mm -PinSocket_2x23_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x23, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x23 2.54mm double row -0 -46 -46 -Connector_PinSocket_2.54mm -PinSocket_2x24_P2.54mm_Horizontal -Through hole angled socket strip, 2x24, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x24 2.54mm double row -0 -48 -48 -Connector_PinSocket_2.54mm -PinSocket_2x24_P2.54mm_Vertical -Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x24 2.54mm double row -0 -48 -48 -Connector_PinSocket_2.54mm -PinSocket_2x24_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x24 2.54mm double row -0 -48 -48 -Connector_PinSocket_2.54mm -PinSocket_2x25_P2.54mm_Horizontal -Through hole angled socket strip, 2x25, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x25 2.54mm double row -0 -50 -50 -Connector_PinSocket_2.54mm -PinSocket_2x25_P2.54mm_Vertical -Through hole straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x25 2.54mm double row -0 -50 -50 -Connector_PinSocket_2.54mm -PinSocket_2x25_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x25, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x25 2.54mm double row -0 -50 -50 -Connector_PinSocket_2.54mm -PinSocket_2x26_P2.54mm_Horizontal -Through hole angled socket strip, 2x26, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x26 2.54mm double row -0 -52 -52 -Connector_PinSocket_2.54mm -PinSocket_2x26_P2.54mm_Vertical -Through hole straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x26 2.54mm double row -0 -52 -52 -Connector_PinSocket_2.54mm -PinSocket_2x26_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x26, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x26 2.54mm double row -0 -52 -52 -Connector_PinSocket_2.54mm -PinSocket_2x27_P2.54mm_Horizontal -Through hole angled socket strip, 2x27, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x27 2.54mm double row -0 -54 -54 -Connector_PinSocket_2.54mm -PinSocket_2x27_P2.54mm_Vertical -Through hole straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x27 2.54mm double row -0 -54 -54 -Connector_PinSocket_2.54mm -PinSocket_2x27_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x27, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x27 2.54mm double row -0 -54 -54 -Connector_PinSocket_2.54mm -PinSocket_2x28_P2.54mm_Horizontal -Through hole angled socket strip, 2x28, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x28 2.54mm double row -0 -56 -56 -Connector_PinSocket_2.54mm -PinSocket_2x28_P2.54mm_Vertical -Through hole straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x28 2.54mm double row -0 -56 -56 -Connector_PinSocket_2.54mm -PinSocket_2x28_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x28, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x28 2.54mm double row -0 -56 -56 -Connector_PinSocket_2.54mm -PinSocket_2x29_P2.54mm_Horizontal -Through hole angled socket strip, 2x29, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x29 2.54mm double row -0 -58 -58 -Connector_PinSocket_2.54mm -PinSocket_2x29_P2.54mm_Vertical -Through hole straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x29 2.54mm double row -0 -58 -58 -Connector_PinSocket_2.54mm -PinSocket_2x29_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x29, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x29 2.54mm double row -0 -58 -58 -Connector_PinSocket_2.54mm -PinSocket_2x30_P2.54mm_Horizontal -Through hole angled socket strip, 2x30, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x30 2.54mm double row -0 -60 -60 -Connector_PinSocket_2.54mm -PinSocket_2x30_P2.54mm_Vertical -Through hole straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x30 2.54mm double row -0 -60 -60 -Connector_PinSocket_2.54mm -PinSocket_2x30_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x30, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x30 2.54mm double row -0 -60 -60 -Connector_PinSocket_2.54mm -PinSocket_2x31_P2.54mm_Horizontal -Through hole angled socket strip, 2x31, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x31 2.54mm double row -0 -62 -62 -Connector_PinSocket_2.54mm -PinSocket_2x31_P2.54mm_Vertical -Through hole straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x31 2.54mm double row -0 -62 -62 -Connector_PinSocket_2.54mm -PinSocket_2x31_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x31, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x31 2.54mm double row -0 -62 -62 -Connector_PinSocket_2.54mm -PinSocket_2x32_P2.54mm_Horizontal -Through hole angled socket strip, 2x32, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x32 2.54mm double row -0 -64 -64 -Connector_PinSocket_2.54mm -PinSocket_2x32_P2.54mm_Vertical -Through hole straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x32 2.54mm double row -0 -64 -64 -Connector_PinSocket_2.54mm -PinSocket_2x32_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x32, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x32 2.54mm double row -0 -64 -64 -Connector_PinSocket_2.54mm -PinSocket_2x33_P2.54mm_Horizontal -Through hole angled socket strip, 2x33, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x33 2.54mm double row -0 -66 -66 -Connector_PinSocket_2.54mm -PinSocket_2x33_P2.54mm_Vertical -Through hole straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x33 2.54mm double row -0 -66 -66 -Connector_PinSocket_2.54mm -PinSocket_2x33_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x33, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x33 2.54mm double row -0 -66 -66 -Connector_PinSocket_2.54mm -PinSocket_2x34_P2.54mm_Horizontal -Through hole angled socket strip, 2x34, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x34 2.54mm double row -0 -68 -68 -Connector_PinSocket_2.54mm -PinSocket_2x34_P2.54mm_Vertical -Through hole straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x34 2.54mm double row -0 -68 -68 -Connector_PinSocket_2.54mm -PinSocket_2x34_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x34, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x34 2.54mm double row -0 -68 -68 -Connector_PinSocket_2.54mm -PinSocket_2x35_P2.54mm_Horizontal -Through hole angled socket strip, 2x35, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x35 2.54mm double row -0 -70 -70 -Connector_PinSocket_2.54mm -PinSocket_2x35_P2.54mm_Vertical -Through hole straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x35 2.54mm double row -0 -70 -70 -Connector_PinSocket_2.54mm -PinSocket_2x35_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x35, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x35 2.54mm double row -0 -70 -70 -Connector_PinSocket_2.54mm -PinSocket_2x36_P2.54mm_Horizontal -Through hole angled socket strip, 2x36, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x36 2.54mm double row -0 -72 -72 -Connector_PinSocket_2.54mm -PinSocket_2x36_P2.54mm_Vertical -Through hole straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x36 2.54mm double row -0 -72 -72 -Connector_PinSocket_2.54mm -PinSocket_2x36_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x36, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x36 2.54mm double row -0 -72 -72 -Connector_PinSocket_2.54mm -PinSocket_2x37_P2.54mm_Horizontal -Through hole angled socket strip, 2x37, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x37 2.54mm double row -0 -74 -74 -Connector_PinSocket_2.54mm -PinSocket_2x37_P2.54mm_Vertical -Through hole straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x37 2.54mm double row -0 -74 -74 -Connector_PinSocket_2.54mm -PinSocket_2x37_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x37, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x37 2.54mm double row -0 -74 -74 -Connector_PinSocket_2.54mm -PinSocket_2x38_P2.54mm_Horizontal -Through hole angled socket strip, 2x38, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x38 2.54mm double row -0 -76 -76 -Connector_PinSocket_2.54mm -PinSocket_2x38_P2.54mm_Vertical -Through hole straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x38 2.54mm double row -0 -76 -76 -Connector_PinSocket_2.54mm -PinSocket_2x38_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x38, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x38 2.54mm double row -0 -76 -76 -Connector_PinSocket_2.54mm -PinSocket_2x39_P2.54mm_Horizontal -Through hole angled socket strip, 2x39, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x39 2.54mm double row -0 -78 -78 -Connector_PinSocket_2.54mm -PinSocket_2x39_P2.54mm_Vertical -Through hole straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x39 2.54mm double row -0 -78 -78 -Connector_PinSocket_2.54mm -PinSocket_2x39_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x39, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x39 2.54mm double row -0 -78 -78 -Connector_PinSocket_2.54mm -PinSocket_2x40_P2.54mm_Horizontal -Through hole angled socket strip, 2x40, 2.54mm pitch, 8.51mm socket length, double cols (from Kicad 4.0.7), script generated -Through hole angled socket strip THT 2x40 2.54mm double row -0 -80 -80 -Connector_PinSocket_2.54mm -PinSocket_2x40_P2.54mm_Vertical -Through hole straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Through hole socket strip THT 2x40 2.54mm double row -0 -80 -80 -Connector_PinSocket_2.54mm -PinSocket_2x40_P2.54mm_Vertical_SMD -surface-mounted straight socket strip, 2x40, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated -Surface mounted socket strip SMD 2x40 2.54mm double row -0 -80 -80 diff --git a/hw/loopback/loopback-cache.lib b/hw/loopback/loopback-cache.lib deleted file mode 100644 index 62dcc449..00000000 --- a/hw/loopback/loopback-cache.lib +++ /dev/null @@ -1,222 +0,0 @@ -EESchema-LIBRARY Version 2.4 -#encoding utf-8 -# -# Connector_DB25_Male -# -DEF Connector_DB25_Male J 0 40 Y N 1 F N -F0 "J" 0 1350 50 H V C CNN -F1 "Connector_DB25_Male" 0 -1375 50 H V C CNN -F2 "" 0 0 50 H I C CNN -F3 "" 0 0 50 H I C CNN -$FPLIST - DSUB*Male* -$ENDFPLIST -DRAW -C -70 -1200 30 0 1 0 F -C -70 -1000 30 0 1 0 F -C -70 -800 30 0 1 0 F -C -70 -600 30 0 1 0 F -C -70 -400 30 0 1 0 F -C -70 -200 30 0 1 0 F -C -70 0 30 0 1 0 F -C -70 200 30 0 1 0 F -C -70 400 30 0 1 0 F -C -70 600 30 0 1 0 F -C -70 800 30 0 1 0 F -C -70 1000 30 0 1 0 F -C -70 1200 30 0 1 0 F -C 50 -1100 30 0 1 0 F -C 50 -900 30 0 1 0 F -C 50 -700 30 0 1 0 F -C 50 -500 30 0 1 0 F -C 50 -300 30 0 1 0 F -C 50 -100 30 0 1 0 F -C 50 100 30 0 1 0 F -C 50 300 30 0 1 0 F -C 50 500 30 0 1 0 F -C 50 700 30 0 1 0 F -C 50 900 30 0 1 0 F -C 50 1100 30 0 1 0 F -P 2 0 1 0 -150 -1200 -100 -1200 N -P 2 0 1 0 -150 -1100 20 -1100 N -P 2 0 1 0 -150 -1000 -100 -1000 N -P 2 0 1 0 -150 -900 20 -900 N -P 2 0 1 0 -150 -800 -100 -800 N -P 2 0 1 0 -150 -700 20 -700 N -P 2 0 1 0 -150 -600 -100 -600 N -P 2 0 1 0 -150 -500 20 -500 N -P 2 0 1 0 -150 -400 -100 -400 N -P 2 0 1 0 -150 -300 20 -300 N -P 2 0 1 0 -150 -200 -100 -200 N -P 2 0 1 0 -150 -100 20 -100 N -P 2 0 1 0 -150 0 -100 0 N -P 2 0 1 0 -150 100 20 100 N -P 2 0 1 0 -150 200 -100 200 N -P 2 0 1 0 -150 300 20 300 N -P 2 0 1 0 -150 400 -100 400 N -P 2 0 1 0 -150 500 20 500 N -P 2 0 1 0 -150 600 -100 600 N -P 2 0 1 0 -150 700 20 700 N -P 2 0 1 0 -150 800 -100 800 N -P 2 0 1 0 -150 900 20 900 N -P 2 0 1 0 -150 1000 -100 1000 N -P 2 0 1 0 -150 1100 20 1100 N -P 2 0 1 0 -150 1200 -100 1200 N -P 5 0 1 10 -150 -1325 150 -1175 150 1175 -150 1325 -150 -1325 f -X 1 1 -300 -1200 150 R 50 50 1 1 P -X 10 10 -300 600 150 R 50 50 1 1 P -X 11 11 -300 800 150 R 50 50 1 1 P -X 12 12 -300 1000 150 R 50 50 1 1 P -X 13 13 -300 1200 150 R 50 50 1 1 P -X P14 14 -300 -1100 150 R 50 50 1 1 P -X P15 15 -300 -900 150 R 50 50 1 1 P -X P16 16 -300 -700 150 R 50 50 1 1 P -X P17 17 -300 -500 150 R 50 50 1 1 P -X P18 18 -300 -300 150 R 50 50 1 1 P -X P19 19 -300 -100 150 R 50 50 1 1 P -X 2 2 -300 -1000 150 R 50 50 1 1 P -X P20 20 -300 100 150 R 50 50 1 1 P -X P21 21 -300 300 150 R 50 50 1 1 P -X P22 22 -300 500 150 R 50 50 1 1 P -X P23 23 -300 700 150 R 50 50 1 1 P -X P24 24 -300 900 150 R 50 50 1 1 P -X P25 25 -300 1100 150 R 50 50 1 1 P -X 3 3 -300 -800 150 R 50 50 1 1 P -X 4 4 -300 -600 150 R 50 50 1 1 P -X 5 5 -300 -400 150 R 50 50 1 1 P -X 6 6 -300 -200 150 R 50 50 1 1 P -X 7 7 -300 0 150 R 50 50 1 1 P -X 8 8 -300 200 150 R 50 50 1 1 P -X 9 9 -300 400 150 R 50 50 1 1 P -ENDDRAW -ENDDEF -# -# Connector_Generic_Conn_02x25_Counter_Clockwise -# -DEF Connector_Generic_Conn_02x25_Counter_Clockwise J 0 40 Y N 1 F N -F0 "J" 50 1300 50 H V C CNN -F1 "Connector_Generic_Conn_02x25_Counter_Clockwise" 50 -1300 50 H V C CNN -F2 "" 0 0 50 H I C CNN -F3 "" 0 0 50 H I C CNN -$FPLIST - Connector*:*_2x??_* -$ENDFPLIST -DRAW -S -50 -1195 0 -1205 1 1 6 N -S -50 -1095 0 -1105 1 1 6 N -S -50 -995 0 -1005 1 1 6 N -S -50 -895 0 -905 1 1 6 N -S -50 -795 0 -805 1 1 6 N -S -50 -695 0 -705 1 1 6 N -S -50 -595 0 -605 1 1 6 N -S -50 -495 0 -505 1 1 6 N -S -50 -395 0 -405 1 1 6 N -S -50 -295 0 -305 1 1 6 N -S -50 -195 0 -205 1 1 6 N -S -50 -95 0 -105 1 1 6 N -S -50 5 0 -5 1 1 6 N -S -50 105 0 95 1 1 6 N -S -50 205 0 195 1 1 6 N -S -50 305 0 295 1 1 6 N -S -50 405 0 395 1 1 6 N -S -50 505 0 495 1 1 6 N -S -50 605 0 595 1 1 6 N -S -50 705 0 695 1 1 6 N -S -50 805 0 795 1 1 6 N -S -50 905 0 895 1 1 6 N -S -50 1005 0 995 1 1 6 N -S -50 1105 0 1095 1 1 6 N -S -50 1205 0 1195 1 1 6 N -S -50 1250 150 -1250 1 1 10 f -S 150 -1195 100 -1205 1 1 6 N -S 150 -1095 100 -1105 1 1 6 N -S 150 -995 100 -1005 1 1 6 N -S 150 -895 100 -905 1 1 6 N -S 150 -795 100 -805 1 1 6 N -S 150 -695 100 -705 1 1 6 N -S 150 -595 100 -605 1 1 6 N -S 150 -495 100 -505 1 1 6 N -S 150 -395 100 -405 1 1 6 N -S 150 -295 100 -305 1 1 6 N -S 150 -195 100 -205 1 1 6 N -S 150 -95 100 -105 1 1 6 N -S 150 5 100 -5 1 1 6 N -S 150 105 100 95 1 1 6 N -S 150 205 100 195 1 1 6 N -S 150 305 100 295 1 1 6 N -S 150 405 100 395 1 1 6 N -S 150 505 100 495 1 1 6 N -S 150 605 100 595 1 1 6 N -S 150 705 100 695 1 1 6 N -S 150 805 100 795 1 1 6 N -S 150 905 100 895 1 1 6 N -S 150 1005 100 995 1 1 6 N -S 150 1105 100 1095 1 1 6 N -S 150 1205 100 1195 1 1 6 N -X Pin_1 1 -200 1200 150 R 50 50 1 1 P -X Pin_10 10 -200 300 150 R 50 50 1 1 P -X Pin_11 11 -200 200 150 R 50 50 1 1 P -X Pin_12 12 -200 100 150 R 50 50 1 1 P -X Pin_13 13 -200 0 150 R 50 50 1 1 P -X Pin_14 14 -200 -100 150 R 50 50 1 1 P -X Pin_15 15 -200 -200 150 R 50 50 1 1 P -X Pin_16 16 -200 -300 150 R 50 50 1 1 P -X Pin_17 17 -200 -400 150 R 50 50 1 1 P -X Pin_18 18 -200 -500 150 R 50 50 1 1 P -X Pin_19 19 -200 -600 150 R 50 50 1 1 P -X Pin_2 2 -200 1100 150 R 50 50 1 1 P -X Pin_20 20 -200 -700 150 R 50 50 1 1 P -X Pin_21 21 -200 -800 150 R 50 50 1 1 P -X Pin_22 22 -200 -900 150 R 50 50 1 1 P -X Pin_23 23 -200 -1000 150 R 50 50 1 1 P -X Pin_24 24 -200 -1100 150 R 50 50 1 1 P -X Pin_25 25 -200 -1200 150 R 50 50 1 1 P -X Pin_26 26 300 -1200 150 L 50 50 1 1 P -X Pin_27 27 300 -1100 150 L 50 50 1 1 P -X Pin_28 28 300 -1000 150 L 50 50 1 1 P -X Pin_29 29 300 -900 150 L 50 50 1 1 P -X Pin_3 3 -200 1000 150 R 50 50 1 1 P -X Pin_30 30 300 -800 150 L 50 50 1 1 P -X Pin_31 31 300 -700 150 L 50 50 1 1 P -X Pin_32 32 300 -600 150 L 50 50 1 1 P -X Pin_33 33 300 -500 150 L 50 50 1 1 P -X Pin_34 34 300 -400 150 L 50 50 1 1 P -X Pin_35 35 300 -300 150 L 50 50 1 1 P -X Pin_36 36 300 -200 150 L 50 50 1 1 P -X Pin_37 37 300 -100 150 L 50 50 1 1 P -X Pin_38 38 300 0 150 L 50 50 1 1 P -X Pin_39 39 300 100 150 L 50 50 1 1 P -X Pin_4 4 -200 900 150 R 50 50 1 1 P -X Pin_40 40 300 200 150 L 50 50 1 1 P -X Pin_41 41 300 300 150 L 50 50 1 1 P -X Pin_42 42 300 400 150 L 50 50 1 1 P -X Pin_43 43 300 500 150 L 50 50 1 1 P -X Pin_44 44 300 600 150 L 50 50 1 1 P -X Pin_45 45 300 700 150 L 50 50 1 1 P -X Pin_46 46 300 800 150 L 50 50 1 1 P -X Pin_47 47 300 900 150 L 50 50 1 1 P -X Pin_48 48 300 1000 150 L 50 50 1 1 P -X Pin_49 49 300 1100 150 L 50 50 1 1 P -X Pin_5 5 -200 800 150 R 50 50 1 1 P -X Pin_50 50 300 1200 150 L 50 50 1 1 P -X Pin_6 6 -200 700 150 R 50 50 1 1 P -X Pin_7 7 -200 600 150 R 50 50 1 1 P -X Pin_8 8 -200 500 150 R 50 50 1 1 P -X Pin_9 9 -200 400 150 R 50 50 1 1 P -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/hw/loopback/loopback.kicad_pcb b/hw/loopback/loopback.kicad_pcb deleted file mode 100644 index 4047d168..00000000 --- a/hw/loopback/loopback.kicad_pcb +++ /dev/null @@ -1,974 +0,0 @@ -(kicad_pcb (version 20171130) (host pcbnew "(5.1.7-0-10_14)") - - (general - (thickness 1.6) - (drawings 4) - (tracks 27) - (zones 0) - (modules 2) - (nets 11) - ) - - (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) - (aux_axis_origin 0 0) - (visible_elements FFFFFF7F) - (pcbplotparams - (layerselection 0x010fc_ffffffff) - (usegerberextensions false) - (usegerberattributes true) - (usegerberadvancedattributes true) - (creategerberjobfile true) - (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 /CD) - (net 2 /ATN) - (net 3 /DB1) - (net 4 /BSY) - (net 5 /DB7) - (net 6 /DB6) - (net 7 /DB5) - (net 8 /DB3) - (net 9 /ACK) - (net 10 GND) - - (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 /ACK) - (add_net /ATN) - (add_net /BSY) - (add_net /CD) - (add_net /DB1) - (add_net /DB3) - (add_net /DB5) - (add_net /DB6) - (add_net /DB7) - (add_net GND) - (add_net "Net-(J2-Pad1)") - (add_net "Net-(J2-Pad10)") - (add_net "Net-(J2-Pad11)") - (add_net "Net-(J2-Pad12)") - (add_net "Net-(J2-Pad13)") - (add_net "Net-(J2-Pad14)") - (add_net "Net-(J2-Pad15)") - (add_net "Net-(J2-Pad16)") - (add_net "Net-(J2-Pad17)") - (add_net "Net-(J2-Pad18)") - (add_net "Net-(J2-Pad19)") - (add_net "Net-(J2-Pad2)") - (add_net "Net-(J2-Pad20)") - (add_net "Net-(J2-Pad21)") - (add_net "Net-(J2-Pad22)") - (add_net "Net-(J2-Pad23)") - (add_net "Net-(J2-Pad24)") - (add_net "Net-(J2-Pad25)") - (add_net "Net-(J2-Pad26)") - (add_net "Net-(J2-Pad27)") - (add_net "Net-(J2-Pad28)") - (add_net "Net-(J2-Pad29)") - (add_net "Net-(J2-Pad3)") - (add_net "Net-(J2-Pad30)") - (add_net "Net-(J2-Pad31)") - (add_net "Net-(J2-Pad32)") - (add_net "Net-(J2-Pad33)") - (add_net "Net-(J2-Pad34)") - (add_net "Net-(J2-Pad35)") - (add_net "Net-(J2-Pad36)") - (add_net "Net-(J2-Pad37)") - (add_net "Net-(J2-Pad38)") - (add_net "Net-(J2-Pad39)") - (add_net "Net-(J2-Pad4)") - (add_net "Net-(J2-Pad40)") - (add_net "Net-(J2-Pad41)") - (add_net "Net-(J2-Pad42)") - (add_net "Net-(J2-Pad43)") - (add_net "Net-(J2-Pad44)") - (add_net "Net-(J2-Pad45)") - (add_net "Net-(J2-Pad46)") - (add_net "Net-(J2-Pad47)") - (add_net "Net-(J2-Pad48)") - (add_net "Net-(J2-Pad5)") - (add_net "Net-(J2-Pad6)") - (add_net "Net-(J2-Pad7)") - (add_net "Net-(J2-Pad8)") - (add_net "Net-(J2-Pad9)") - ) - - (module Connector_PinSocket_2.54mm:PinSocket_2x24_P2.54mm_Vertical (layer F.Cu) (tedit 5A19A423) (tstamp 60A88E38) - (at 112.9411 88.9762 90) - (descr "Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated") - (tags "Through hole socket strip THT 2x24 2.54mm double row") - (path /60AB1BAF) - (fp_text reference J2 (at -1.27 -2.77 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Conn_02x25_Counter_Clockwise (at -1.27 61.19 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at -1.27 29.21) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -0.27) (end 1.27 59.69) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 59.69) (end -3.81 59.69) (layer F.Fab) (width 0.1)) - (fp_line (start -3.81 59.69) (end -3.81 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.87 -1.33) (end -3.87 59.75) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.87 59.75) (end 1.33 59.75) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 59.75) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 -1.33) (end 1.33 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0 -1.33) (end 1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.76 -1.8) (end 1.76 60.2) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.76 60.2) (end -4.34 60.2) (layer F.CrtYd) (width 0.05)) - (fp_line (start -4.34 60.2) (end -4.34 -1.8) (layer F.CrtYd) (width 0.05)) - (pad 48 thru_hole oval (at -2.54 58.42 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 47 thru_hole oval (at 0 58.42 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 46 thru_hole oval (at -2.54 55.88 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 45 thru_hole oval (at 0 55.88 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 44 thru_hole oval (at -2.54 53.34 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 43 thru_hole oval (at 0 53.34 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 42 thru_hole oval (at -2.54 50.8 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 41 thru_hole oval (at 0 50.8 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 40 thru_hole oval (at -2.54 48.26 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 39 thru_hole oval (at 0 48.26 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 38 thru_hole oval (at -2.54 45.72 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 37 thru_hole oval (at 0 45.72 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 36 thru_hole oval (at -2.54 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 35 thru_hole oval (at 0 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 34 thru_hole oval (at -2.54 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 33 thru_hole oval (at 0 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 32 thru_hole oval (at -2.54 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 31 thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 30 thru_hole oval (at -2.54 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 29 thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 28 thru_hole oval (at -2.54 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 27 thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 26 thru_hole oval (at -2.54 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 25 thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 24 thru_hole oval (at -2.54 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 23 thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 22 thru_hole oval (at -2.54 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 21 thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 20 thru_hole oval (at -2.54 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 19 thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 18 thru_hole oval (at -2.54 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 17 thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 16 thru_hole oval (at -2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 15 thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 14 thru_hole oval (at -2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 13 thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 12 thru_hole oval (at -2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 11 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 10 thru_hole oval (at -2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 9 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 8 thru_hole oval (at -2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 7 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 6 thru_hole oval (at -2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 5 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 4 thru_hole oval (at -2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 3 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 2 thru_hole oval (at -2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x24_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_Dsub:DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm (layer F.Cu) (tedit 59FEDEE2) (tstamp 60A88213) - (at 126.7841 101.6762) - (descr "25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf") - (tags "25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm") - (path /60A9E3C3) - (fp_text reference J1 (at 16.62 -3.7) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value DB25_Male (at 16.62 15.68) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 16.62 11.18) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_arc (start 40.17 0.3) (end 38.57 0.3) (angle 180) (layer F.Fab) (width 0.1)) - (fp_arc (start -6.93 0.3) (end -8.53 0.3) (angle 180) (layer F.Fab) (width 0.1)) - (fp_line (start -9.93 -2.7) (end -9.93 7.78) (layer F.Fab) (width 0.1)) - (fp_line (start -9.93 7.78) (end 43.17 7.78) (layer F.Fab) (width 0.1)) - (fp_line (start 43.17 7.78) (end 43.17 -2.7) (layer F.Fab) (width 0.1)) - (fp_line (start 43.17 -2.7) (end -9.93 -2.7) (layer F.Fab) (width 0.1)) - (fp_line (start -9.93 7.78) (end -9.93 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start -9.93 8.18) (end 43.17 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start 43.17 8.18) (end 43.17 7.78) (layer F.Fab) (width 0.1)) - (fp_line (start 43.17 7.78) (end -9.93 7.78) (layer F.Fab) (width 0.1)) - (fp_line (start -2.53 8.18) (end -2.53 14.18) (layer F.Fab) (width 0.1)) - (fp_line (start -2.53 14.18) (end 35.77 14.18) (layer F.Fab) (width 0.1)) - (fp_line (start 35.77 14.18) (end 35.77 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start 35.77 8.18) (end -2.53 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start -9.43 8.18) (end -9.43 13.18) (layer F.Fab) (width 0.1)) - (fp_line (start -9.43 13.18) (end -4.43 13.18) (layer F.Fab) (width 0.1)) - (fp_line (start -4.43 13.18) (end -4.43 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start -4.43 8.18) (end -9.43 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start 37.67 8.18) (end 37.67 13.18) (layer F.Fab) (width 0.1)) - (fp_line (start 37.67 13.18) (end 42.67 13.18) (layer F.Fab) (width 0.1)) - (fp_line (start 42.67 13.18) (end 42.67 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start 42.67 8.18) (end 37.67 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start -8.53 7.78) (end -8.53 0.3) (layer F.Fab) (width 0.1)) - (fp_line (start -5.33 7.78) (end -5.33 0.3) (layer F.Fab) (width 0.1)) - (fp_line (start 38.57 7.78) (end 38.57 0.3) (layer F.Fab) (width 0.1)) - (fp_line (start 41.77 7.78) (end 41.77 0.3) (layer F.Fab) (width 0.1)) - (fp_line (start -9.99 7.72) (end -9.99 -2.76) (layer F.SilkS) (width 0.12)) - (fp_line (start -9.99 -2.76) (end 43.23 -2.76) (layer F.SilkS) (width 0.12)) - (fp_line (start 43.23 -2.76) (end 43.23 7.72) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.25 -3.654338) (end 0.25 -3.654338) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.25 -3.654338) (end 0 -3.221325) (layer F.SilkS) (width 0.12)) - (fp_line (start 0 -3.221325) (end -0.25 -3.654338) (layer F.SilkS) (width 0.12)) - (fp_line (start -10.45 -3.25) (end -10.45 14.7) (layer F.CrtYd) (width 0.05)) - (fp_line (start -10.45 14.7) (end 43.7 14.7) (layer F.CrtYd) (width 0.05)) - (fp_line (start 43.7 14.7) (end 43.7 -3.25) (layer F.CrtYd) (width 0.05)) - (fp_line (start 43.7 -3.25) (end -10.45 -3.25) (layer F.CrtYd) (width 0.05)) - (pad 0 thru_hole circle (at 40.17 0.3) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)) - (pad 0 thru_hole circle (at -6.93 0.3) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)) - (pad 25 thru_hole circle (at 31.855 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 24 thru_hole circle (at 29.085 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 23 thru_hole circle (at 26.315 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 1 /CD)) - (pad 22 thru_hole circle (at 23.545 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 2 /ATN)) - (pad 21 thru_hole circle (at 20.775 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 3 /DB1)) - (pad 20 thru_hole circle (at 18.005 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 4 /BSY)) - (pad 19 thru_hole circle (at 15.235 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 3 /DB1)) - (pad 18 thru_hole circle (at 12.465 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 17 thru_hole circle (at 9.695 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 2 /ATN)) - (pad 16 thru_hole circle (at 6.925 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 15 thru_hole circle (at 4.155 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 1 /CD)) - (pad 14 thru_hole circle (at 1.385 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 13 thru_hole circle (at 33.24 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 5 /DB7)) - (pad 12 thru_hole circle (at 30.47 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 6 /DB6)) - (pad 11 thru_hole circle (at 27.7 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 7 /DB5)) - (pad 10 thru_hole circle (at 24.93 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 8 /DB3)) - (pad 9 thru_hole circle (at 22.16 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 8 thru_hole circle (at 19.39 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 9 /ACK)) - (pad 7 thru_hole circle (at 16.62 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 6 thru_hole circle (at 13.85 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 4 /BSY)) - (pad 5 thru_hole circle (at 11.08 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 9 /ACK)) - (pad 4 thru_hole circle (at 8.31 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 8 /DB3)) - (pad 3 thru_hole circle (at 5.54 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 7 /DB5)) - (pad 2 thru_hole circle (at 2.77 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 6 /DB6)) - (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 5 /DB7)) - (model ${KISYS3DMOD}/Connector_Dsub.3dshapes/DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (gr_line (start 110.363 86.4489) (end 110.363 109.474) (layer Edge.Cuts) (width 0.05)) - (gr_line (start 173.9773 86.4489) (end 110.363 86.4489) (layer Edge.Cuts) (width 0.05)) - (gr_line (start 173.9773 109.474) (end 173.9773 86.4489) (layer Edge.Cuts) (width 0.05)) - (gr_line (start 110.363 109.474) (end 173.9773 109.474) (layer Edge.Cuts) (width 0.05)) - - (segment (start 151.074075 106.541225) (end 153.0991 104.5162) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 132.964126 106.541225) (end 151.074075 106.541225) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 130.9391 104.5162) (end 132.964126 106.541225) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 148.754088 106.091212) (end 150.3291 104.5162) (width 0.25) (layer F.Cu) (net 2)) - (segment (start 138.054112 106.091212) (end 148.754088 106.091212) (width 0.25) (layer F.Cu) (net 2)) - (segment (start 136.4791 104.5162) (end 138.054112 106.091212) (width 0.25) (layer F.Cu) (net 2)) - (segment (start 146.434099 105.641201) (end 147.5591 104.5162) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 143.144101 105.641201) (end 146.434099 105.641201) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 142.0191 104.5162) (end 143.144101 105.641201) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 144.60547 104.5162) (end 144.7891 104.5162) (width 0.25) (layer F.Cu) (net 4)) - (segment (start 141.76547 101.6762) (end 144.60547 104.5162) (width 0.25) (layer F.Cu) (net 4)) - (segment (start 140.6341 101.6762) (end 141.76547 101.6762) (width 0.25) (layer F.Cu) (net 4)) - (segment (start 126.7841 101.6762) (end 131.2164 97.2439) (width 0.25) (layer F.Cu) (net 5)) - (segment (start 155.5918 97.2439) (end 160.0241 101.6762) (width 0.25) (layer F.Cu) (net 5)) - (segment (start 131.2164 97.2439) (end 155.5918 97.2439) (width 0.25) (layer F.Cu) (net 5)) - (segment (start 129.5541 101.6762) (end 133.2371 97.9932) (width 0.25) (layer F.Cu) (net 6)) - (segment (start 153.5711 97.9932) (end 157.2541 101.6762) (width 0.25) (layer F.Cu) (net 6)) - (segment (start 133.2371 97.9932) (end 153.5711 97.9932) (width 0.25) (layer F.Cu) (net 6)) - (segment (start 132.3241 101.6762) (end 135.207 98.7933) (width 0.25) (layer F.Cu) (net 7)) - (segment (start 151.6012 98.7933) (end 154.4841 101.6762) (width 0.25) (layer F.Cu) (net 7)) - (segment (start 135.207 98.7933) (end 151.6012 98.7933) (width 0.25) (layer F.Cu) (net 7)) - (segment (start 135.0941 101.6762) (end 137.088 99.6823) (width 0.25) (layer F.Cu) (net 8)) - (segment (start 149.7202 99.6823) (end 151.7141 101.6762) (width 0.25) (layer F.Cu) (net 8)) - (segment (start 137.088 99.6823) (end 149.7202 99.6823) (width 0.25) (layer F.Cu) (net 8)) - (segment (start 138.989101 100.551199) (end 137.8641 101.6762) (width 0.25) (layer F.Cu) (net 9)) - (segment (start 145.049099 100.551199) (end 138.989101 100.551199) (width 0.25) (layer F.Cu) (net 9)) - (segment (start 146.1741 101.6762) (end 145.049099 100.551199) (width 0.25) (layer F.Cu) (net 9)) - - (zone (net 10) (net_name GND) (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 176.5681 130.2893) (xy 90.3351 129.714625) (xy 89.7128 83.10245) (xy 176.3014 83.2358) - ) - ) - (filled_polygon - (pts - (xy 173.3173 108.814) (xy 111.023 108.814) (xy 111.023 105.508902) (xy 127.356003 105.508902) (xy 127.427586 105.752871) - (xy 127.683096 105.873771) (xy 127.957284 105.9425) (xy 128.239612 105.956417) (xy 128.51923 105.914987) (xy 128.785392 105.819803) - (xy 128.910614 105.752871) (xy 128.982197 105.508902) (xy 128.1691 104.695805) (xy 127.356003 105.508902) (xy 111.023 105.508902) - (xy 111.023 101.716675) (xy 117.2191 101.716675) (xy 117.2191 102.235725) (xy 117.320361 102.744801) (xy 117.518993 103.224341) - (xy 117.807362 103.655915) (xy 118.174385 104.022938) (xy 118.605959 104.311307) (xy 119.085499 104.509939) (xy 119.594575 104.6112) - (xy 120.113625 104.6112) (xy 120.236735 104.586712) (xy 126.728883 104.586712) (xy 126.770313 104.86633) (xy 126.865497 105.132492) - (xy 126.932429 105.257714) (xy 127.176398 105.329297) (xy 127.989495 104.5162) (xy 127.176398 103.703103) (xy 126.932429 103.774686) - (xy 126.811529 104.030196) (xy 126.7428 104.304384) (xy 126.728883 104.586712) (xy 120.236735 104.586712) (xy 120.622701 104.509939) - (xy 121.102241 104.311307) (xy 121.533815 104.022938) (xy 121.900838 103.655915) (xy 121.989316 103.523498) (xy 127.356003 103.523498) - (xy 128.1691 104.336595) (xy 128.982197 103.523498) (xy 128.910614 103.279529) (xy 128.655104 103.158629) (xy 128.380916 103.0899) - (xy 128.098588 103.075983) (xy 127.81897 103.117413) (xy 127.552808 103.212597) (xy 127.427586 103.279529) (xy 127.356003 103.523498) - (xy 121.989316 103.523498) (xy 122.189207 103.224341) (xy 122.387839 102.744801) (xy 122.4891 102.235725) (xy 122.4891 101.716675) - (xy 122.387839 101.207599) (xy 122.25057 100.8762) (xy 125.346028 100.8762) (xy 125.346028 102.4762) (xy 125.358288 102.600682) - (xy 125.394598 102.72038) (xy 125.453563 102.830694) (xy 125.532915 102.927385) (xy 125.629606 103.006737) (xy 125.73992 103.065702) - (xy 125.859618 103.102012) (xy 125.9841 103.114272) (xy 127.5841 103.114272) (xy 127.708582 103.102012) (xy 127.82828 103.065702) - (xy 127.938594 103.006737) (xy 128.035285 102.927385) (xy 128.114637 102.830694) (xy 128.173602 102.72038) (xy 128.209912 102.600682) - (xy 128.222172 102.4762) (xy 128.222172 102.210475) (xy 128.28242 102.355927) (xy 128.439463 102.590959) (xy 128.639341 102.790837) - (xy 128.874373 102.94788) (xy 129.135526 103.056053) (xy 129.412765 103.1112) (xy 129.695435 103.1112) (xy 129.972674 103.056053) - (xy 130.233827 102.94788) (xy 130.468859 102.790837) (xy 130.668737 102.590959) (xy 130.82578 102.355927) (xy 130.933953 102.094774) - (xy 130.9391 102.068899) (xy 130.944247 102.094774) (xy 131.05242 102.355927) (xy 131.209463 102.590959) (xy 131.409341 102.790837) - (xy 131.644373 102.94788) (xy 131.905526 103.056053) (xy 132.182765 103.1112) (xy 132.465435 103.1112) (xy 132.742674 103.056053) - (xy 133.003827 102.94788) (xy 133.238859 102.790837) (xy 133.438737 102.590959) (xy 133.59578 102.355927) (xy 133.703953 102.094774) - (xy 133.7091 102.068899) (xy 133.714247 102.094774) (xy 133.82242 102.355927) (xy 133.979463 102.590959) (xy 134.179341 102.790837) - (xy 134.414373 102.94788) (xy 134.675526 103.056053) (xy 134.952765 103.1112) (xy 135.235435 103.1112) (xy 135.512674 103.056053) - (xy 135.773827 102.94788) (xy 136.008859 102.790837) (xy 136.208737 102.590959) (xy 136.36578 102.355927) (xy 136.473953 102.094774) - (xy 136.4791 102.068899) (xy 136.484247 102.094774) (xy 136.59242 102.355927) (xy 136.749463 102.590959) (xy 136.949341 102.790837) - (xy 137.184373 102.94788) (xy 137.445526 103.056053) (xy 137.722765 103.1112) (xy 138.005435 103.1112) (xy 138.282674 103.056053) - (xy 138.543827 102.94788) (xy 138.778859 102.790837) (xy 138.978737 102.590959) (xy 139.13578 102.355927) (xy 139.243953 102.094774) - (xy 139.2491 102.068899) (xy 139.254247 102.094774) (xy 139.36242 102.355927) (xy 139.519463 102.590959) (xy 139.719341 102.790837) - (xy 139.954373 102.94788) (xy 140.215526 103.056053) (xy 140.492765 103.1112) (xy 140.775435 103.1112) (xy 141.052674 103.056053) - (xy 141.313827 102.94788) (xy 141.548859 102.790837) (xy 141.677082 102.662614) (xy 142.095669 103.0812) (xy 141.877765 103.0812) - (xy 141.600526 103.136347) (xy 141.339373 103.24452) (xy 141.104341 103.401563) (xy 140.904463 103.601441) (xy 140.74742 103.836473) - (xy 140.639247 104.097626) (xy 140.633587 104.126082) (xy 140.552703 103.899908) (xy 140.485771 103.774686) (xy 140.241802 103.703103) - (xy 139.428705 104.5162) (xy 139.442848 104.530343) (xy 139.263243 104.709948) (xy 139.2491 104.695805) (xy 139.234958 104.709948) - (xy 139.055353 104.530343) (xy 139.069495 104.5162) (xy 138.256398 103.703103) (xy 138.012429 103.774686) (xy 137.891529 104.030196) - (xy 137.865888 104.132489) (xy 137.858953 104.097626) (xy 137.75078 103.836473) (xy 137.593737 103.601441) (xy 137.515794 103.523498) - (xy 138.436003 103.523498) (xy 139.2491 104.336595) (xy 140.062197 103.523498) (xy 139.990614 103.279529) (xy 139.735104 103.158629) - (xy 139.460916 103.0899) (xy 139.178588 103.075983) (xy 138.89897 103.117413) (xy 138.632808 103.212597) (xy 138.507586 103.279529) - (xy 138.436003 103.523498) (xy 137.515794 103.523498) (xy 137.393859 103.401563) (xy 137.158827 103.24452) (xy 136.897674 103.136347) - (xy 136.620435 103.0812) (xy 136.337765 103.0812) (xy 136.060526 103.136347) (xy 135.799373 103.24452) (xy 135.564341 103.401563) - (xy 135.364463 103.601441) (xy 135.20742 103.836473) (xy 135.099247 104.097626) (xy 135.093587 104.126082) (xy 135.012703 103.899908) - (xy 134.945771 103.774686) (xy 134.701802 103.703103) (xy 133.888705 104.5162) (xy 134.701802 105.329297) (xy 134.945771 105.257714) - (xy 135.066671 105.002204) (xy 135.092312 104.899911) (xy 135.099247 104.934774) (xy 135.20742 105.195927) (xy 135.364463 105.430959) - (xy 135.564341 105.630837) (xy 135.789413 105.781225) (xy 134.397567 105.781225) (xy 134.450614 105.752871) (xy 134.522197 105.508902) - (xy 133.7091 104.695805) (xy 133.694958 104.709948) (xy 133.515353 104.530343) (xy 133.529495 104.5162) (xy 132.716398 103.703103) - (xy 132.472429 103.774686) (xy 132.351529 104.030196) (xy 132.325888 104.132489) (xy 132.318953 104.097626) (xy 132.21078 103.836473) - (xy 132.053737 103.601441) (xy 131.975794 103.523498) (xy 132.896003 103.523498) (xy 133.7091 104.336595) (xy 134.522197 103.523498) - (xy 134.450614 103.279529) (xy 134.195104 103.158629) (xy 133.920916 103.0899) (xy 133.638588 103.075983) (xy 133.35897 103.117413) - (xy 133.092808 103.212597) (xy 132.967586 103.279529) (xy 132.896003 103.523498) (xy 131.975794 103.523498) (xy 131.853859 103.401563) - (xy 131.618827 103.24452) (xy 131.357674 103.136347) (xy 131.080435 103.0812) (xy 130.797765 103.0812) (xy 130.520526 103.136347) - (xy 130.259373 103.24452) (xy 130.024341 103.401563) (xy 129.824463 103.601441) (xy 129.66742 103.836473) (xy 129.559247 104.097626) - (xy 129.553587 104.126082) (xy 129.472703 103.899908) (xy 129.405771 103.774686) (xy 129.161802 103.703103) (xy 128.348705 104.5162) - (xy 129.161802 105.329297) (xy 129.405771 105.257714) (xy 129.526671 105.002204) (xy 129.552312 104.899911) (xy 129.559247 104.934774) - (xy 129.66742 105.195927) (xy 129.824463 105.430959) (xy 130.024341 105.630837) (xy 130.259373 105.78788) (xy 130.520526 105.896053) - (xy 130.797765 105.9512) (xy 131.080435 105.9512) (xy 131.262986 105.914888) (xy 132.400331 107.052233) (xy 132.424125 107.081226) - (xy 132.453118 107.10502) (xy 132.453123 107.105025) (xy 132.53985 107.176199) (xy 132.671879 107.246771) (xy 132.81514 107.290228) - (xy 132.964126 107.304902) (xy 133.001459 107.301225) (xy 151.036753 107.301225) (xy 151.074075 107.304901) (xy 151.111397 107.301225) - (xy 151.111408 107.301225) (xy 151.223061 107.290228) (xy 151.366322 107.246771) (xy 151.498351 107.176199) (xy 151.614076 107.081226) - (xy 151.637879 107.052222) (xy 152.775214 105.914888) (xy 152.957765 105.9512) (xy 153.240435 105.9512) (xy 153.517674 105.896053) - (xy 153.778827 105.78788) (xy 154.013859 105.630837) (xy 154.135794 105.508902) (xy 155.056003 105.508902) (xy 155.127586 105.752871) - (xy 155.383096 105.873771) (xy 155.657284 105.9425) (xy 155.939612 105.956417) (xy 156.21923 105.914987) (xy 156.485392 105.819803) - (xy 156.610614 105.752871) (xy 156.682197 105.508902) (xy 157.826003 105.508902) (xy 157.897586 105.752871) (xy 158.153096 105.873771) - (xy 158.427284 105.9425) (xy 158.709612 105.956417) (xy 158.98923 105.914987) (xy 159.255392 105.819803) (xy 159.380614 105.752871) - (xy 159.452197 105.508902) (xy 158.6391 104.695805) (xy 157.826003 105.508902) (xy 156.682197 105.508902) (xy 155.8691 104.695805) - (xy 155.056003 105.508902) (xy 154.135794 105.508902) (xy 154.213737 105.430959) (xy 154.37078 105.195927) (xy 154.478953 104.934774) - (xy 154.484613 104.906318) (xy 154.565497 105.132492) (xy 154.632429 105.257714) (xy 154.876398 105.329297) (xy 155.689495 104.5162) - (xy 156.048705 104.5162) (xy 156.861802 105.329297) (xy 157.105771 105.257714) (xy 157.226671 105.002204) (xy 157.252316 104.899895) - (xy 157.335497 105.132492) (xy 157.402429 105.257714) (xy 157.646398 105.329297) (xy 158.459495 104.5162) (xy 158.818705 104.5162) - (xy 159.631802 105.329297) (xy 159.875771 105.257714) (xy 159.996671 105.002204) (xy 160.0654 104.728016) (xy 160.079317 104.445688) - (xy 160.037887 104.16607) (xy 159.942703 103.899908) (xy 159.875771 103.774686) (xy 159.631802 103.703103) (xy 158.818705 104.5162) - (xy 158.459495 104.5162) (xy 157.646398 103.703103) (xy 157.402429 103.774686) (xy 157.281529 104.030196) (xy 157.255884 104.132505) - (xy 157.172703 103.899908) (xy 157.105771 103.774686) (xy 156.861802 103.703103) (xy 156.048705 104.5162) (xy 155.689495 104.5162) - (xy 154.876398 103.703103) (xy 154.632429 103.774686) (xy 154.511529 104.030196) (xy 154.485888 104.132489) (xy 154.478953 104.097626) - (xy 154.37078 103.836473) (xy 154.213737 103.601441) (xy 154.135794 103.523498) (xy 155.056003 103.523498) (xy 155.8691 104.336595) - (xy 156.682197 103.523498) (xy 157.826003 103.523498) (xy 158.6391 104.336595) (xy 159.452197 103.523498) (xy 159.380614 103.279529) - (xy 159.125104 103.158629) (xy 158.850916 103.0899) (xy 158.568588 103.075983) (xy 158.28897 103.117413) (xy 158.022808 103.212597) - (xy 157.897586 103.279529) (xy 157.826003 103.523498) (xy 156.682197 103.523498) (xy 156.610614 103.279529) (xy 156.355104 103.158629) - (xy 156.080916 103.0899) (xy 155.798588 103.075983) (xy 155.51897 103.117413) (xy 155.252808 103.212597) (xy 155.127586 103.279529) - (xy 155.056003 103.523498) (xy 154.135794 103.523498) (xy 154.013859 103.401563) (xy 153.778827 103.24452) (xy 153.517674 103.136347) - (xy 153.240435 103.0812) (xy 152.957765 103.0812) (xy 152.680526 103.136347) (xy 152.419373 103.24452) (xy 152.184341 103.401563) - (xy 151.984463 103.601441) (xy 151.82742 103.836473) (xy 151.719247 104.097626) (xy 151.7141 104.123501) (xy 151.708953 104.097626) - (xy 151.60078 103.836473) (xy 151.443737 103.601441) (xy 151.243859 103.401563) (xy 151.008827 103.24452) (xy 150.747674 103.136347) - (xy 150.470435 103.0812) (xy 150.187765 103.0812) (xy 149.910526 103.136347) (xy 149.649373 103.24452) (xy 149.414341 103.401563) - (xy 149.214463 103.601441) (xy 149.05742 103.836473) (xy 148.949247 104.097626) (xy 148.9441 104.123501) (xy 148.938953 104.097626) - (xy 148.83078 103.836473) (xy 148.673737 103.601441) (xy 148.473859 103.401563) (xy 148.238827 103.24452) (xy 147.977674 103.136347) - (xy 147.700435 103.0812) (xy 147.417765 103.0812) (xy 147.140526 103.136347) (xy 146.879373 103.24452) (xy 146.644341 103.401563) - (xy 146.444463 103.601441) (xy 146.28742 103.836473) (xy 146.179247 104.097626) (xy 146.1741 104.123501) (xy 146.168953 104.097626) - (xy 146.06078 103.836473) (xy 145.903737 103.601441) (xy 145.703859 103.401563) (xy 145.468827 103.24452) (xy 145.207674 103.136347) - (xy 144.930435 103.0812) (xy 144.647765 103.0812) (xy 144.370526 103.136347) (xy 144.320953 103.156881) (xy 144.100863 102.936791) - (xy 144.145614 102.912871) (xy 144.217197 102.668902) (xy 143.4041 101.855805) (xy 143.389958 101.869948) (xy 143.210353 101.690343) - (xy 143.224495 101.6762) (xy 143.210353 101.662058) (xy 143.389958 101.482453) (xy 143.4041 101.496595) (xy 143.418243 101.482453) - (xy 143.597848 101.662058) (xy 143.583705 101.6762) (xy 144.396802 102.489297) (xy 144.640771 102.417714) (xy 144.761671 102.162204) - (xy 144.787312 102.059911) (xy 144.794247 102.094774) (xy 144.90242 102.355927) (xy 145.059463 102.590959) (xy 145.259341 102.790837) - (xy 145.494373 102.94788) (xy 145.755526 103.056053) (xy 146.032765 103.1112) (xy 146.315435 103.1112) (xy 146.592674 103.056053) - (xy 146.853827 102.94788) (xy 147.088859 102.790837) (xy 147.210794 102.668902) (xy 148.131003 102.668902) (xy 148.202586 102.912871) - (xy 148.458096 103.033771) (xy 148.732284 103.1025) (xy 149.014612 103.116417) (xy 149.29423 103.074987) (xy 149.560392 102.979803) - (xy 149.685614 102.912871) (xy 149.757197 102.668902) (xy 148.9441 101.855805) (xy 148.131003 102.668902) (xy 147.210794 102.668902) - (xy 147.288737 102.590959) (xy 147.44578 102.355927) (xy 147.553953 102.094774) (xy 147.559613 102.066318) (xy 147.640497 102.292492) - (xy 147.707429 102.417714) (xy 147.951398 102.489297) (xy 148.764495 101.6762) (xy 147.951398 100.863103) (xy 147.707429 100.934686) - (xy 147.586529 101.190196) (xy 147.560888 101.292489) (xy 147.553953 101.257626) (xy 147.44578 100.996473) (xy 147.288737 100.761441) - (xy 147.088859 100.561563) (xy 146.910369 100.4423) (xy 148.201773 100.4423) (xy 148.131003 100.683498) (xy 148.9441 101.496595) - (xy 148.958243 101.482453) (xy 149.137848 101.662058) (xy 149.123705 101.6762) (xy 149.936802 102.489297) (xy 150.180771 102.417714) - (xy 150.301671 102.162204) (xy 150.327312 102.059911) (xy 150.334247 102.094774) (xy 150.44242 102.355927) (xy 150.599463 102.590959) - (xy 150.799341 102.790837) (xy 151.034373 102.94788) (xy 151.295526 103.056053) (xy 151.572765 103.1112) (xy 151.855435 103.1112) - (xy 152.132674 103.056053) (xy 152.393827 102.94788) (xy 152.628859 102.790837) (xy 152.828737 102.590959) (xy 152.98578 102.355927) - (xy 153.093953 102.094774) (xy 153.0991 102.068899) (xy 153.104247 102.094774) (xy 153.21242 102.355927) (xy 153.369463 102.590959) - (xy 153.569341 102.790837) (xy 153.804373 102.94788) (xy 154.065526 103.056053) (xy 154.342765 103.1112) (xy 154.625435 103.1112) - (xy 154.902674 103.056053) (xy 155.163827 102.94788) (xy 155.398859 102.790837) (xy 155.598737 102.590959) (xy 155.75578 102.355927) - (xy 155.863953 102.094774) (xy 155.8691 102.068899) (xy 155.874247 102.094774) (xy 155.98242 102.355927) (xy 156.139463 102.590959) - (xy 156.339341 102.790837) (xy 156.574373 102.94788) (xy 156.835526 103.056053) (xy 157.112765 103.1112) (xy 157.395435 103.1112) - (xy 157.672674 103.056053) (xy 157.933827 102.94788) (xy 158.168859 102.790837) (xy 158.368737 102.590959) (xy 158.52578 102.355927) - (xy 158.633953 102.094774) (xy 158.6391 102.068899) (xy 158.644247 102.094774) (xy 158.75242 102.355927) (xy 158.909463 102.590959) - (xy 159.109341 102.790837) (xy 159.344373 102.94788) (xy 159.605526 103.056053) (xy 159.882765 103.1112) (xy 160.165435 103.1112) - (xy 160.442674 103.056053) (xy 160.703827 102.94788) (xy 160.938859 102.790837) (xy 161.138737 102.590959) (xy 161.29578 102.355927) - (xy 161.403953 102.094774) (xy 161.4591 101.817535) (xy 161.4591 101.716675) (xy 164.3191 101.716675) (xy 164.3191 102.235725) - (xy 164.420361 102.744801) (xy 164.618993 103.224341) (xy 164.907362 103.655915) (xy 165.274385 104.022938) (xy 165.705959 104.311307) - (xy 166.185499 104.509939) (xy 166.694575 104.6112) (xy 167.213625 104.6112) (xy 167.722701 104.509939) (xy 168.202241 104.311307) - (xy 168.633815 104.022938) (xy 169.000838 103.655915) (xy 169.289207 103.224341) (xy 169.487839 102.744801) (xy 169.5891 102.235725) - (xy 169.5891 101.716675) (xy 169.487839 101.207599) (xy 169.289207 100.728059) (xy 169.000838 100.296485) (xy 168.633815 99.929462) - (xy 168.202241 99.641093) (xy 167.722701 99.442461) (xy 167.213625 99.3412) (xy 166.694575 99.3412) (xy 166.185499 99.442461) - (xy 165.705959 99.641093) (xy 165.274385 99.929462) (xy 164.907362 100.296485) (xy 164.618993 100.728059) (xy 164.420361 101.207599) - (xy 164.3191 101.716675) (xy 161.4591 101.716675) (xy 161.4591 101.534865) (xy 161.403953 101.257626) (xy 161.29578 100.996473) - (xy 161.138737 100.761441) (xy 160.938859 100.561563) (xy 160.703827 100.40452) (xy 160.442674 100.296347) (xy 160.165435 100.2412) - (xy 159.882765 100.2412) (xy 159.700214 100.277512) (xy 156.155604 96.732903) (xy 156.131801 96.703899) (xy 156.016076 96.608926) - (xy 155.884047 96.538354) (xy 155.740786 96.494897) (xy 155.629133 96.4839) (xy 155.629122 96.4839) (xy 155.5918 96.480224) - (xy 155.554478 96.4839) (xy 131.253725 96.4839) (xy 131.2164 96.480224) (xy 131.179075 96.4839) (xy 131.179067 96.4839) - (xy 131.067414 96.494897) (xy 130.924153 96.538354) (xy 130.792124 96.608926) (xy 130.676399 96.703899) (xy 130.652601 96.732897) - (xy 127.147371 100.238128) (xy 125.9841 100.238128) (xy 125.859618 100.250388) (xy 125.73992 100.286698) (xy 125.629606 100.345663) - (xy 125.532915 100.425015) (xy 125.453563 100.521706) (xy 125.394598 100.63202) (xy 125.358288 100.751718) (xy 125.346028 100.8762) - (xy 122.25057 100.8762) (xy 122.189207 100.728059) (xy 121.900838 100.296485) (xy 121.533815 99.929462) (xy 121.102241 99.641093) - (xy 120.622701 99.442461) (xy 120.113625 99.3412) (xy 119.594575 99.3412) (xy 119.085499 99.442461) (xy 118.605959 99.641093) - (xy 118.174385 99.929462) (xy 117.807362 100.296485) (xy 117.518993 100.728059) (xy 117.320361 101.207599) (xy 117.2191 101.716675) - (xy 111.023 101.716675) (xy 111.023 88.1262) (xy 111.453028 88.1262) (xy 111.453028 89.8262) (xy 111.465288 89.950682) - (xy 111.501598 90.07038) (xy 111.560563 90.180694) (xy 111.639915 90.277385) (xy 111.736606 90.356737) (xy 111.84692 90.415702) - (xy 111.91948 90.437713) (xy 111.787625 90.569568) (xy 111.62511 90.812789) (xy 111.513168 91.083042) (xy 111.4561 91.36994) - (xy 111.4561 91.66246) (xy 111.513168 91.949358) (xy 111.62511 92.219611) (xy 111.787625 92.462832) (xy 111.994468 92.669675) - (xy 112.237689 92.83219) (xy 112.507942 92.944132) (xy 112.79484 93.0012) (xy 113.08736 93.0012) (xy 113.374258 92.944132) - (xy 113.644511 92.83219) (xy 113.887732 92.669675) (xy 114.094575 92.462832) (xy 114.2111 92.28844) (xy 114.327625 92.462832) - (xy 114.534468 92.669675) (xy 114.777689 92.83219) (xy 115.047942 92.944132) (xy 115.33484 93.0012) (xy 115.62736 93.0012) - (xy 115.914258 92.944132) (xy 116.184511 92.83219) (xy 116.427732 92.669675) (xy 116.634575 92.462832) (xy 116.7511 92.28844) - (xy 116.867625 92.462832) (xy 117.074468 92.669675) (xy 117.317689 92.83219) (xy 117.587942 92.944132) (xy 117.87484 93.0012) - (xy 118.16736 93.0012) (xy 118.454258 92.944132) (xy 118.724511 92.83219) (xy 118.967732 92.669675) (xy 119.174575 92.462832) - (xy 119.2911 92.28844) (xy 119.407625 92.462832) (xy 119.614468 92.669675) (xy 119.857689 92.83219) (xy 120.127942 92.944132) - (xy 120.41484 93.0012) (xy 120.70736 93.0012) (xy 120.994258 92.944132) (xy 121.264511 92.83219) (xy 121.507732 92.669675) - (xy 121.714575 92.462832) (xy 121.8311 92.28844) (xy 121.947625 92.462832) (xy 122.154468 92.669675) (xy 122.397689 92.83219) - (xy 122.667942 92.944132) (xy 122.95484 93.0012) (xy 123.24736 93.0012) (xy 123.534258 92.944132) (xy 123.804511 92.83219) - (xy 124.047732 92.669675) (xy 124.254575 92.462832) (xy 124.3711 92.28844) (xy 124.487625 92.462832) (xy 124.694468 92.669675) - (xy 124.937689 92.83219) (xy 125.207942 92.944132) (xy 125.49484 93.0012) (xy 125.78736 93.0012) (xy 126.074258 92.944132) - (xy 126.344511 92.83219) (xy 126.587732 92.669675) (xy 126.794575 92.462832) (xy 126.9111 92.28844) (xy 127.027625 92.462832) - (xy 127.234468 92.669675) (xy 127.477689 92.83219) (xy 127.747942 92.944132) (xy 128.03484 93.0012) (xy 128.32736 93.0012) - (xy 128.614258 92.944132) (xy 128.884511 92.83219) (xy 129.127732 92.669675) (xy 129.334575 92.462832) (xy 129.4511 92.28844) - (xy 129.567625 92.462832) (xy 129.774468 92.669675) (xy 130.017689 92.83219) (xy 130.287942 92.944132) (xy 130.57484 93.0012) - (xy 130.86736 93.0012) (xy 131.154258 92.944132) (xy 131.424511 92.83219) (xy 131.667732 92.669675) (xy 131.874575 92.462832) - (xy 131.9911 92.28844) (xy 132.107625 92.462832) (xy 132.314468 92.669675) (xy 132.557689 92.83219) (xy 132.827942 92.944132) - (xy 133.11484 93.0012) (xy 133.40736 93.0012) (xy 133.694258 92.944132) (xy 133.964511 92.83219) (xy 134.207732 92.669675) - (xy 134.414575 92.462832) (xy 134.5311 92.28844) (xy 134.647625 92.462832) (xy 134.854468 92.669675) (xy 135.097689 92.83219) - (xy 135.367942 92.944132) (xy 135.65484 93.0012) (xy 135.94736 93.0012) (xy 136.234258 92.944132) (xy 136.504511 92.83219) - (xy 136.747732 92.669675) (xy 136.954575 92.462832) (xy 137.0711 92.28844) (xy 137.187625 92.462832) (xy 137.394468 92.669675) - (xy 137.637689 92.83219) (xy 137.907942 92.944132) (xy 138.19484 93.0012) (xy 138.48736 93.0012) (xy 138.774258 92.944132) - (xy 139.044511 92.83219) (xy 139.287732 92.669675) (xy 139.494575 92.462832) (xy 139.6111 92.28844) (xy 139.727625 92.462832) - (xy 139.934468 92.669675) (xy 140.177689 92.83219) (xy 140.447942 92.944132) (xy 140.73484 93.0012) (xy 141.02736 93.0012) - (xy 141.314258 92.944132) (xy 141.584511 92.83219) (xy 141.827732 92.669675) (xy 142.034575 92.462832) (xy 142.1511 92.28844) - (xy 142.267625 92.462832) (xy 142.474468 92.669675) (xy 142.717689 92.83219) (xy 142.987942 92.944132) (xy 143.27484 93.0012) - (xy 143.56736 93.0012) (xy 143.854258 92.944132) (xy 144.124511 92.83219) (xy 144.367732 92.669675) (xy 144.574575 92.462832) - (xy 144.6911 92.28844) (xy 144.807625 92.462832) (xy 145.014468 92.669675) (xy 145.257689 92.83219) (xy 145.527942 92.944132) - (xy 145.81484 93.0012) (xy 146.10736 93.0012) (xy 146.394258 92.944132) (xy 146.664511 92.83219) (xy 146.907732 92.669675) - (xy 147.114575 92.462832) (xy 147.2311 92.28844) (xy 147.347625 92.462832) (xy 147.554468 92.669675) (xy 147.797689 92.83219) - (xy 148.067942 92.944132) (xy 148.35484 93.0012) (xy 148.64736 93.0012) (xy 148.934258 92.944132) (xy 149.204511 92.83219) - (xy 149.447732 92.669675) (xy 149.654575 92.462832) (xy 149.7711 92.28844) (xy 149.887625 92.462832) (xy 150.094468 92.669675) - (xy 150.337689 92.83219) (xy 150.607942 92.944132) (xy 150.89484 93.0012) (xy 151.18736 93.0012) (xy 151.474258 92.944132) - (xy 151.744511 92.83219) (xy 151.987732 92.669675) (xy 152.194575 92.462832) (xy 152.3111 92.28844) (xy 152.427625 92.462832) - (xy 152.634468 92.669675) (xy 152.877689 92.83219) (xy 153.147942 92.944132) (xy 153.43484 93.0012) (xy 153.72736 93.0012) - (xy 154.014258 92.944132) (xy 154.284511 92.83219) (xy 154.527732 92.669675) (xy 154.734575 92.462832) (xy 154.8511 92.28844) - (xy 154.967625 92.462832) (xy 155.174468 92.669675) (xy 155.417689 92.83219) (xy 155.687942 92.944132) (xy 155.97484 93.0012) - (xy 156.26736 93.0012) (xy 156.554258 92.944132) (xy 156.824511 92.83219) (xy 157.067732 92.669675) (xy 157.274575 92.462832) - (xy 157.3911 92.28844) (xy 157.507625 92.462832) (xy 157.714468 92.669675) (xy 157.957689 92.83219) (xy 158.227942 92.944132) - (xy 158.51484 93.0012) (xy 158.80736 93.0012) (xy 159.094258 92.944132) (xy 159.364511 92.83219) (xy 159.607732 92.669675) - (xy 159.814575 92.462832) (xy 159.9311 92.28844) (xy 160.047625 92.462832) (xy 160.254468 92.669675) (xy 160.497689 92.83219) - (xy 160.767942 92.944132) (xy 161.05484 93.0012) (xy 161.34736 93.0012) (xy 161.634258 92.944132) (xy 161.904511 92.83219) - (xy 162.147732 92.669675) (xy 162.354575 92.462832) (xy 162.4711 92.28844) (xy 162.587625 92.462832) (xy 162.794468 92.669675) - (xy 163.037689 92.83219) (xy 163.307942 92.944132) (xy 163.59484 93.0012) (xy 163.88736 93.0012) (xy 164.174258 92.944132) - (xy 164.444511 92.83219) (xy 164.687732 92.669675) (xy 164.894575 92.462832) (xy 165.0111 92.28844) (xy 165.127625 92.462832) - (xy 165.334468 92.669675) (xy 165.577689 92.83219) (xy 165.847942 92.944132) (xy 166.13484 93.0012) (xy 166.42736 93.0012) - (xy 166.714258 92.944132) (xy 166.984511 92.83219) (xy 167.227732 92.669675) (xy 167.434575 92.462832) (xy 167.5511 92.28844) - (xy 167.667625 92.462832) (xy 167.874468 92.669675) (xy 168.117689 92.83219) (xy 168.387942 92.944132) (xy 168.67484 93.0012) - (xy 168.96736 93.0012) (xy 169.254258 92.944132) (xy 169.524511 92.83219) (xy 169.767732 92.669675) (xy 169.974575 92.462832) - (xy 170.0911 92.28844) (xy 170.207625 92.462832) (xy 170.414468 92.669675) (xy 170.657689 92.83219) (xy 170.927942 92.944132) - (xy 171.21484 93.0012) (xy 171.50736 93.0012) (xy 171.794258 92.944132) (xy 172.064511 92.83219) (xy 172.307732 92.669675) - (xy 172.514575 92.462832) (xy 172.67709 92.219611) (xy 172.789032 91.949358) (xy 172.8461 91.66246) (xy 172.8461 91.36994) - (xy 172.789032 91.083042) (xy 172.67709 90.812789) (xy 172.514575 90.569568) (xy 172.307732 90.362725) (xy 172.13334 90.2462) - (xy 172.307732 90.129675) (xy 172.514575 89.922832) (xy 172.67709 89.679611) (xy 172.789032 89.409358) (xy 172.8461 89.12246) - (xy 172.8461 88.82994) (xy 172.789032 88.543042) (xy 172.67709 88.272789) (xy 172.514575 88.029568) (xy 172.307732 87.822725) - (xy 172.064511 87.66021) (xy 171.794258 87.548268) (xy 171.50736 87.4912) (xy 171.21484 87.4912) (xy 170.927942 87.548268) - (xy 170.657689 87.66021) (xy 170.414468 87.822725) (xy 170.207625 88.029568) (xy 170.0911 88.20396) (xy 169.974575 88.029568) - (xy 169.767732 87.822725) (xy 169.524511 87.66021) (xy 169.254258 87.548268) (xy 168.96736 87.4912) (xy 168.67484 87.4912) - (xy 168.387942 87.548268) (xy 168.117689 87.66021) (xy 167.874468 87.822725) (xy 167.667625 88.029568) (xy 167.5511 88.20396) - (xy 167.434575 88.029568) (xy 167.227732 87.822725) (xy 166.984511 87.66021) (xy 166.714258 87.548268) (xy 166.42736 87.4912) - (xy 166.13484 87.4912) (xy 165.847942 87.548268) (xy 165.577689 87.66021) (xy 165.334468 87.822725) (xy 165.127625 88.029568) - (xy 165.0111 88.20396) (xy 164.894575 88.029568) (xy 164.687732 87.822725) (xy 164.444511 87.66021) (xy 164.174258 87.548268) - (xy 163.88736 87.4912) (xy 163.59484 87.4912) (xy 163.307942 87.548268) (xy 163.037689 87.66021) (xy 162.794468 87.822725) - (xy 162.587625 88.029568) (xy 162.4711 88.20396) (xy 162.354575 88.029568) (xy 162.147732 87.822725) (xy 161.904511 87.66021) - (xy 161.634258 87.548268) (xy 161.34736 87.4912) (xy 161.05484 87.4912) (xy 160.767942 87.548268) (xy 160.497689 87.66021) - (xy 160.254468 87.822725) (xy 160.047625 88.029568) (xy 159.9311 88.20396) (xy 159.814575 88.029568) (xy 159.607732 87.822725) - (xy 159.364511 87.66021) (xy 159.094258 87.548268) (xy 158.80736 87.4912) (xy 158.51484 87.4912) (xy 158.227942 87.548268) - (xy 157.957689 87.66021) (xy 157.714468 87.822725) (xy 157.507625 88.029568) (xy 157.3911 88.20396) (xy 157.274575 88.029568) - (xy 157.067732 87.822725) (xy 156.824511 87.66021) (xy 156.554258 87.548268) (xy 156.26736 87.4912) (xy 155.97484 87.4912) - (xy 155.687942 87.548268) (xy 155.417689 87.66021) (xy 155.174468 87.822725) (xy 154.967625 88.029568) (xy 154.8511 88.20396) - (xy 154.734575 88.029568) (xy 154.527732 87.822725) (xy 154.284511 87.66021) (xy 154.014258 87.548268) (xy 153.72736 87.4912) - (xy 153.43484 87.4912) (xy 153.147942 87.548268) (xy 152.877689 87.66021) (xy 152.634468 87.822725) (xy 152.427625 88.029568) - (xy 152.3111 88.20396) (xy 152.194575 88.029568) (xy 151.987732 87.822725) (xy 151.744511 87.66021) (xy 151.474258 87.548268) - (xy 151.18736 87.4912) (xy 150.89484 87.4912) (xy 150.607942 87.548268) (xy 150.337689 87.66021) (xy 150.094468 87.822725) - (xy 149.887625 88.029568) (xy 149.7711 88.20396) (xy 149.654575 88.029568) (xy 149.447732 87.822725) (xy 149.204511 87.66021) - (xy 148.934258 87.548268) (xy 148.64736 87.4912) (xy 148.35484 87.4912) (xy 148.067942 87.548268) (xy 147.797689 87.66021) - (xy 147.554468 87.822725) (xy 147.347625 88.029568) (xy 147.2311 88.20396) (xy 147.114575 88.029568) (xy 146.907732 87.822725) - (xy 146.664511 87.66021) (xy 146.394258 87.548268) (xy 146.10736 87.4912) (xy 145.81484 87.4912) (xy 145.527942 87.548268) - (xy 145.257689 87.66021) (xy 145.014468 87.822725) (xy 144.807625 88.029568) (xy 144.6911 88.20396) (xy 144.574575 88.029568) - (xy 144.367732 87.822725) (xy 144.124511 87.66021) (xy 143.854258 87.548268) (xy 143.56736 87.4912) (xy 143.27484 87.4912) - (xy 142.987942 87.548268) (xy 142.717689 87.66021) (xy 142.474468 87.822725) (xy 142.267625 88.029568) (xy 142.1511 88.20396) - (xy 142.034575 88.029568) (xy 141.827732 87.822725) (xy 141.584511 87.66021) (xy 141.314258 87.548268) (xy 141.02736 87.4912) - (xy 140.73484 87.4912) (xy 140.447942 87.548268) (xy 140.177689 87.66021) (xy 139.934468 87.822725) (xy 139.727625 88.029568) - (xy 139.6111 88.20396) (xy 139.494575 88.029568) (xy 139.287732 87.822725) (xy 139.044511 87.66021) (xy 138.774258 87.548268) - (xy 138.48736 87.4912) (xy 138.19484 87.4912) (xy 137.907942 87.548268) (xy 137.637689 87.66021) (xy 137.394468 87.822725) - (xy 137.187625 88.029568) (xy 137.0711 88.20396) (xy 136.954575 88.029568) (xy 136.747732 87.822725) (xy 136.504511 87.66021) - (xy 136.234258 87.548268) (xy 135.94736 87.4912) (xy 135.65484 87.4912) (xy 135.367942 87.548268) (xy 135.097689 87.66021) - (xy 134.854468 87.822725) (xy 134.647625 88.029568) (xy 134.5311 88.20396) (xy 134.414575 88.029568) (xy 134.207732 87.822725) - (xy 133.964511 87.66021) (xy 133.694258 87.548268) (xy 133.40736 87.4912) (xy 133.11484 87.4912) (xy 132.827942 87.548268) - (xy 132.557689 87.66021) (xy 132.314468 87.822725) (xy 132.107625 88.029568) (xy 131.9911 88.20396) (xy 131.874575 88.029568) - (xy 131.667732 87.822725) (xy 131.424511 87.66021) (xy 131.154258 87.548268) (xy 130.86736 87.4912) (xy 130.57484 87.4912) - (xy 130.287942 87.548268) (xy 130.017689 87.66021) (xy 129.774468 87.822725) (xy 129.567625 88.029568) (xy 129.4511 88.20396) - (xy 129.334575 88.029568) (xy 129.127732 87.822725) (xy 128.884511 87.66021) (xy 128.614258 87.548268) (xy 128.32736 87.4912) - (xy 128.03484 87.4912) (xy 127.747942 87.548268) (xy 127.477689 87.66021) (xy 127.234468 87.822725) (xy 127.027625 88.029568) - (xy 126.9111 88.20396) (xy 126.794575 88.029568) (xy 126.587732 87.822725) (xy 126.344511 87.66021) (xy 126.074258 87.548268) - (xy 125.78736 87.4912) (xy 125.49484 87.4912) (xy 125.207942 87.548268) (xy 124.937689 87.66021) (xy 124.694468 87.822725) - (xy 124.487625 88.029568) (xy 124.3711 88.20396) (xy 124.254575 88.029568) (xy 124.047732 87.822725) (xy 123.804511 87.66021) - (xy 123.534258 87.548268) (xy 123.24736 87.4912) (xy 122.95484 87.4912) (xy 122.667942 87.548268) (xy 122.397689 87.66021) - (xy 122.154468 87.822725) (xy 121.947625 88.029568) (xy 121.8311 88.20396) (xy 121.714575 88.029568) (xy 121.507732 87.822725) - (xy 121.264511 87.66021) (xy 120.994258 87.548268) (xy 120.70736 87.4912) (xy 120.41484 87.4912) (xy 120.127942 87.548268) - (xy 119.857689 87.66021) (xy 119.614468 87.822725) (xy 119.407625 88.029568) (xy 119.2911 88.20396) (xy 119.174575 88.029568) - (xy 118.967732 87.822725) (xy 118.724511 87.66021) (xy 118.454258 87.548268) (xy 118.16736 87.4912) (xy 117.87484 87.4912) - (xy 117.587942 87.548268) (xy 117.317689 87.66021) (xy 117.074468 87.822725) (xy 116.867625 88.029568) (xy 116.7511 88.20396) - (xy 116.634575 88.029568) (xy 116.427732 87.822725) (xy 116.184511 87.66021) (xy 115.914258 87.548268) (xy 115.62736 87.4912) - (xy 115.33484 87.4912) (xy 115.047942 87.548268) (xy 114.777689 87.66021) (xy 114.534468 87.822725) (xy 114.402613 87.95458) - (xy 114.380602 87.88202) (xy 114.321637 87.771706) (xy 114.242285 87.675015) (xy 114.145594 87.595663) (xy 114.03528 87.536698) - (xy 113.915582 87.500388) (xy 113.7911 87.488128) (xy 112.0911 87.488128) (xy 111.966618 87.500388) (xy 111.84692 87.536698) - (xy 111.736606 87.595663) (xy 111.639915 87.675015) (xy 111.560563 87.771706) (xy 111.501598 87.88202) (xy 111.465288 88.001718) - (xy 111.453028 88.1262) (xy 111.023 88.1262) (xy 111.023 87.1089) (xy 173.317301 87.1089) - ) - ) - ) - (zone (net 10) (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 176.0601 130.0734) (xy 89.92235 130.2766) (xy 89.73185 83.4136) (xy 175.8696 83.2104) - ) - ) - (filled_polygon - (pts - (xy 173.3173 108.814) (xy 111.023 108.814) (xy 111.023 105.508902) (xy 127.356003 105.508902) (xy 127.427586 105.752871) - (xy 127.683096 105.873771) (xy 127.957284 105.9425) (xy 128.239612 105.956417) (xy 128.51923 105.914987) (xy 128.785392 105.819803) - (xy 128.910614 105.752871) (xy 128.982197 105.508902) (xy 128.1691 104.695805) (xy 127.356003 105.508902) (xy 111.023 105.508902) - (xy 111.023 101.716675) (xy 117.2191 101.716675) (xy 117.2191 102.235725) (xy 117.320361 102.744801) (xy 117.518993 103.224341) - (xy 117.807362 103.655915) (xy 118.174385 104.022938) (xy 118.605959 104.311307) (xy 119.085499 104.509939) (xy 119.594575 104.6112) - (xy 120.113625 104.6112) (xy 120.236735 104.586712) (xy 126.728883 104.586712) (xy 126.770313 104.86633) (xy 126.865497 105.132492) - (xy 126.932429 105.257714) (xy 127.176398 105.329297) (xy 127.989495 104.5162) (xy 128.348705 104.5162) (xy 129.161802 105.329297) - (xy 129.405771 105.257714) (xy 129.526671 105.002204) (xy 129.552312 104.899911) (xy 129.559247 104.934774) (xy 129.66742 105.195927) - (xy 129.824463 105.430959) (xy 130.024341 105.630837) (xy 130.259373 105.78788) (xy 130.520526 105.896053) (xy 130.797765 105.9512) - (xy 131.080435 105.9512) (xy 131.357674 105.896053) (xy 131.618827 105.78788) (xy 131.853859 105.630837) (xy 131.975794 105.508902) - (xy 132.896003 105.508902) (xy 132.967586 105.752871) (xy 133.223096 105.873771) (xy 133.497284 105.9425) (xy 133.779612 105.956417) - (xy 134.05923 105.914987) (xy 134.325392 105.819803) (xy 134.450614 105.752871) (xy 134.522197 105.508902) (xy 133.7091 104.695805) - (xy 132.896003 105.508902) (xy 131.975794 105.508902) (xy 132.053737 105.430959) (xy 132.21078 105.195927) (xy 132.318953 104.934774) - (xy 132.324613 104.906318) (xy 132.405497 105.132492) (xy 132.472429 105.257714) (xy 132.716398 105.329297) (xy 133.529495 104.5162) - (xy 133.888705 104.5162) (xy 134.701802 105.329297) (xy 134.945771 105.257714) (xy 135.066671 105.002204) (xy 135.092312 104.899911) - (xy 135.099247 104.934774) (xy 135.20742 105.195927) (xy 135.364463 105.430959) (xy 135.564341 105.630837) (xy 135.799373 105.78788) - (xy 136.060526 105.896053) (xy 136.337765 105.9512) (xy 136.620435 105.9512) (xy 136.897674 105.896053) (xy 137.158827 105.78788) - (xy 137.393859 105.630837) (xy 137.515794 105.508902) (xy 138.436003 105.508902) (xy 138.507586 105.752871) (xy 138.763096 105.873771) - (xy 139.037284 105.9425) (xy 139.319612 105.956417) (xy 139.59923 105.914987) (xy 139.865392 105.819803) (xy 139.990614 105.752871) - (xy 140.062197 105.508902) (xy 139.2491 104.695805) (xy 138.436003 105.508902) (xy 137.515794 105.508902) (xy 137.593737 105.430959) - (xy 137.75078 105.195927) (xy 137.858953 104.934774) (xy 137.864613 104.906318) (xy 137.945497 105.132492) (xy 138.012429 105.257714) - (xy 138.256398 105.329297) (xy 139.069495 104.5162) (xy 139.428705 104.5162) (xy 140.241802 105.329297) (xy 140.485771 105.257714) - (xy 140.606671 105.002204) (xy 140.632312 104.899911) (xy 140.639247 104.934774) (xy 140.74742 105.195927) (xy 140.904463 105.430959) - (xy 141.104341 105.630837) (xy 141.339373 105.78788) (xy 141.600526 105.896053) (xy 141.877765 105.9512) (xy 142.160435 105.9512) - (xy 142.437674 105.896053) (xy 142.698827 105.78788) (xy 142.933859 105.630837) (xy 143.133737 105.430959) (xy 143.29078 105.195927) - (xy 143.398953 104.934774) (xy 143.4041 104.908899) (xy 143.409247 104.934774) (xy 143.51742 105.195927) (xy 143.674463 105.430959) - (xy 143.874341 105.630837) (xy 144.109373 105.78788) (xy 144.370526 105.896053) (xy 144.647765 105.9512) (xy 144.930435 105.9512) - (xy 145.207674 105.896053) (xy 145.468827 105.78788) (xy 145.703859 105.630837) (xy 145.903737 105.430959) (xy 146.06078 105.195927) - (xy 146.168953 104.934774) (xy 146.1741 104.908899) (xy 146.179247 104.934774) (xy 146.28742 105.195927) (xy 146.444463 105.430959) - (xy 146.644341 105.630837) (xy 146.879373 105.78788) (xy 147.140526 105.896053) (xy 147.417765 105.9512) (xy 147.700435 105.9512) - (xy 147.977674 105.896053) (xy 148.238827 105.78788) (xy 148.473859 105.630837) (xy 148.673737 105.430959) (xy 148.83078 105.195927) - (xy 148.938953 104.934774) (xy 148.9441 104.908899) (xy 148.949247 104.934774) (xy 149.05742 105.195927) (xy 149.214463 105.430959) - (xy 149.414341 105.630837) (xy 149.649373 105.78788) (xy 149.910526 105.896053) (xy 150.187765 105.9512) (xy 150.470435 105.9512) - (xy 150.747674 105.896053) (xy 151.008827 105.78788) (xy 151.243859 105.630837) (xy 151.443737 105.430959) (xy 151.60078 105.195927) - (xy 151.708953 104.934774) (xy 151.7141 104.908899) (xy 151.719247 104.934774) (xy 151.82742 105.195927) (xy 151.984463 105.430959) - (xy 152.184341 105.630837) (xy 152.419373 105.78788) (xy 152.680526 105.896053) (xy 152.957765 105.9512) (xy 153.240435 105.9512) - (xy 153.517674 105.896053) (xy 153.778827 105.78788) (xy 154.013859 105.630837) (xy 154.135794 105.508902) (xy 155.056003 105.508902) - (xy 155.127586 105.752871) (xy 155.383096 105.873771) (xy 155.657284 105.9425) (xy 155.939612 105.956417) (xy 156.21923 105.914987) - (xy 156.485392 105.819803) (xy 156.610614 105.752871) (xy 156.682197 105.508902) (xy 157.826003 105.508902) (xy 157.897586 105.752871) - (xy 158.153096 105.873771) (xy 158.427284 105.9425) (xy 158.709612 105.956417) (xy 158.98923 105.914987) (xy 159.255392 105.819803) - (xy 159.380614 105.752871) (xy 159.452197 105.508902) (xy 158.6391 104.695805) (xy 157.826003 105.508902) (xy 156.682197 105.508902) - (xy 155.8691 104.695805) (xy 155.056003 105.508902) (xy 154.135794 105.508902) (xy 154.213737 105.430959) (xy 154.37078 105.195927) - (xy 154.478953 104.934774) (xy 154.484613 104.906318) (xy 154.565497 105.132492) (xy 154.632429 105.257714) (xy 154.876398 105.329297) - (xy 155.689495 104.5162) (xy 156.048705 104.5162) (xy 156.861802 105.329297) (xy 157.105771 105.257714) (xy 157.226671 105.002204) - (xy 157.252316 104.899895) (xy 157.335497 105.132492) (xy 157.402429 105.257714) (xy 157.646398 105.329297) (xy 158.459495 104.5162) - (xy 158.818705 104.5162) (xy 159.631802 105.329297) (xy 159.875771 105.257714) (xy 159.996671 105.002204) (xy 160.0654 104.728016) - (xy 160.079317 104.445688) (xy 160.037887 104.16607) (xy 159.942703 103.899908) (xy 159.875771 103.774686) (xy 159.631802 103.703103) - (xy 158.818705 104.5162) (xy 158.459495 104.5162) (xy 157.646398 103.703103) (xy 157.402429 103.774686) (xy 157.281529 104.030196) - (xy 157.255884 104.132505) (xy 157.172703 103.899908) (xy 157.105771 103.774686) (xy 156.861802 103.703103) (xy 156.048705 104.5162) - (xy 155.689495 104.5162) (xy 154.876398 103.703103) (xy 154.632429 103.774686) (xy 154.511529 104.030196) (xy 154.485888 104.132489) - (xy 154.478953 104.097626) (xy 154.37078 103.836473) (xy 154.213737 103.601441) (xy 154.135794 103.523498) (xy 155.056003 103.523498) - (xy 155.8691 104.336595) (xy 156.682197 103.523498) (xy 157.826003 103.523498) (xy 158.6391 104.336595) (xy 159.452197 103.523498) - (xy 159.380614 103.279529) (xy 159.125104 103.158629) (xy 158.850916 103.0899) (xy 158.568588 103.075983) (xy 158.28897 103.117413) - (xy 158.022808 103.212597) (xy 157.897586 103.279529) (xy 157.826003 103.523498) (xy 156.682197 103.523498) (xy 156.610614 103.279529) - (xy 156.355104 103.158629) (xy 156.080916 103.0899) (xy 155.798588 103.075983) (xy 155.51897 103.117413) (xy 155.252808 103.212597) - (xy 155.127586 103.279529) (xy 155.056003 103.523498) (xy 154.135794 103.523498) (xy 154.013859 103.401563) (xy 153.778827 103.24452) - (xy 153.517674 103.136347) (xy 153.240435 103.0812) (xy 152.957765 103.0812) (xy 152.680526 103.136347) (xy 152.419373 103.24452) - (xy 152.184341 103.401563) (xy 151.984463 103.601441) (xy 151.82742 103.836473) (xy 151.719247 104.097626) (xy 151.7141 104.123501) - (xy 151.708953 104.097626) (xy 151.60078 103.836473) (xy 151.443737 103.601441) (xy 151.243859 103.401563) (xy 151.008827 103.24452) - (xy 150.747674 103.136347) (xy 150.470435 103.0812) (xy 150.187765 103.0812) (xy 149.910526 103.136347) (xy 149.649373 103.24452) - (xy 149.414341 103.401563) (xy 149.214463 103.601441) (xy 149.05742 103.836473) (xy 148.949247 104.097626) (xy 148.9441 104.123501) - (xy 148.938953 104.097626) (xy 148.83078 103.836473) (xy 148.673737 103.601441) (xy 148.473859 103.401563) (xy 148.238827 103.24452) - (xy 147.977674 103.136347) (xy 147.700435 103.0812) (xy 147.417765 103.0812) (xy 147.140526 103.136347) (xy 146.879373 103.24452) - (xy 146.644341 103.401563) (xy 146.444463 103.601441) (xy 146.28742 103.836473) (xy 146.179247 104.097626) (xy 146.1741 104.123501) - (xy 146.168953 104.097626) (xy 146.06078 103.836473) (xy 145.903737 103.601441) (xy 145.703859 103.401563) (xy 145.468827 103.24452) - (xy 145.207674 103.136347) (xy 144.930435 103.0812) (xy 144.647765 103.0812) (xy 144.370526 103.136347) (xy 144.109373 103.24452) - (xy 143.874341 103.401563) (xy 143.674463 103.601441) (xy 143.51742 103.836473) (xy 143.409247 104.097626) (xy 143.4041 104.123501) - (xy 143.398953 104.097626) (xy 143.29078 103.836473) (xy 143.133737 103.601441) (xy 142.933859 103.401563) (xy 142.698827 103.24452) - (xy 142.437674 103.136347) (xy 142.160435 103.0812) (xy 141.877765 103.0812) (xy 141.600526 103.136347) (xy 141.339373 103.24452) - (xy 141.104341 103.401563) (xy 140.904463 103.601441) (xy 140.74742 103.836473) (xy 140.639247 104.097626) (xy 140.633587 104.126082) - (xy 140.552703 103.899908) (xy 140.485771 103.774686) (xy 140.241802 103.703103) (xy 139.428705 104.5162) (xy 139.069495 104.5162) - (xy 138.256398 103.703103) (xy 138.012429 103.774686) (xy 137.891529 104.030196) (xy 137.865888 104.132489) (xy 137.858953 104.097626) - (xy 137.75078 103.836473) (xy 137.593737 103.601441) (xy 137.515794 103.523498) (xy 138.436003 103.523498) (xy 139.2491 104.336595) - (xy 140.062197 103.523498) (xy 139.990614 103.279529) (xy 139.735104 103.158629) (xy 139.460916 103.0899) (xy 139.178588 103.075983) - (xy 138.89897 103.117413) (xy 138.632808 103.212597) (xy 138.507586 103.279529) (xy 138.436003 103.523498) (xy 137.515794 103.523498) - (xy 137.393859 103.401563) (xy 137.158827 103.24452) (xy 136.897674 103.136347) (xy 136.620435 103.0812) (xy 136.337765 103.0812) - (xy 136.060526 103.136347) (xy 135.799373 103.24452) (xy 135.564341 103.401563) (xy 135.364463 103.601441) (xy 135.20742 103.836473) - (xy 135.099247 104.097626) (xy 135.093587 104.126082) (xy 135.012703 103.899908) (xy 134.945771 103.774686) (xy 134.701802 103.703103) - (xy 133.888705 104.5162) (xy 133.529495 104.5162) (xy 132.716398 103.703103) (xy 132.472429 103.774686) (xy 132.351529 104.030196) - (xy 132.325888 104.132489) (xy 132.318953 104.097626) (xy 132.21078 103.836473) (xy 132.053737 103.601441) (xy 131.975794 103.523498) - (xy 132.896003 103.523498) (xy 133.7091 104.336595) (xy 134.522197 103.523498) (xy 134.450614 103.279529) (xy 134.195104 103.158629) - (xy 133.920916 103.0899) (xy 133.638588 103.075983) (xy 133.35897 103.117413) (xy 133.092808 103.212597) (xy 132.967586 103.279529) - (xy 132.896003 103.523498) (xy 131.975794 103.523498) (xy 131.853859 103.401563) (xy 131.618827 103.24452) (xy 131.357674 103.136347) - (xy 131.080435 103.0812) (xy 130.797765 103.0812) (xy 130.520526 103.136347) (xy 130.259373 103.24452) (xy 130.024341 103.401563) - (xy 129.824463 103.601441) (xy 129.66742 103.836473) (xy 129.559247 104.097626) (xy 129.553587 104.126082) (xy 129.472703 103.899908) - (xy 129.405771 103.774686) (xy 129.161802 103.703103) (xy 128.348705 104.5162) (xy 127.989495 104.5162) (xy 127.176398 103.703103) - (xy 126.932429 103.774686) (xy 126.811529 104.030196) (xy 126.7428 104.304384) (xy 126.728883 104.586712) (xy 120.236735 104.586712) - (xy 120.622701 104.509939) (xy 121.102241 104.311307) (xy 121.533815 104.022938) (xy 121.900838 103.655915) (xy 121.989316 103.523498) - (xy 127.356003 103.523498) (xy 128.1691 104.336595) (xy 128.982197 103.523498) (xy 128.910614 103.279529) (xy 128.655104 103.158629) - (xy 128.380916 103.0899) (xy 128.098588 103.075983) (xy 127.81897 103.117413) (xy 127.552808 103.212597) (xy 127.427586 103.279529) - (xy 127.356003 103.523498) (xy 121.989316 103.523498) (xy 122.189207 103.224341) (xy 122.387839 102.744801) (xy 122.4891 102.235725) - (xy 122.4891 101.716675) (xy 122.387839 101.207599) (xy 122.25057 100.8762) (xy 125.346028 100.8762) (xy 125.346028 102.4762) - (xy 125.358288 102.600682) (xy 125.394598 102.72038) (xy 125.453563 102.830694) (xy 125.532915 102.927385) (xy 125.629606 103.006737) - (xy 125.73992 103.065702) (xy 125.859618 103.102012) (xy 125.9841 103.114272) (xy 127.5841 103.114272) (xy 127.708582 103.102012) - (xy 127.82828 103.065702) (xy 127.938594 103.006737) (xy 128.035285 102.927385) (xy 128.114637 102.830694) (xy 128.173602 102.72038) - (xy 128.209912 102.600682) (xy 128.222172 102.4762) (xy 128.222172 102.210475) (xy 128.28242 102.355927) (xy 128.439463 102.590959) - (xy 128.639341 102.790837) (xy 128.874373 102.94788) (xy 129.135526 103.056053) (xy 129.412765 103.1112) (xy 129.695435 103.1112) - (xy 129.972674 103.056053) (xy 130.233827 102.94788) (xy 130.468859 102.790837) (xy 130.668737 102.590959) (xy 130.82578 102.355927) - (xy 130.933953 102.094774) (xy 130.9391 102.068899) (xy 130.944247 102.094774) (xy 131.05242 102.355927) (xy 131.209463 102.590959) - (xy 131.409341 102.790837) (xy 131.644373 102.94788) (xy 131.905526 103.056053) (xy 132.182765 103.1112) (xy 132.465435 103.1112) - (xy 132.742674 103.056053) (xy 133.003827 102.94788) (xy 133.238859 102.790837) (xy 133.438737 102.590959) (xy 133.59578 102.355927) - (xy 133.703953 102.094774) (xy 133.7091 102.068899) (xy 133.714247 102.094774) (xy 133.82242 102.355927) (xy 133.979463 102.590959) - (xy 134.179341 102.790837) (xy 134.414373 102.94788) (xy 134.675526 103.056053) (xy 134.952765 103.1112) (xy 135.235435 103.1112) - (xy 135.512674 103.056053) (xy 135.773827 102.94788) (xy 136.008859 102.790837) (xy 136.208737 102.590959) (xy 136.36578 102.355927) - (xy 136.473953 102.094774) (xy 136.4791 102.068899) (xy 136.484247 102.094774) (xy 136.59242 102.355927) (xy 136.749463 102.590959) - (xy 136.949341 102.790837) (xy 137.184373 102.94788) (xy 137.445526 103.056053) (xy 137.722765 103.1112) (xy 138.005435 103.1112) - (xy 138.282674 103.056053) (xy 138.543827 102.94788) (xy 138.778859 102.790837) (xy 138.978737 102.590959) (xy 139.13578 102.355927) - (xy 139.243953 102.094774) (xy 139.2491 102.068899) (xy 139.254247 102.094774) (xy 139.36242 102.355927) (xy 139.519463 102.590959) - (xy 139.719341 102.790837) (xy 139.954373 102.94788) (xy 140.215526 103.056053) (xy 140.492765 103.1112) (xy 140.775435 103.1112) - (xy 141.052674 103.056053) (xy 141.313827 102.94788) (xy 141.548859 102.790837) (xy 141.670794 102.668902) (xy 142.591003 102.668902) - (xy 142.662586 102.912871) (xy 142.918096 103.033771) (xy 143.192284 103.1025) (xy 143.474612 103.116417) (xy 143.75423 103.074987) - (xy 144.020392 102.979803) (xy 144.145614 102.912871) (xy 144.217197 102.668902) (xy 143.4041 101.855805) (xy 142.591003 102.668902) - (xy 141.670794 102.668902) (xy 141.748737 102.590959) (xy 141.90578 102.355927) (xy 142.013953 102.094774) (xy 142.019613 102.066318) - (xy 142.100497 102.292492) (xy 142.167429 102.417714) (xy 142.411398 102.489297) (xy 143.224495 101.6762) (xy 143.583705 101.6762) - (xy 144.396802 102.489297) (xy 144.640771 102.417714) (xy 144.761671 102.162204) (xy 144.787312 102.059911) (xy 144.794247 102.094774) - (xy 144.90242 102.355927) (xy 145.059463 102.590959) (xy 145.259341 102.790837) (xy 145.494373 102.94788) (xy 145.755526 103.056053) - (xy 146.032765 103.1112) (xy 146.315435 103.1112) (xy 146.592674 103.056053) (xy 146.853827 102.94788) (xy 147.088859 102.790837) - (xy 147.210794 102.668902) (xy 148.131003 102.668902) (xy 148.202586 102.912871) (xy 148.458096 103.033771) (xy 148.732284 103.1025) - (xy 149.014612 103.116417) (xy 149.29423 103.074987) (xy 149.560392 102.979803) (xy 149.685614 102.912871) (xy 149.757197 102.668902) - (xy 148.9441 101.855805) (xy 148.131003 102.668902) (xy 147.210794 102.668902) (xy 147.288737 102.590959) (xy 147.44578 102.355927) - (xy 147.553953 102.094774) (xy 147.559613 102.066318) (xy 147.640497 102.292492) (xy 147.707429 102.417714) (xy 147.951398 102.489297) - (xy 148.764495 101.6762) (xy 149.123705 101.6762) (xy 149.936802 102.489297) (xy 150.180771 102.417714) (xy 150.301671 102.162204) - (xy 150.327312 102.059911) (xy 150.334247 102.094774) (xy 150.44242 102.355927) (xy 150.599463 102.590959) (xy 150.799341 102.790837) - (xy 151.034373 102.94788) (xy 151.295526 103.056053) (xy 151.572765 103.1112) (xy 151.855435 103.1112) (xy 152.132674 103.056053) - (xy 152.393827 102.94788) (xy 152.628859 102.790837) (xy 152.828737 102.590959) (xy 152.98578 102.355927) (xy 153.093953 102.094774) - (xy 153.0991 102.068899) (xy 153.104247 102.094774) (xy 153.21242 102.355927) (xy 153.369463 102.590959) (xy 153.569341 102.790837) - (xy 153.804373 102.94788) (xy 154.065526 103.056053) (xy 154.342765 103.1112) (xy 154.625435 103.1112) (xy 154.902674 103.056053) - (xy 155.163827 102.94788) (xy 155.398859 102.790837) (xy 155.598737 102.590959) (xy 155.75578 102.355927) (xy 155.863953 102.094774) - (xy 155.8691 102.068899) (xy 155.874247 102.094774) (xy 155.98242 102.355927) (xy 156.139463 102.590959) (xy 156.339341 102.790837) - (xy 156.574373 102.94788) (xy 156.835526 103.056053) (xy 157.112765 103.1112) (xy 157.395435 103.1112) (xy 157.672674 103.056053) - (xy 157.933827 102.94788) (xy 158.168859 102.790837) (xy 158.368737 102.590959) (xy 158.52578 102.355927) (xy 158.633953 102.094774) - (xy 158.6391 102.068899) (xy 158.644247 102.094774) (xy 158.75242 102.355927) (xy 158.909463 102.590959) (xy 159.109341 102.790837) - (xy 159.344373 102.94788) (xy 159.605526 103.056053) (xy 159.882765 103.1112) (xy 160.165435 103.1112) (xy 160.442674 103.056053) - (xy 160.703827 102.94788) (xy 160.938859 102.790837) (xy 161.138737 102.590959) (xy 161.29578 102.355927) (xy 161.403953 102.094774) - (xy 161.4591 101.817535) (xy 161.4591 101.716675) (xy 164.3191 101.716675) (xy 164.3191 102.235725) (xy 164.420361 102.744801) - (xy 164.618993 103.224341) (xy 164.907362 103.655915) (xy 165.274385 104.022938) (xy 165.705959 104.311307) (xy 166.185499 104.509939) - (xy 166.694575 104.6112) (xy 167.213625 104.6112) (xy 167.722701 104.509939) (xy 168.202241 104.311307) (xy 168.633815 104.022938) - (xy 169.000838 103.655915) (xy 169.289207 103.224341) (xy 169.487839 102.744801) (xy 169.5891 102.235725) (xy 169.5891 101.716675) - (xy 169.487839 101.207599) (xy 169.289207 100.728059) (xy 169.000838 100.296485) (xy 168.633815 99.929462) (xy 168.202241 99.641093) - (xy 167.722701 99.442461) (xy 167.213625 99.3412) (xy 166.694575 99.3412) (xy 166.185499 99.442461) (xy 165.705959 99.641093) - (xy 165.274385 99.929462) (xy 164.907362 100.296485) (xy 164.618993 100.728059) (xy 164.420361 101.207599) (xy 164.3191 101.716675) - (xy 161.4591 101.716675) (xy 161.4591 101.534865) (xy 161.403953 101.257626) (xy 161.29578 100.996473) (xy 161.138737 100.761441) - (xy 160.938859 100.561563) (xy 160.703827 100.40452) (xy 160.442674 100.296347) (xy 160.165435 100.2412) (xy 159.882765 100.2412) - (xy 159.605526 100.296347) (xy 159.344373 100.40452) (xy 159.109341 100.561563) (xy 158.909463 100.761441) (xy 158.75242 100.996473) - (xy 158.644247 101.257626) (xy 158.6391 101.283501) (xy 158.633953 101.257626) (xy 158.52578 100.996473) (xy 158.368737 100.761441) - (xy 158.168859 100.561563) (xy 157.933827 100.40452) (xy 157.672674 100.296347) (xy 157.395435 100.2412) (xy 157.112765 100.2412) - (xy 156.835526 100.296347) (xy 156.574373 100.40452) (xy 156.339341 100.561563) (xy 156.139463 100.761441) (xy 155.98242 100.996473) - (xy 155.874247 101.257626) (xy 155.8691 101.283501) (xy 155.863953 101.257626) (xy 155.75578 100.996473) (xy 155.598737 100.761441) - (xy 155.398859 100.561563) (xy 155.163827 100.40452) (xy 154.902674 100.296347) (xy 154.625435 100.2412) (xy 154.342765 100.2412) - (xy 154.065526 100.296347) (xy 153.804373 100.40452) (xy 153.569341 100.561563) (xy 153.369463 100.761441) (xy 153.21242 100.996473) - (xy 153.104247 101.257626) (xy 153.0991 101.283501) (xy 153.093953 101.257626) (xy 152.98578 100.996473) (xy 152.828737 100.761441) - (xy 152.628859 100.561563) (xy 152.393827 100.40452) (xy 152.132674 100.296347) (xy 151.855435 100.2412) (xy 151.572765 100.2412) - (xy 151.295526 100.296347) (xy 151.034373 100.40452) (xy 150.799341 100.561563) (xy 150.599463 100.761441) (xy 150.44242 100.996473) - (xy 150.334247 101.257626) (xy 150.328587 101.286082) (xy 150.247703 101.059908) (xy 150.180771 100.934686) (xy 149.936802 100.863103) - (xy 149.123705 101.6762) (xy 148.764495 101.6762) (xy 147.951398 100.863103) (xy 147.707429 100.934686) (xy 147.586529 101.190196) - (xy 147.560888 101.292489) (xy 147.553953 101.257626) (xy 147.44578 100.996473) (xy 147.288737 100.761441) (xy 147.210794 100.683498) - (xy 148.131003 100.683498) (xy 148.9441 101.496595) (xy 149.757197 100.683498) (xy 149.685614 100.439529) (xy 149.430104 100.318629) - (xy 149.155916 100.2499) (xy 148.873588 100.235983) (xy 148.59397 100.277413) (xy 148.327808 100.372597) (xy 148.202586 100.439529) - (xy 148.131003 100.683498) (xy 147.210794 100.683498) (xy 147.088859 100.561563) (xy 146.853827 100.40452) (xy 146.592674 100.296347) - (xy 146.315435 100.2412) (xy 146.032765 100.2412) (xy 145.755526 100.296347) (xy 145.494373 100.40452) (xy 145.259341 100.561563) - (xy 145.059463 100.761441) (xy 144.90242 100.996473) (xy 144.794247 101.257626) (xy 144.788587 101.286082) (xy 144.707703 101.059908) - (xy 144.640771 100.934686) (xy 144.396802 100.863103) (xy 143.583705 101.6762) (xy 143.224495 101.6762) (xy 142.411398 100.863103) - (xy 142.167429 100.934686) (xy 142.046529 101.190196) (xy 142.020888 101.292489) (xy 142.013953 101.257626) (xy 141.90578 100.996473) - (xy 141.748737 100.761441) (xy 141.670794 100.683498) (xy 142.591003 100.683498) (xy 143.4041 101.496595) (xy 144.217197 100.683498) - (xy 144.145614 100.439529) (xy 143.890104 100.318629) (xy 143.615916 100.2499) (xy 143.333588 100.235983) (xy 143.05397 100.277413) - (xy 142.787808 100.372597) (xy 142.662586 100.439529) (xy 142.591003 100.683498) (xy 141.670794 100.683498) (xy 141.548859 100.561563) - (xy 141.313827 100.40452) (xy 141.052674 100.296347) (xy 140.775435 100.2412) (xy 140.492765 100.2412) (xy 140.215526 100.296347) - (xy 139.954373 100.40452) (xy 139.719341 100.561563) (xy 139.519463 100.761441) (xy 139.36242 100.996473) (xy 139.254247 101.257626) - (xy 139.2491 101.283501) (xy 139.243953 101.257626) (xy 139.13578 100.996473) (xy 138.978737 100.761441) (xy 138.778859 100.561563) - (xy 138.543827 100.40452) (xy 138.282674 100.296347) (xy 138.005435 100.2412) (xy 137.722765 100.2412) (xy 137.445526 100.296347) - (xy 137.184373 100.40452) (xy 136.949341 100.561563) (xy 136.749463 100.761441) (xy 136.59242 100.996473) (xy 136.484247 101.257626) - (xy 136.4791 101.283501) (xy 136.473953 101.257626) (xy 136.36578 100.996473) (xy 136.208737 100.761441) (xy 136.008859 100.561563) - (xy 135.773827 100.40452) (xy 135.512674 100.296347) (xy 135.235435 100.2412) (xy 134.952765 100.2412) (xy 134.675526 100.296347) - (xy 134.414373 100.40452) (xy 134.179341 100.561563) (xy 133.979463 100.761441) (xy 133.82242 100.996473) (xy 133.714247 101.257626) - (xy 133.7091 101.283501) (xy 133.703953 101.257626) (xy 133.59578 100.996473) (xy 133.438737 100.761441) (xy 133.238859 100.561563) - (xy 133.003827 100.40452) (xy 132.742674 100.296347) (xy 132.465435 100.2412) (xy 132.182765 100.2412) (xy 131.905526 100.296347) - (xy 131.644373 100.40452) (xy 131.409341 100.561563) (xy 131.209463 100.761441) (xy 131.05242 100.996473) (xy 130.944247 101.257626) - (xy 130.9391 101.283501) (xy 130.933953 101.257626) (xy 130.82578 100.996473) (xy 130.668737 100.761441) (xy 130.468859 100.561563) - (xy 130.233827 100.40452) (xy 129.972674 100.296347) (xy 129.695435 100.2412) (xy 129.412765 100.2412) (xy 129.135526 100.296347) - (xy 128.874373 100.40452) (xy 128.639341 100.561563) (xy 128.439463 100.761441) (xy 128.28242 100.996473) (xy 128.222172 101.141925) - (xy 128.222172 100.8762) (xy 128.209912 100.751718) (xy 128.173602 100.63202) (xy 128.114637 100.521706) (xy 128.035285 100.425015) - (xy 127.938594 100.345663) (xy 127.82828 100.286698) (xy 127.708582 100.250388) (xy 127.5841 100.238128) (xy 125.9841 100.238128) - (xy 125.859618 100.250388) (xy 125.73992 100.286698) (xy 125.629606 100.345663) (xy 125.532915 100.425015) (xy 125.453563 100.521706) - (xy 125.394598 100.63202) (xy 125.358288 100.751718) (xy 125.346028 100.8762) (xy 122.25057 100.8762) (xy 122.189207 100.728059) - (xy 121.900838 100.296485) (xy 121.533815 99.929462) (xy 121.102241 99.641093) (xy 120.622701 99.442461) (xy 120.113625 99.3412) - (xy 119.594575 99.3412) (xy 119.085499 99.442461) (xy 118.605959 99.641093) (xy 118.174385 99.929462) (xy 117.807362 100.296485) - (xy 117.518993 100.728059) (xy 117.320361 101.207599) (xy 117.2191 101.716675) (xy 111.023 101.716675) (xy 111.023 88.1262) - (xy 111.453028 88.1262) (xy 111.453028 89.8262) (xy 111.465288 89.950682) (xy 111.501598 90.07038) (xy 111.560563 90.180694) - (xy 111.639915 90.277385) (xy 111.736606 90.356737) (xy 111.84692 90.415702) (xy 111.91948 90.437713) (xy 111.787625 90.569568) - (xy 111.62511 90.812789) (xy 111.513168 91.083042) (xy 111.4561 91.36994) (xy 111.4561 91.66246) (xy 111.513168 91.949358) - (xy 111.62511 92.219611) (xy 111.787625 92.462832) (xy 111.994468 92.669675) (xy 112.237689 92.83219) (xy 112.507942 92.944132) - (xy 112.79484 93.0012) (xy 113.08736 93.0012) (xy 113.374258 92.944132) (xy 113.644511 92.83219) (xy 113.887732 92.669675) - (xy 114.094575 92.462832) (xy 114.2111 92.28844) (xy 114.327625 92.462832) (xy 114.534468 92.669675) (xy 114.777689 92.83219) - (xy 115.047942 92.944132) (xy 115.33484 93.0012) (xy 115.62736 93.0012) (xy 115.914258 92.944132) (xy 116.184511 92.83219) - (xy 116.427732 92.669675) (xy 116.634575 92.462832) (xy 116.7511 92.28844) (xy 116.867625 92.462832) (xy 117.074468 92.669675) - (xy 117.317689 92.83219) (xy 117.587942 92.944132) (xy 117.87484 93.0012) (xy 118.16736 93.0012) (xy 118.454258 92.944132) - (xy 118.724511 92.83219) (xy 118.967732 92.669675) (xy 119.174575 92.462832) (xy 119.2911 92.28844) (xy 119.407625 92.462832) - (xy 119.614468 92.669675) (xy 119.857689 92.83219) (xy 120.127942 92.944132) (xy 120.41484 93.0012) (xy 120.70736 93.0012) - (xy 120.994258 92.944132) (xy 121.264511 92.83219) (xy 121.507732 92.669675) (xy 121.714575 92.462832) (xy 121.8311 92.28844) - (xy 121.947625 92.462832) (xy 122.154468 92.669675) (xy 122.397689 92.83219) (xy 122.667942 92.944132) (xy 122.95484 93.0012) - (xy 123.24736 93.0012) (xy 123.534258 92.944132) (xy 123.804511 92.83219) (xy 124.047732 92.669675) (xy 124.254575 92.462832) - (xy 124.3711 92.28844) (xy 124.487625 92.462832) (xy 124.694468 92.669675) (xy 124.937689 92.83219) (xy 125.207942 92.944132) - (xy 125.49484 93.0012) (xy 125.78736 93.0012) (xy 126.074258 92.944132) (xy 126.344511 92.83219) (xy 126.587732 92.669675) - (xy 126.794575 92.462832) (xy 126.9111 92.28844) (xy 127.027625 92.462832) (xy 127.234468 92.669675) (xy 127.477689 92.83219) - (xy 127.747942 92.944132) (xy 128.03484 93.0012) (xy 128.32736 93.0012) (xy 128.614258 92.944132) (xy 128.884511 92.83219) - (xy 129.127732 92.669675) (xy 129.334575 92.462832) (xy 129.4511 92.28844) (xy 129.567625 92.462832) (xy 129.774468 92.669675) - (xy 130.017689 92.83219) (xy 130.287942 92.944132) (xy 130.57484 93.0012) (xy 130.86736 93.0012) (xy 131.154258 92.944132) - (xy 131.424511 92.83219) (xy 131.667732 92.669675) (xy 131.874575 92.462832) (xy 131.9911 92.28844) (xy 132.107625 92.462832) - (xy 132.314468 92.669675) (xy 132.557689 92.83219) (xy 132.827942 92.944132) (xy 133.11484 93.0012) (xy 133.40736 93.0012) - (xy 133.694258 92.944132) (xy 133.964511 92.83219) (xy 134.207732 92.669675) (xy 134.414575 92.462832) (xy 134.5311 92.28844) - (xy 134.647625 92.462832) (xy 134.854468 92.669675) (xy 135.097689 92.83219) (xy 135.367942 92.944132) (xy 135.65484 93.0012) - (xy 135.94736 93.0012) (xy 136.234258 92.944132) (xy 136.504511 92.83219) (xy 136.747732 92.669675) (xy 136.954575 92.462832) - (xy 137.0711 92.28844) (xy 137.187625 92.462832) (xy 137.394468 92.669675) (xy 137.637689 92.83219) (xy 137.907942 92.944132) - (xy 138.19484 93.0012) (xy 138.48736 93.0012) (xy 138.774258 92.944132) (xy 139.044511 92.83219) (xy 139.287732 92.669675) - (xy 139.494575 92.462832) (xy 139.6111 92.28844) (xy 139.727625 92.462832) (xy 139.934468 92.669675) (xy 140.177689 92.83219) - (xy 140.447942 92.944132) (xy 140.73484 93.0012) (xy 141.02736 93.0012) (xy 141.314258 92.944132) (xy 141.584511 92.83219) - (xy 141.827732 92.669675) (xy 142.034575 92.462832) (xy 142.1511 92.28844) (xy 142.267625 92.462832) (xy 142.474468 92.669675) - (xy 142.717689 92.83219) (xy 142.987942 92.944132) (xy 143.27484 93.0012) (xy 143.56736 93.0012) (xy 143.854258 92.944132) - (xy 144.124511 92.83219) (xy 144.367732 92.669675) (xy 144.574575 92.462832) (xy 144.6911 92.28844) (xy 144.807625 92.462832) - (xy 145.014468 92.669675) (xy 145.257689 92.83219) (xy 145.527942 92.944132) (xy 145.81484 93.0012) (xy 146.10736 93.0012) - (xy 146.394258 92.944132) (xy 146.664511 92.83219) (xy 146.907732 92.669675) (xy 147.114575 92.462832) (xy 147.2311 92.28844) - (xy 147.347625 92.462832) (xy 147.554468 92.669675) (xy 147.797689 92.83219) (xy 148.067942 92.944132) (xy 148.35484 93.0012) - (xy 148.64736 93.0012) (xy 148.934258 92.944132) (xy 149.204511 92.83219) (xy 149.447732 92.669675) (xy 149.654575 92.462832) - (xy 149.7711 92.28844) (xy 149.887625 92.462832) (xy 150.094468 92.669675) (xy 150.337689 92.83219) (xy 150.607942 92.944132) - (xy 150.89484 93.0012) (xy 151.18736 93.0012) (xy 151.474258 92.944132) (xy 151.744511 92.83219) (xy 151.987732 92.669675) - (xy 152.194575 92.462832) (xy 152.3111 92.28844) (xy 152.427625 92.462832) (xy 152.634468 92.669675) (xy 152.877689 92.83219) - (xy 153.147942 92.944132) (xy 153.43484 93.0012) (xy 153.72736 93.0012) (xy 154.014258 92.944132) (xy 154.284511 92.83219) - (xy 154.527732 92.669675) (xy 154.734575 92.462832) (xy 154.8511 92.28844) (xy 154.967625 92.462832) (xy 155.174468 92.669675) - (xy 155.417689 92.83219) (xy 155.687942 92.944132) (xy 155.97484 93.0012) (xy 156.26736 93.0012) (xy 156.554258 92.944132) - (xy 156.824511 92.83219) (xy 157.067732 92.669675) (xy 157.274575 92.462832) (xy 157.3911 92.28844) (xy 157.507625 92.462832) - (xy 157.714468 92.669675) (xy 157.957689 92.83219) (xy 158.227942 92.944132) (xy 158.51484 93.0012) (xy 158.80736 93.0012) - (xy 159.094258 92.944132) (xy 159.364511 92.83219) (xy 159.607732 92.669675) (xy 159.814575 92.462832) (xy 159.9311 92.28844) - (xy 160.047625 92.462832) (xy 160.254468 92.669675) (xy 160.497689 92.83219) (xy 160.767942 92.944132) (xy 161.05484 93.0012) - (xy 161.34736 93.0012) (xy 161.634258 92.944132) (xy 161.904511 92.83219) (xy 162.147732 92.669675) (xy 162.354575 92.462832) - (xy 162.4711 92.28844) (xy 162.587625 92.462832) (xy 162.794468 92.669675) (xy 163.037689 92.83219) (xy 163.307942 92.944132) - (xy 163.59484 93.0012) (xy 163.88736 93.0012) (xy 164.174258 92.944132) (xy 164.444511 92.83219) (xy 164.687732 92.669675) - (xy 164.894575 92.462832) (xy 165.0111 92.28844) (xy 165.127625 92.462832) (xy 165.334468 92.669675) (xy 165.577689 92.83219) - (xy 165.847942 92.944132) (xy 166.13484 93.0012) (xy 166.42736 93.0012) (xy 166.714258 92.944132) (xy 166.984511 92.83219) - (xy 167.227732 92.669675) (xy 167.434575 92.462832) (xy 167.5511 92.28844) (xy 167.667625 92.462832) (xy 167.874468 92.669675) - (xy 168.117689 92.83219) (xy 168.387942 92.944132) (xy 168.67484 93.0012) (xy 168.96736 93.0012) (xy 169.254258 92.944132) - (xy 169.524511 92.83219) (xy 169.767732 92.669675) (xy 169.974575 92.462832) (xy 170.0911 92.28844) (xy 170.207625 92.462832) - (xy 170.414468 92.669675) (xy 170.657689 92.83219) (xy 170.927942 92.944132) (xy 171.21484 93.0012) (xy 171.50736 93.0012) - (xy 171.794258 92.944132) (xy 172.064511 92.83219) (xy 172.307732 92.669675) (xy 172.514575 92.462832) (xy 172.67709 92.219611) - (xy 172.789032 91.949358) (xy 172.8461 91.66246) (xy 172.8461 91.36994) (xy 172.789032 91.083042) (xy 172.67709 90.812789) - (xy 172.514575 90.569568) (xy 172.307732 90.362725) (xy 172.13334 90.2462) (xy 172.307732 90.129675) (xy 172.514575 89.922832) - (xy 172.67709 89.679611) (xy 172.789032 89.409358) (xy 172.8461 89.12246) (xy 172.8461 88.82994) (xy 172.789032 88.543042) - (xy 172.67709 88.272789) (xy 172.514575 88.029568) (xy 172.307732 87.822725) (xy 172.064511 87.66021) (xy 171.794258 87.548268) - (xy 171.50736 87.4912) (xy 171.21484 87.4912) (xy 170.927942 87.548268) (xy 170.657689 87.66021) (xy 170.414468 87.822725) - (xy 170.207625 88.029568) (xy 170.0911 88.20396) (xy 169.974575 88.029568) (xy 169.767732 87.822725) (xy 169.524511 87.66021) - (xy 169.254258 87.548268) (xy 168.96736 87.4912) (xy 168.67484 87.4912) (xy 168.387942 87.548268) (xy 168.117689 87.66021) - (xy 167.874468 87.822725) (xy 167.667625 88.029568) (xy 167.5511 88.20396) (xy 167.434575 88.029568) (xy 167.227732 87.822725) - (xy 166.984511 87.66021) (xy 166.714258 87.548268) (xy 166.42736 87.4912) (xy 166.13484 87.4912) (xy 165.847942 87.548268) - (xy 165.577689 87.66021) (xy 165.334468 87.822725) (xy 165.127625 88.029568) (xy 165.0111 88.20396) (xy 164.894575 88.029568) - (xy 164.687732 87.822725) (xy 164.444511 87.66021) (xy 164.174258 87.548268) (xy 163.88736 87.4912) (xy 163.59484 87.4912) - (xy 163.307942 87.548268) (xy 163.037689 87.66021) (xy 162.794468 87.822725) (xy 162.587625 88.029568) (xy 162.4711 88.20396) - (xy 162.354575 88.029568) (xy 162.147732 87.822725) (xy 161.904511 87.66021) (xy 161.634258 87.548268) (xy 161.34736 87.4912) - (xy 161.05484 87.4912) (xy 160.767942 87.548268) (xy 160.497689 87.66021) (xy 160.254468 87.822725) (xy 160.047625 88.029568) - (xy 159.9311 88.20396) (xy 159.814575 88.029568) (xy 159.607732 87.822725) (xy 159.364511 87.66021) (xy 159.094258 87.548268) - (xy 158.80736 87.4912) (xy 158.51484 87.4912) (xy 158.227942 87.548268) (xy 157.957689 87.66021) (xy 157.714468 87.822725) - (xy 157.507625 88.029568) (xy 157.3911 88.20396) (xy 157.274575 88.029568) (xy 157.067732 87.822725) (xy 156.824511 87.66021) - (xy 156.554258 87.548268) (xy 156.26736 87.4912) (xy 155.97484 87.4912) (xy 155.687942 87.548268) (xy 155.417689 87.66021) - (xy 155.174468 87.822725) (xy 154.967625 88.029568) (xy 154.8511 88.20396) (xy 154.734575 88.029568) (xy 154.527732 87.822725) - (xy 154.284511 87.66021) (xy 154.014258 87.548268) (xy 153.72736 87.4912) (xy 153.43484 87.4912) (xy 153.147942 87.548268) - (xy 152.877689 87.66021) (xy 152.634468 87.822725) (xy 152.427625 88.029568) (xy 152.3111 88.20396) (xy 152.194575 88.029568) - (xy 151.987732 87.822725) (xy 151.744511 87.66021) (xy 151.474258 87.548268) (xy 151.18736 87.4912) (xy 150.89484 87.4912) - (xy 150.607942 87.548268) (xy 150.337689 87.66021) (xy 150.094468 87.822725) (xy 149.887625 88.029568) (xy 149.7711 88.20396) - (xy 149.654575 88.029568) (xy 149.447732 87.822725) (xy 149.204511 87.66021) (xy 148.934258 87.548268) (xy 148.64736 87.4912) - (xy 148.35484 87.4912) (xy 148.067942 87.548268) (xy 147.797689 87.66021) (xy 147.554468 87.822725) (xy 147.347625 88.029568) - (xy 147.2311 88.20396) (xy 147.114575 88.029568) (xy 146.907732 87.822725) (xy 146.664511 87.66021) (xy 146.394258 87.548268) - (xy 146.10736 87.4912) (xy 145.81484 87.4912) (xy 145.527942 87.548268) (xy 145.257689 87.66021) (xy 145.014468 87.822725) - (xy 144.807625 88.029568) (xy 144.6911 88.20396) (xy 144.574575 88.029568) (xy 144.367732 87.822725) (xy 144.124511 87.66021) - (xy 143.854258 87.548268) (xy 143.56736 87.4912) (xy 143.27484 87.4912) (xy 142.987942 87.548268) (xy 142.717689 87.66021) - (xy 142.474468 87.822725) (xy 142.267625 88.029568) (xy 142.1511 88.20396) (xy 142.034575 88.029568) (xy 141.827732 87.822725) - (xy 141.584511 87.66021) (xy 141.314258 87.548268) (xy 141.02736 87.4912) (xy 140.73484 87.4912) (xy 140.447942 87.548268) - (xy 140.177689 87.66021) (xy 139.934468 87.822725) (xy 139.727625 88.029568) (xy 139.6111 88.20396) (xy 139.494575 88.029568) - (xy 139.287732 87.822725) (xy 139.044511 87.66021) (xy 138.774258 87.548268) (xy 138.48736 87.4912) (xy 138.19484 87.4912) - (xy 137.907942 87.548268) (xy 137.637689 87.66021) (xy 137.394468 87.822725) (xy 137.187625 88.029568) (xy 137.0711 88.20396) - (xy 136.954575 88.029568) (xy 136.747732 87.822725) (xy 136.504511 87.66021) (xy 136.234258 87.548268) (xy 135.94736 87.4912) - (xy 135.65484 87.4912) (xy 135.367942 87.548268) (xy 135.097689 87.66021) (xy 134.854468 87.822725) (xy 134.647625 88.029568) - (xy 134.5311 88.20396) (xy 134.414575 88.029568) (xy 134.207732 87.822725) (xy 133.964511 87.66021) (xy 133.694258 87.548268) - (xy 133.40736 87.4912) (xy 133.11484 87.4912) (xy 132.827942 87.548268) (xy 132.557689 87.66021) (xy 132.314468 87.822725) - (xy 132.107625 88.029568) (xy 131.9911 88.20396) (xy 131.874575 88.029568) (xy 131.667732 87.822725) (xy 131.424511 87.66021) - (xy 131.154258 87.548268) (xy 130.86736 87.4912) (xy 130.57484 87.4912) (xy 130.287942 87.548268) (xy 130.017689 87.66021) - (xy 129.774468 87.822725) (xy 129.567625 88.029568) (xy 129.4511 88.20396) (xy 129.334575 88.029568) (xy 129.127732 87.822725) - (xy 128.884511 87.66021) (xy 128.614258 87.548268) (xy 128.32736 87.4912) (xy 128.03484 87.4912) (xy 127.747942 87.548268) - (xy 127.477689 87.66021) (xy 127.234468 87.822725) (xy 127.027625 88.029568) (xy 126.9111 88.20396) (xy 126.794575 88.029568) - (xy 126.587732 87.822725) (xy 126.344511 87.66021) (xy 126.074258 87.548268) (xy 125.78736 87.4912) (xy 125.49484 87.4912) - (xy 125.207942 87.548268) (xy 124.937689 87.66021) (xy 124.694468 87.822725) (xy 124.487625 88.029568) (xy 124.3711 88.20396) - (xy 124.254575 88.029568) (xy 124.047732 87.822725) (xy 123.804511 87.66021) (xy 123.534258 87.548268) (xy 123.24736 87.4912) - (xy 122.95484 87.4912) (xy 122.667942 87.548268) (xy 122.397689 87.66021) (xy 122.154468 87.822725) (xy 121.947625 88.029568) - (xy 121.8311 88.20396) (xy 121.714575 88.029568) (xy 121.507732 87.822725) (xy 121.264511 87.66021) (xy 120.994258 87.548268) - (xy 120.70736 87.4912) (xy 120.41484 87.4912) (xy 120.127942 87.548268) (xy 119.857689 87.66021) (xy 119.614468 87.822725) - (xy 119.407625 88.029568) (xy 119.2911 88.20396) (xy 119.174575 88.029568) (xy 118.967732 87.822725) (xy 118.724511 87.66021) - (xy 118.454258 87.548268) (xy 118.16736 87.4912) (xy 117.87484 87.4912) (xy 117.587942 87.548268) (xy 117.317689 87.66021) - (xy 117.074468 87.822725) (xy 116.867625 88.029568) (xy 116.7511 88.20396) (xy 116.634575 88.029568) (xy 116.427732 87.822725) - (xy 116.184511 87.66021) (xy 115.914258 87.548268) (xy 115.62736 87.4912) (xy 115.33484 87.4912) (xy 115.047942 87.548268) - (xy 114.777689 87.66021) (xy 114.534468 87.822725) (xy 114.402613 87.95458) (xy 114.380602 87.88202) (xy 114.321637 87.771706) - (xy 114.242285 87.675015) (xy 114.145594 87.595663) (xy 114.03528 87.536698) (xy 113.915582 87.500388) (xy 113.7911 87.488128) - (xy 112.0911 87.488128) (xy 111.966618 87.500388) (xy 111.84692 87.536698) (xy 111.736606 87.595663) (xy 111.639915 87.675015) - (xy 111.560563 87.771706) (xy 111.501598 87.88202) (xy 111.465288 88.001718) (xy 111.453028 88.1262) (xy 111.023 88.1262) - (xy 111.023 87.1089) (xy 173.317301 87.1089) - ) - ) - ) -) diff --git a/hw/loopback/loopback.kicad_pcb-bak b/hw/loopback/loopback.kicad_pcb-bak deleted file mode 100644 index 5fa5b0a6..00000000 --- a/hw/loopback/loopback.kicad_pcb-bak +++ /dev/null @@ -1,748 +0,0 @@ -(kicad_pcb (version 20171130) (host pcbnew "(5.1.7-0-10_14)") - - (general - (thickness 1.6) - (drawings 4) - (tracks 27) - (zones 0) - (modules 2) - (nets 11) - ) - - (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) - (aux_axis_origin 0 0) - (visible_elements FFFFFF7F) - (pcbplotparams - (layerselection 0x010fc_ffffffff) - (usegerberextensions false) - (usegerberattributes true) - (usegerberadvancedattributes true) - (creategerberjobfile true) - (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 /CD) - (net 2 /ATN) - (net 3 /DB1) - (net 4 /BSY) - (net 5 /DB7) - (net 6 /DB6) - (net 7 /DB5) - (net 8 /DB3) - (net 9 /ACK) - (net 10 GND) - - (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 /ACK) - (add_net /ATN) - (add_net /BSY) - (add_net /CD) - (add_net /DB1) - (add_net /DB3) - (add_net /DB5) - (add_net /DB6) - (add_net /DB7) - (add_net GND) - (add_net "Net-(J2-Pad1)") - (add_net "Net-(J2-Pad10)") - (add_net "Net-(J2-Pad11)") - (add_net "Net-(J2-Pad12)") - (add_net "Net-(J2-Pad13)") - (add_net "Net-(J2-Pad14)") - (add_net "Net-(J2-Pad15)") - (add_net "Net-(J2-Pad16)") - (add_net "Net-(J2-Pad17)") - (add_net "Net-(J2-Pad18)") - (add_net "Net-(J2-Pad19)") - (add_net "Net-(J2-Pad2)") - (add_net "Net-(J2-Pad20)") - (add_net "Net-(J2-Pad21)") - (add_net "Net-(J2-Pad22)") - (add_net "Net-(J2-Pad23)") - (add_net "Net-(J2-Pad24)") - (add_net "Net-(J2-Pad25)") - (add_net "Net-(J2-Pad26)") - (add_net "Net-(J2-Pad27)") - (add_net "Net-(J2-Pad28)") - (add_net "Net-(J2-Pad29)") - (add_net "Net-(J2-Pad3)") - (add_net "Net-(J2-Pad30)") - (add_net "Net-(J2-Pad31)") - (add_net "Net-(J2-Pad32)") - (add_net "Net-(J2-Pad33)") - (add_net "Net-(J2-Pad34)") - (add_net "Net-(J2-Pad35)") - (add_net "Net-(J2-Pad36)") - (add_net "Net-(J2-Pad37)") - (add_net "Net-(J2-Pad38)") - (add_net "Net-(J2-Pad39)") - (add_net "Net-(J2-Pad4)") - (add_net "Net-(J2-Pad40)") - (add_net "Net-(J2-Pad41)") - (add_net "Net-(J2-Pad42)") - (add_net "Net-(J2-Pad43)") - (add_net "Net-(J2-Pad44)") - (add_net "Net-(J2-Pad45)") - (add_net "Net-(J2-Pad46)") - (add_net "Net-(J2-Pad47)") - (add_net "Net-(J2-Pad48)") - (add_net "Net-(J2-Pad5)") - (add_net "Net-(J2-Pad6)") - (add_net "Net-(J2-Pad7)") - (add_net "Net-(J2-Pad8)") - (add_net "Net-(J2-Pad9)") - ) - - (module Connector_PinSocket_2.54mm:PinSocket_2x24_P2.54mm_Vertical (layer F.Cu) (tedit 5A19A423) (tstamp 60A88E38) - (at 112.9411 88.9762 90) - (descr "Through hole straight socket strip, 2x24, 2.54mm pitch, double cols (from Kicad 4.0.7), script generated") - (tags "Through hole socket strip THT 2x24 2.54mm double row") - (path /60AB1BAF) - (fp_text reference J2 (at -1.27 -2.77 90) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value Conn_02x25_Counter_Clockwise (at -1.27 61.19 90) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at -1.27 29.21) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_line (start -3.81 -1.27) (end 0.27 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start 0.27 -1.27) (end 1.27 -0.27) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 -0.27) (end 1.27 59.69) (layer F.Fab) (width 0.1)) - (fp_line (start 1.27 59.69) (end -3.81 59.69) (layer F.Fab) (width 0.1)) - (fp_line (start -3.81 59.69) (end -3.81 -1.27) (layer F.Fab) (width 0.1)) - (fp_line (start -3.87 -1.33) (end -1.27 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.87 -1.33) (end -3.87 59.75) (layer F.SilkS) (width 0.12)) - (fp_line (start -3.87 59.75) (end 1.33 59.75) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 1.27) (end 1.33 59.75) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 1.27) (end 1.33 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start -1.27 -1.33) (end -1.27 1.27) (layer F.SilkS) (width 0.12)) - (fp_line (start 1.33 -1.33) (end 1.33 0) (layer F.SilkS) (width 0.12)) - (fp_line (start 0 -1.33) (end 1.33 -1.33) (layer F.SilkS) (width 0.12)) - (fp_line (start -4.34 -1.8) (end 1.76 -1.8) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.76 -1.8) (end 1.76 60.2) (layer F.CrtYd) (width 0.05)) - (fp_line (start 1.76 60.2) (end -4.34 60.2) (layer F.CrtYd) (width 0.05)) - (fp_line (start -4.34 60.2) (end -4.34 -1.8) (layer F.CrtYd) (width 0.05)) - (pad 48 thru_hole oval (at -2.54 58.42 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 47 thru_hole oval (at 0 58.42 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 46 thru_hole oval (at -2.54 55.88 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 45 thru_hole oval (at 0 55.88 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 44 thru_hole oval (at -2.54 53.34 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 43 thru_hole oval (at 0 53.34 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 42 thru_hole oval (at -2.54 50.8 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 41 thru_hole oval (at 0 50.8 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 40 thru_hole oval (at -2.54 48.26 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 39 thru_hole oval (at 0 48.26 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 38 thru_hole oval (at -2.54 45.72 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 37 thru_hole oval (at 0 45.72 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 36 thru_hole oval (at -2.54 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 35 thru_hole oval (at 0 43.18 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 34 thru_hole oval (at -2.54 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 33 thru_hole oval (at 0 40.64 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 32 thru_hole oval (at -2.54 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 31 thru_hole oval (at 0 38.1 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 30 thru_hole oval (at -2.54 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 29 thru_hole oval (at 0 35.56 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 28 thru_hole oval (at -2.54 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 27 thru_hole oval (at 0 33.02 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 26 thru_hole oval (at -2.54 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 25 thru_hole oval (at 0 30.48 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 24 thru_hole oval (at -2.54 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 23 thru_hole oval (at 0 27.94 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 22 thru_hole oval (at -2.54 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 21 thru_hole oval (at 0 25.4 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 20 thru_hole oval (at -2.54 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 19 thru_hole oval (at 0 22.86 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 18 thru_hole oval (at -2.54 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 17 thru_hole oval (at 0 20.32 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 16 thru_hole oval (at -2.54 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 15 thru_hole oval (at 0 17.78 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 14 thru_hole oval (at -2.54 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 13 thru_hole oval (at 0 15.24 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 12 thru_hole oval (at -2.54 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 11 thru_hole oval (at 0 12.7 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 10 thru_hole oval (at -2.54 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 9 thru_hole oval (at 0 10.16 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 8 thru_hole oval (at -2.54 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 7 thru_hole oval (at 0 7.62 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 6 thru_hole oval (at -2.54 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 5 thru_hole oval (at 0 5.08 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 4 thru_hole oval (at -2.54 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 3 thru_hole oval (at 0 2.54 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 2 thru_hole oval (at -2.54 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (pad 1 thru_hole rect (at 0 0 90) (size 1.7 1.7) (drill 1) (layers *.Cu *.Mask)) - (model ${KISYS3DMOD}/Connector_PinSocket_2.54mm.3dshapes/PinSocket_2x24_P2.54mm_Vertical.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (module Connector_Dsub:DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm (layer F.Cu) (tedit 59FEDEE2) (tstamp 60A88213) - (at 126.7841 101.6762) - (descr "25-pin D-Sub connector, horizontal/angled (90 deg), THT-mount, male, pitch 2.77x2.84mm, pin-PCB-offset 4.9399999999999995mm, distance of mounting holes 47.1mm, distance of mounting holes to PCB edge 7.4799999999999995mm, see https://disti-assets.s3.amazonaws.com/tonar/files/datasheets/16730.pdf") - (tags "25-pin D-Sub connector horizontal angled 90deg THT male pitch 2.77x2.84mm pin-PCB-offset 4.9399999999999995mm mounting-holes-distance 47.1mm mounting-hole-offset 47.1mm") - (path /60A9E3C3) - (fp_text reference J1 (at 16.62 -3.7) (layer F.SilkS) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text value DB25_Male (at 16.62 15.68) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_text user %R (at 16.62 11.18) (layer F.Fab) - (effects (font (size 1 1) (thickness 0.15))) - ) - (fp_arc (start 40.17 0.3) (end 38.57 0.3) (angle 180) (layer F.Fab) (width 0.1)) - (fp_arc (start -6.93 0.3) (end -8.53 0.3) (angle 180) (layer F.Fab) (width 0.1)) - (fp_line (start -9.93 -2.7) (end -9.93 7.78) (layer F.Fab) (width 0.1)) - (fp_line (start -9.93 7.78) (end 43.17 7.78) (layer F.Fab) (width 0.1)) - (fp_line (start 43.17 7.78) (end 43.17 -2.7) (layer F.Fab) (width 0.1)) - (fp_line (start 43.17 -2.7) (end -9.93 -2.7) (layer F.Fab) (width 0.1)) - (fp_line (start -9.93 7.78) (end -9.93 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start -9.93 8.18) (end 43.17 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start 43.17 8.18) (end 43.17 7.78) (layer F.Fab) (width 0.1)) - (fp_line (start 43.17 7.78) (end -9.93 7.78) (layer F.Fab) (width 0.1)) - (fp_line (start -2.53 8.18) (end -2.53 14.18) (layer F.Fab) (width 0.1)) - (fp_line (start -2.53 14.18) (end 35.77 14.18) (layer F.Fab) (width 0.1)) - (fp_line (start 35.77 14.18) (end 35.77 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start 35.77 8.18) (end -2.53 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start -9.43 8.18) (end -9.43 13.18) (layer F.Fab) (width 0.1)) - (fp_line (start -9.43 13.18) (end -4.43 13.18) (layer F.Fab) (width 0.1)) - (fp_line (start -4.43 13.18) (end -4.43 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start -4.43 8.18) (end -9.43 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start 37.67 8.18) (end 37.67 13.18) (layer F.Fab) (width 0.1)) - (fp_line (start 37.67 13.18) (end 42.67 13.18) (layer F.Fab) (width 0.1)) - (fp_line (start 42.67 13.18) (end 42.67 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start 42.67 8.18) (end 37.67 8.18) (layer F.Fab) (width 0.1)) - (fp_line (start -8.53 7.78) (end -8.53 0.3) (layer F.Fab) (width 0.1)) - (fp_line (start -5.33 7.78) (end -5.33 0.3) (layer F.Fab) (width 0.1)) - (fp_line (start 38.57 7.78) (end 38.57 0.3) (layer F.Fab) (width 0.1)) - (fp_line (start 41.77 7.78) (end 41.77 0.3) (layer F.Fab) (width 0.1)) - (fp_line (start -9.99 7.72) (end -9.99 -2.76) (layer F.SilkS) (width 0.12)) - (fp_line (start -9.99 -2.76) (end 43.23 -2.76) (layer F.SilkS) (width 0.12)) - (fp_line (start 43.23 -2.76) (end 43.23 7.72) (layer F.SilkS) (width 0.12)) - (fp_line (start -0.25 -3.654338) (end 0.25 -3.654338) (layer F.SilkS) (width 0.12)) - (fp_line (start 0.25 -3.654338) (end 0 -3.221325) (layer F.SilkS) (width 0.12)) - (fp_line (start 0 -3.221325) (end -0.25 -3.654338) (layer F.SilkS) (width 0.12)) - (fp_line (start -10.45 -3.25) (end -10.45 14.7) (layer F.CrtYd) (width 0.05)) - (fp_line (start -10.45 14.7) (end 43.7 14.7) (layer F.CrtYd) (width 0.05)) - (fp_line (start 43.7 14.7) (end 43.7 -3.25) (layer F.CrtYd) (width 0.05)) - (fp_line (start 43.7 -3.25) (end -10.45 -3.25) (layer F.CrtYd) (width 0.05)) - (pad 0 thru_hole circle (at 40.17 0.3) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)) - (pad 0 thru_hole circle (at -6.93 0.3) (size 4 4) (drill 3.2) (layers *.Cu *.Mask)) - (pad 25 thru_hole circle (at 31.855 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 24 thru_hole circle (at 29.085 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 23 thru_hole circle (at 26.315 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 1 /CD)) - (pad 22 thru_hole circle (at 23.545 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 2 /ATN)) - (pad 21 thru_hole circle (at 20.775 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 3 /DB1)) - (pad 20 thru_hole circle (at 18.005 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 4 /BSY)) - (pad 19 thru_hole circle (at 15.235 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 3 /DB1)) - (pad 18 thru_hole circle (at 12.465 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 17 thru_hole circle (at 9.695 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 2 /ATN)) - (pad 16 thru_hole circle (at 6.925 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 15 thru_hole circle (at 4.155 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 1 /CD)) - (pad 14 thru_hole circle (at 1.385 2.84) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 13 thru_hole circle (at 33.24 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 5 /DB7)) - (pad 12 thru_hole circle (at 30.47 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 6 /DB6)) - (pad 11 thru_hole circle (at 27.7 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 7 /DB5)) - (pad 10 thru_hole circle (at 24.93 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 8 /DB3)) - (pad 9 thru_hole circle (at 22.16 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 8 thru_hole circle (at 19.39 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 9 /ACK)) - (pad 7 thru_hole circle (at 16.62 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 10 GND)) - (pad 6 thru_hole circle (at 13.85 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 4 /BSY)) - (pad 5 thru_hole circle (at 11.08 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 9 /ACK)) - (pad 4 thru_hole circle (at 8.31 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 8 /DB3)) - (pad 3 thru_hole circle (at 5.54 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 7 /DB5)) - (pad 2 thru_hole circle (at 2.77 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 6 /DB6)) - (pad 1 thru_hole rect (at 0 0) (size 1.6 1.6) (drill 1) (layers *.Cu *.Mask) - (net 5 /DB7)) - (model ${KISYS3DMOD}/Connector_Dsub.3dshapes/DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm.wrl - (at (xyz 0 0 0)) - (scale (xyz 1 1 1)) - (rotate (xyz 0 0 0)) - ) - ) - - (gr_line (start 110.363 86.4489) (end 110.363 109.474) (layer Edge.Cuts) (width 0.05)) - (gr_line (start 173.9773 86.4489) (end 110.363 86.4489) (layer Edge.Cuts) (width 0.05)) - (gr_line (start 173.9773 109.474) (end 173.9773 86.4489) (layer Edge.Cuts) (width 0.05)) - (gr_line (start 110.363 109.474) (end 173.9773 109.474) (layer Edge.Cuts) (width 0.05)) - - (segment (start 151.074075 106.541225) (end 153.0991 104.5162) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 132.964126 106.541225) (end 151.074075 106.541225) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 130.9391 104.5162) (end 132.964126 106.541225) (width 0.25) (layer F.Cu) (net 1)) - (segment (start 148.754088 106.091212) (end 150.3291 104.5162) (width 0.25) (layer F.Cu) (net 2)) - (segment (start 138.054112 106.091212) (end 148.754088 106.091212) (width 0.25) (layer F.Cu) (net 2)) - (segment (start 136.4791 104.5162) (end 138.054112 106.091212) (width 0.25) (layer F.Cu) (net 2)) - (segment (start 146.434099 105.641201) (end 147.5591 104.5162) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 143.144101 105.641201) (end 146.434099 105.641201) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 142.0191 104.5162) (end 143.144101 105.641201) (width 0.25) (layer F.Cu) (net 3)) - (segment (start 144.60547 104.5162) (end 144.7891 104.5162) (width 0.25) (layer F.Cu) (net 4)) - (segment (start 141.76547 101.6762) (end 144.60547 104.5162) (width 0.25) (layer F.Cu) (net 4)) - (segment (start 140.6341 101.6762) (end 141.76547 101.6762) (width 0.25) (layer F.Cu) (net 4)) - (segment (start 126.7841 101.6762) (end 131.2164 97.2439) (width 0.25) (layer F.Cu) (net 5)) - (segment (start 155.5918 97.2439) (end 160.0241 101.6762) (width 0.25) (layer F.Cu) (net 5)) - (segment (start 131.2164 97.2439) (end 155.5918 97.2439) (width 0.25) (layer F.Cu) (net 5)) - (segment (start 129.5541 101.6762) (end 133.2371 97.9932) (width 0.25) (layer F.Cu) (net 6)) - (segment (start 153.5711 97.9932) (end 157.2541 101.6762) (width 0.25) (layer F.Cu) (net 6)) - (segment (start 133.2371 97.9932) (end 153.5711 97.9932) (width 0.25) (layer F.Cu) (net 6)) - (segment (start 132.3241 101.6762) (end 135.207 98.7933) (width 0.25) (layer F.Cu) (net 7)) - (segment (start 151.6012 98.7933) (end 154.4841 101.6762) (width 0.25) (layer F.Cu) (net 7)) - (segment (start 135.207 98.7933) (end 151.6012 98.7933) (width 0.25) (layer F.Cu) (net 7)) - (segment (start 135.0941 101.6762) (end 137.088 99.6823) (width 0.25) (layer F.Cu) (net 8)) - (segment (start 149.7202 99.6823) (end 151.7141 101.6762) (width 0.25) (layer F.Cu) (net 8)) - (segment (start 137.088 99.6823) (end 149.7202 99.6823) (width 0.25) (layer F.Cu) (net 8)) - (segment (start 138.989101 100.551199) (end 137.8641 101.6762) (width 0.25) (layer F.Cu) (net 9)) - (segment (start 145.049099 100.551199) (end 138.989101 100.551199) (width 0.25) (layer F.Cu) (net 9)) - (segment (start 146.1741 101.6762) (end 145.049099 100.551199) (width 0.25) (layer F.Cu) (net 9)) - - (zone (net 10) (net_name GND) (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 176.3014 123.1773) (xy 108.7501 123.1773) (xy 108.7501 88.011) (xy 176.3014 88.011) - ) - ) - (filled_polygon - (pts - (xy 170.79 108.814) (xy 115.1124 108.814) (xy 115.1124 105.508902) (xy 127.356003 105.508902) (xy 127.427586 105.752871) - (xy 127.683096 105.873771) (xy 127.957284 105.9425) (xy 128.239612 105.956417) (xy 128.51923 105.914987) (xy 128.785392 105.819803) - (xy 128.910614 105.752871) (xy 128.982197 105.508902) (xy 128.1691 104.695805) (xy 127.356003 105.508902) (xy 115.1124 105.508902) - (xy 115.1124 101.716675) (xy 117.2191 101.716675) (xy 117.2191 102.235725) (xy 117.320361 102.744801) (xy 117.518993 103.224341) - (xy 117.807362 103.655915) (xy 118.174385 104.022938) (xy 118.605959 104.311307) (xy 119.085499 104.509939) (xy 119.594575 104.6112) - (xy 120.113625 104.6112) (xy 120.236735 104.586712) (xy 126.728883 104.586712) (xy 126.770313 104.86633) (xy 126.865497 105.132492) - (xy 126.932429 105.257714) (xy 127.176398 105.329297) (xy 127.989495 104.5162) (xy 127.176398 103.703103) (xy 126.932429 103.774686) - (xy 126.811529 104.030196) (xy 126.7428 104.304384) (xy 126.728883 104.586712) (xy 120.236735 104.586712) (xy 120.622701 104.509939) - (xy 121.102241 104.311307) (xy 121.533815 104.022938) (xy 121.900838 103.655915) (xy 121.989316 103.523498) (xy 127.356003 103.523498) - (xy 128.1691 104.336595) (xy 128.982197 103.523498) (xy 128.910614 103.279529) (xy 128.655104 103.158629) (xy 128.380916 103.0899) - (xy 128.098588 103.075983) (xy 127.81897 103.117413) (xy 127.552808 103.212597) (xy 127.427586 103.279529) (xy 127.356003 103.523498) - (xy 121.989316 103.523498) (xy 122.189207 103.224341) (xy 122.387839 102.744801) (xy 122.4891 102.235725) (xy 122.4891 101.716675) - (xy 122.387839 101.207599) (xy 122.25057 100.8762) (xy 125.346028 100.8762) (xy 125.346028 102.4762) (xy 125.358288 102.600682) - (xy 125.394598 102.72038) (xy 125.453563 102.830694) (xy 125.532915 102.927385) (xy 125.629606 103.006737) (xy 125.73992 103.065702) - (xy 125.859618 103.102012) (xy 125.9841 103.114272) (xy 127.5841 103.114272) (xy 127.708582 103.102012) (xy 127.82828 103.065702) - (xy 127.938594 103.006737) (xy 128.035285 102.927385) (xy 128.114637 102.830694) (xy 128.173602 102.72038) (xy 128.209912 102.600682) - (xy 128.222172 102.4762) (xy 128.222172 102.210475) (xy 128.28242 102.355927) (xy 128.439463 102.590959) (xy 128.639341 102.790837) - (xy 128.874373 102.94788) (xy 129.135526 103.056053) (xy 129.412765 103.1112) (xy 129.695435 103.1112) (xy 129.972674 103.056053) - (xy 130.233827 102.94788) (xy 130.468859 102.790837) (xy 130.668737 102.590959) (xy 130.82578 102.355927) (xy 130.933953 102.094774) - (xy 130.9391 102.068899) (xy 130.944247 102.094774) (xy 131.05242 102.355927) (xy 131.209463 102.590959) (xy 131.409341 102.790837) - (xy 131.644373 102.94788) (xy 131.905526 103.056053) (xy 132.182765 103.1112) (xy 132.465435 103.1112) (xy 132.742674 103.056053) - (xy 133.003827 102.94788) (xy 133.238859 102.790837) (xy 133.438737 102.590959) (xy 133.59578 102.355927) (xy 133.703953 102.094774) - (xy 133.7091 102.068899) (xy 133.714247 102.094774) (xy 133.82242 102.355927) (xy 133.979463 102.590959) (xy 134.179341 102.790837) - (xy 134.414373 102.94788) (xy 134.675526 103.056053) (xy 134.952765 103.1112) (xy 135.235435 103.1112) (xy 135.512674 103.056053) - (xy 135.773827 102.94788) (xy 136.008859 102.790837) (xy 136.208737 102.590959) (xy 136.36578 102.355927) (xy 136.473953 102.094774) - (xy 136.4791 102.068899) (xy 136.484247 102.094774) (xy 136.59242 102.355927) (xy 136.749463 102.590959) (xy 136.949341 102.790837) - (xy 137.184373 102.94788) (xy 137.445526 103.056053) (xy 137.722765 103.1112) (xy 138.005435 103.1112) (xy 138.282674 103.056053) - (xy 138.543827 102.94788) (xy 138.778859 102.790837) (xy 138.978737 102.590959) (xy 139.13578 102.355927) (xy 139.243953 102.094774) - (xy 139.2491 102.068899) (xy 139.254247 102.094774) (xy 139.36242 102.355927) (xy 139.519463 102.590959) (xy 139.719341 102.790837) - (xy 139.954373 102.94788) (xy 140.215526 103.056053) (xy 140.492765 103.1112) (xy 140.775435 103.1112) (xy 141.052674 103.056053) - (xy 141.313827 102.94788) (xy 141.548859 102.790837) (xy 141.677082 102.662614) (xy 142.095669 103.0812) (xy 141.877765 103.0812) - (xy 141.600526 103.136347) (xy 141.339373 103.24452) (xy 141.104341 103.401563) (xy 140.904463 103.601441) (xy 140.74742 103.836473) - (xy 140.639247 104.097626) (xy 140.633587 104.126082) (xy 140.552703 103.899908) (xy 140.485771 103.774686) (xy 140.241802 103.703103) - (xy 139.428705 104.5162) (xy 139.442848 104.530343) (xy 139.263243 104.709948) (xy 139.2491 104.695805) (xy 139.234958 104.709948) - (xy 139.055353 104.530343) (xy 139.069495 104.5162) (xy 138.256398 103.703103) (xy 138.012429 103.774686) (xy 137.891529 104.030196) - (xy 137.865888 104.132489) (xy 137.858953 104.097626) (xy 137.75078 103.836473) (xy 137.593737 103.601441) (xy 137.515794 103.523498) - (xy 138.436003 103.523498) (xy 139.2491 104.336595) (xy 140.062197 103.523498) (xy 139.990614 103.279529) (xy 139.735104 103.158629) - (xy 139.460916 103.0899) (xy 139.178588 103.075983) (xy 138.89897 103.117413) (xy 138.632808 103.212597) (xy 138.507586 103.279529) - (xy 138.436003 103.523498) (xy 137.515794 103.523498) (xy 137.393859 103.401563) (xy 137.158827 103.24452) (xy 136.897674 103.136347) - (xy 136.620435 103.0812) (xy 136.337765 103.0812) (xy 136.060526 103.136347) (xy 135.799373 103.24452) (xy 135.564341 103.401563) - (xy 135.364463 103.601441) (xy 135.20742 103.836473) (xy 135.099247 104.097626) (xy 135.093587 104.126082) (xy 135.012703 103.899908) - (xy 134.945771 103.774686) (xy 134.701802 103.703103) (xy 133.888705 104.5162) (xy 134.701802 105.329297) (xy 134.945771 105.257714) - (xy 135.066671 105.002204) (xy 135.092312 104.899911) (xy 135.099247 104.934774) (xy 135.20742 105.195927) (xy 135.364463 105.430959) - (xy 135.564341 105.630837) (xy 135.789413 105.781225) (xy 134.397567 105.781225) (xy 134.450614 105.752871) (xy 134.522197 105.508902) - (xy 133.7091 104.695805) (xy 133.694958 104.709948) (xy 133.515353 104.530343) (xy 133.529495 104.5162) (xy 132.716398 103.703103) - (xy 132.472429 103.774686) (xy 132.351529 104.030196) (xy 132.325888 104.132489) (xy 132.318953 104.097626) (xy 132.21078 103.836473) - (xy 132.053737 103.601441) (xy 131.975794 103.523498) (xy 132.896003 103.523498) (xy 133.7091 104.336595) (xy 134.522197 103.523498) - (xy 134.450614 103.279529) (xy 134.195104 103.158629) (xy 133.920916 103.0899) (xy 133.638588 103.075983) (xy 133.35897 103.117413) - (xy 133.092808 103.212597) (xy 132.967586 103.279529) (xy 132.896003 103.523498) (xy 131.975794 103.523498) (xy 131.853859 103.401563) - (xy 131.618827 103.24452) (xy 131.357674 103.136347) (xy 131.080435 103.0812) (xy 130.797765 103.0812) (xy 130.520526 103.136347) - (xy 130.259373 103.24452) (xy 130.024341 103.401563) (xy 129.824463 103.601441) (xy 129.66742 103.836473) (xy 129.559247 104.097626) - (xy 129.553587 104.126082) (xy 129.472703 103.899908) (xy 129.405771 103.774686) (xy 129.161802 103.703103) (xy 128.348705 104.5162) - (xy 129.161802 105.329297) (xy 129.405771 105.257714) (xy 129.526671 105.002204) (xy 129.552312 104.899911) (xy 129.559247 104.934774) - (xy 129.66742 105.195927) (xy 129.824463 105.430959) (xy 130.024341 105.630837) (xy 130.259373 105.78788) (xy 130.520526 105.896053) - (xy 130.797765 105.9512) (xy 131.080435 105.9512) (xy 131.262986 105.914888) (xy 132.400331 107.052233) (xy 132.424125 107.081226) - (xy 132.453118 107.10502) (xy 132.453123 107.105025) (xy 132.53985 107.176199) (xy 132.671879 107.246771) (xy 132.81514 107.290228) - (xy 132.964126 107.304902) (xy 133.001459 107.301225) (xy 151.036753 107.301225) (xy 151.074075 107.304901) (xy 151.111397 107.301225) - (xy 151.111408 107.301225) (xy 151.223061 107.290228) (xy 151.366322 107.246771) (xy 151.498351 107.176199) (xy 151.614076 107.081226) - (xy 151.637879 107.052222) (xy 152.775214 105.914888) (xy 152.957765 105.9512) (xy 153.240435 105.9512) (xy 153.517674 105.896053) - (xy 153.778827 105.78788) (xy 154.013859 105.630837) (xy 154.135794 105.508902) (xy 155.056003 105.508902) (xy 155.127586 105.752871) - (xy 155.383096 105.873771) (xy 155.657284 105.9425) (xy 155.939612 105.956417) (xy 156.21923 105.914987) (xy 156.485392 105.819803) - (xy 156.610614 105.752871) (xy 156.682197 105.508902) (xy 157.826003 105.508902) (xy 157.897586 105.752871) (xy 158.153096 105.873771) - (xy 158.427284 105.9425) (xy 158.709612 105.956417) (xy 158.98923 105.914987) (xy 159.255392 105.819803) (xy 159.380614 105.752871) - (xy 159.452197 105.508902) (xy 158.6391 104.695805) (xy 157.826003 105.508902) (xy 156.682197 105.508902) (xy 155.8691 104.695805) - (xy 155.056003 105.508902) (xy 154.135794 105.508902) (xy 154.213737 105.430959) (xy 154.37078 105.195927) (xy 154.478953 104.934774) - (xy 154.484613 104.906318) (xy 154.565497 105.132492) (xy 154.632429 105.257714) (xy 154.876398 105.329297) (xy 155.689495 104.5162) - (xy 156.048705 104.5162) (xy 156.861802 105.329297) (xy 157.105771 105.257714) (xy 157.226671 105.002204) (xy 157.252316 104.899895) - (xy 157.335497 105.132492) (xy 157.402429 105.257714) (xy 157.646398 105.329297) (xy 158.459495 104.5162) (xy 158.818705 104.5162) - (xy 159.631802 105.329297) (xy 159.875771 105.257714) (xy 159.996671 105.002204) (xy 160.0654 104.728016) (xy 160.079317 104.445688) - (xy 160.037887 104.16607) (xy 159.942703 103.899908) (xy 159.875771 103.774686) (xy 159.631802 103.703103) (xy 158.818705 104.5162) - (xy 158.459495 104.5162) (xy 157.646398 103.703103) (xy 157.402429 103.774686) (xy 157.281529 104.030196) (xy 157.255884 104.132505) - (xy 157.172703 103.899908) (xy 157.105771 103.774686) (xy 156.861802 103.703103) (xy 156.048705 104.5162) (xy 155.689495 104.5162) - (xy 154.876398 103.703103) (xy 154.632429 103.774686) (xy 154.511529 104.030196) (xy 154.485888 104.132489) (xy 154.478953 104.097626) - (xy 154.37078 103.836473) (xy 154.213737 103.601441) (xy 154.135794 103.523498) (xy 155.056003 103.523498) (xy 155.8691 104.336595) - (xy 156.682197 103.523498) (xy 157.826003 103.523498) (xy 158.6391 104.336595) (xy 159.452197 103.523498) (xy 159.380614 103.279529) - (xy 159.125104 103.158629) (xy 158.850916 103.0899) (xy 158.568588 103.075983) (xy 158.28897 103.117413) (xy 158.022808 103.212597) - (xy 157.897586 103.279529) (xy 157.826003 103.523498) (xy 156.682197 103.523498) (xy 156.610614 103.279529) (xy 156.355104 103.158629) - (xy 156.080916 103.0899) (xy 155.798588 103.075983) (xy 155.51897 103.117413) (xy 155.252808 103.212597) (xy 155.127586 103.279529) - (xy 155.056003 103.523498) (xy 154.135794 103.523498) (xy 154.013859 103.401563) (xy 153.778827 103.24452) (xy 153.517674 103.136347) - (xy 153.240435 103.0812) (xy 152.957765 103.0812) (xy 152.680526 103.136347) (xy 152.419373 103.24452) (xy 152.184341 103.401563) - (xy 151.984463 103.601441) (xy 151.82742 103.836473) (xy 151.719247 104.097626) (xy 151.7141 104.123501) (xy 151.708953 104.097626) - (xy 151.60078 103.836473) (xy 151.443737 103.601441) (xy 151.243859 103.401563) (xy 151.008827 103.24452) (xy 150.747674 103.136347) - (xy 150.470435 103.0812) (xy 150.187765 103.0812) (xy 149.910526 103.136347) (xy 149.649373 103.24452) (xy 149.414341 103.401563) - (xy 149.214463 103.601441) (xy 149.05742 103.836473) (xy 148.949247 104.097626) (xy 148.9441 104.123501) (xy 148.938953 104.097626) - (xy 148.83078 103.836473) (xy 148.673737 103.601441) (xy 148.473859 103.401563) (xy 148.238827 103.24452) (xy 147.977674 103.136347) - (xy 147.700435 103.0812) (xy 147.417765 103.0812) (xy 147.140526 103.136347) (xy 146.879373 103.24452) (xy 146.644341 103.401563) - (xy 146.444463 103.601441) (xy 146.28742 103.836473) (xy 146.179247 104.097626) (xy 146.1741 104.123501) (xy 146.168953 104.097626) - (xy 146.06078 103.836473) (xy 145.903737 103.601441) (xy 145.703859 103.401563) (xy 145.468827 103.24452) (xy 145.207674 103.136347) - (xy 144.930435 103.0812) (xy 144.647765 103.0812) (xy 144.370526 103.136347) (xy 144.320953 103.156881) (xy 144.100863 102.936791) - (xy 144.145614 102.912871) (xy 144.217197 102.668902) (xy 143.4041 101.855805) (xy 143.389958 101.869948) (xy 143.210353 101.690343) - (xy 143.224495 101.6762) (xy 143.210353 101.662058) (xy 143.389958 101.482453) (xy 143.4041 101.496595) (xy 143.418243 101.482453) - (xy 143.597848 101.662058) (xy 143.583705 101.6762) (xy 144.396802 102.489297) (xy 144.640771 102.417714) (xy 144.761671 102.162204) - (xy 144.787312 102.059911) (xy 144.794247 102.094774) (xy 144.90242 102.355927) (xy 145.059463 102.590959) (xy 145.259341 102.790837) - (xy 145.494373 102.94788) (xy 145.755526 103.056053) (xy 146.032765 103.1112) (xy 146.315435 103.1112) (xy 146.592674 103.056053) - (xy 146.853827 102.94788) (xy 147.088859 102.790837) (xy 147.210794 102.668902) (xy 148.131003 102.668902) (xy 148.202586 102.912871) - (xy 148.458096 103.033771) (xy 148.732284 103.1025) (xy 149.014612 103.116417) (xy 149.29423 103.074987) (xy 149.560392 102.979803) - (xy 149.685614 102.912871) (xy 149.757197 102.668902) (xy 148.9441 101.855805) (xy 148.131003 102.668902) (xy 147.210794 102.668902) - (xy 147.288737 102.590959) (xy 147.44578 102.355927) (xy 147.553953 102.094774) (xy 147.559613 102.066318) (xy 147.640497 102.292492) - (xy 147.707429 102.417714) (xy 147.951398 102.489297) (xy 148.764495 101.6762) (xy 147.951398 100.863103) (xy 147.707429 100.934686) - (xy 147.586529 101.190196) (xy 147.560888 101.292489) (xy 147.553953 101.257626) (xy 147.44578 100.996473) (xy 147.288737 100.761441) - (xy 147.088859 100.561563) (xy 146.910369 100.4423) (xy 148.201773 100.4423) (xy 148.131003 100.683498) (xy 148.9441 101.496595) - (xy 148.958243 101.482453) (xy 149.137848 101.662058) (xy 149.123705 101.6762) (xy 149.936802 102.489297) (xy 150.180771 102.417714) - (xy 150.301671 102.162204) (xy 150.327312 102.059911) (xy 150.334247 102.094774) (xy 150.44242 102.355927) (xy 150.599463 102.590959) - (xy 150.799341 102.790837) (xy 151.034373 102.94788) (xy 151.295526 103.056053) (xy 151.572765 103.1112) (xy 151.855435 103.1112) - (xy 152.132674 103.056053) (xy 152.393827 102.94788) (xy 152.628859 102.790837) (xy 152.828737 102.590959) (xy 152.98578 102.355927) - (xy 153.093953 102.094774) (xy 153.0991 102.068899) (xy 153.104247 102.094774) (xy 153.21242 102.355927) (xy 153.369463 102.590959) - (xy 153.569341 102.790837) (xy 153.804373 102.94788) (xy 154.065526 103.056053) (xy 154.342765 103.1112) (xy 154.625435 103.1112) - (xy 154.902674 103.056053) (xy 155.163827 102.94788) (xy 155.398859 102.790837) (xy 155.598737 102.590959) (xy 155.75578 102.355927) - (xy 155.863953 102.094774) (xy 155.8691 102.068899) (xy 155.874247 102.094774) (xy 155.98242 102.355927) (xy 156.139463 102.590959) - (xy 156.339341 102.790837) (xy 156.574373 102.94788) (xy 156.835526 103.056053) (xy 157.112765 103.1112) (xy 157.395435 103.1112) - (xy 157.672674 103.056053) (xy 157.933827 102.94788) (xy 158.168859 102.790837) (xy 158.368737 102.590959) (xy 158.52578 102.355927) - (xy 158.633953 102.094774) (xy 158.6391 102.068899) (xy 158.644247 102.094774) (xy 158.75242 102.355927) (xy 158.909463 102.590959) - (xy 159.109341 102.790837) (xy 159.344373 102.94788) (xy 159.605526 103.056053) (xy 159.882765 103.1112) (xy 160.165435 103.1112) - (xy 160.442674 103.056053) (xy 160.703827 102.94788) (xy 160.938859 102.790837) (xy 161.138737 102.590959) (xy 161.29578 102.355927) - (xy 161.403953 102.094774) (xy 161.4591 101.817535) (xy 161.4591 101.716675) (xy 164.3191 101.716675) (xy 164.3191 102.235725) - (xy 164.420361 102.744801) (xy 164.618993 103.224341) (xy 164.907362 103.655915) (xy 165.274385 104.022938) (xy 165.705959 104.311307) - (xy 166.185499 104.509939) (xy 166.694575 104.6112) (xy 167.213625 104.6112) (xy 167.722701 104.509939) (xy 168.202241 104.311307) - (xy 168.633815 104.022938) (xy 169.000838 103.655915) (xy 169.289207 103.224341) (xy 169.487839 102.744801) (xy 169.5891 102.235725) - (xy 169.5891 101.716675) (xy 169.487839 101.207599) (xy 169.289207 100.728059) (xy 169.000838 100.296485) (xy 168.633815 99.929462) - (xy 168.202241 99.641093) (xy 167.722701 99.442461) (xy 167.213625 99.3412) (xy 166.694575 99.3412) (xy 166.185499 99.442461) - (xy 165.705959 99.641093) (xy 165.274385 99.929462) (xy 164.907362 100.296485) (xy 164.618993 100.728059) (xy 164.420361 101.207599) - (xy 164.3191 101.716675) (xy 161.4591 101.716675) (xy 161.4591 101.534865) (xy 161.403953 101.257626) (xy 161.29578 100.996473) - (xy 161.138737 100.761441) (xy 160.938859 100.561563) (xy 160.703827 100.40452) (xy 160.442674 100.296347) (xy 160.165435 100.2412) - (xy 159.882765 100.2412) (xy 159.700214 100.277512) (xy 156.155604 96.732903) (xy 156.131801 96.703899) (xy 156.016076 96.608926) - (xy 155.884047 96.538354) (xy 155.740786 96.494897) (xy 155.629133 96.4839) (xy 155.629122 96.4839) (xy 155.5918 96.480224) - (xy 155.554478 96.4839) (xy 131.253725 96.4839) (xy 131.2164 96.480224) (xy 131.179075 96.4839) (xy 131.179067 96.4839) - (xy 131.067414 96.494897) (xy 130.924153 96.538354) (xy 130.792124 96.608926) (xy 130.676399 96.703899) (xy 130.652601 96.732897) - (xy 127.147371 100.238128) (xy 125.9841 100.238128) (xy 125.859618 100.250388) (xy 125.73992 100.286698) (xy 125.629606 100.345663) - (xy 125.532915 100.425015) (xy 125.453563 100.521706) (xy 125.394598 100.63202) (xy 125.358288 100.751718) (xy 125.346028 100.8762) - (xy 122.25057 100.8762) (xy 122.189207 100.728059) (xy 121.900838 100.296485) (xy 121.533815 99.929462) (xy 121.102241 99.641093) - (xy 120.622701 99.442461) (xy 120.113625 99.3412) (xy 119.594575 99.3412) (xy 119.085499 99.442461) (xy 118.605959 99.641093) - (xy 118.174385 99.929462) (xy 117.807362 100.296485) (xy 117.518993 100.728059) (xy 117.320361 101.207599) (xy 117.2191 101.716675) - (xy 115.1124 101.716675) (xy 115.1124 94.1066) (xy 170.790001 94.1066) - ) - ) - ) - (zone (net 10) (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 176.3014 122.8598) (xy 108.6358 122.8598) (xy 108.6358 88.2142) (xy 176.3014 88.2142) - ) - ) - (filled_polygon - (pts - (xy 170.79 108.814) (xy 115.1124 108.814) (xy 115.1124 105.508902) (xy 127.356003 105.508902) (xy 127.427586 105.752871) - (xy 127.683096 105.873771) (xy 127.957284 105.9425) (xy 128.239612 105.956417) (xy 128.51923 105.914987) (xy 128.785392 105.819803) - (xy 128.910614 105.752871) (xy 128.982197 105.508902) (xy 128.1691 104.695805) (xy 127.356003 105.508902) (xy 115.1124 105.508902) - (xy 115.1124 101.716675) (xy 117.2191 101.716675) (xy 117.2191 102.235725) (xy 117.320361 102.744801) (xy 117.518993 103.224341) - (xy 117.807362 103.655915) (xy 118.174385 104.022938) (xy 118.605959 104.311307) (xy 119.085499 104.509939) (xy 119.594575 104.6112) - (xy 120.113625 104.6112) (xy 120.236735 104.586712) (xy 126.728883 104.586712) (xy 126.770313 104.86633) (xy 126.865497 105.132492) - (xy 126.932429 105.257714) (xy 127.176398 105.329297) (xy 127.989495 104.5162) (xy 128.348705 104.5162) (xy 129.161802 105.329297) - (xy 129.405771 105.257714) (xy 129.526671 105.002204) (xy 129.552312 104.899911) (xy 129.559247 104.934774) (xy 129.66742 105.195927) - (xy 129.824463 105.430959) (xy 130.024341 105.630837) (xy 130.259373 105.78788) (xy 130.520526 105.896053) (xy 130.797765 105.9512) - (xy 131.080435 105.9512) (xy 131.357674 105.896053) (xy 131.618827 105.78788) (xy 131.853859 105.630837) (xy 131.975794 105.508902) - (xy 132.896003 105.508902) (xy 132.967586 105.752871) (xy 133.223096 105.873771) (xy 133.497284 105.9425) (xy 133.779612 105.956417) - (xy 134.05923 105.914987) (xy 134.325392 105.819803) (xy 134.450614 105.752871) (xy 134.522197 105.508902) (xy 133.7091 104.695805) - (xy 132.896003 105.508902) (xy 131.975794 105.508902) (xy 132.053737 105.430959) (xy 132.21078 105.195927) (xy 132.318953 104.934774) - (xy 132.324613 104.906318) (xy 132.405497 105.132492) (xy 132.472429 105.257714) (xy 132.716398 105.329297) (xy 133.529495 104.5162) - (xy 133.888705 104.5162) (xy 134.701802 105.329297) (xy 134.945771 105.257714) (xy 135.066671 105.002204) (xy 135.092312 104.899911) - (xy 135.099247 104.934774) (xy 135.20742 105.195927) (xy 135.364463 105.430959) (xy 135.564341 105.630837) (xy 135.799373 105.78788) - (xy 136.060526 105.896053) (xy 136.337765 105.9512) (xy 136.620435 105.9512) (xy 136.897674 105.896053) (xy 137.158827 105.78788) - (xy 137.393859 105.630837) (xy 137.515794 105.508902) (xy 138.436003 105.508902) (xy 138.507586 105.752871) (xy 138.763096 105.873771) - (xy 139.037284 105.9425) (xy 139.319612 105.956417) (xy 139.59923 105.914987) (xy 139.865392 105.819803) (xy 139.990614 105.752871) - (xy 140.062197 105.508902) (xy 139.2491 104.695805) (xy 138.436003 105.508902) (xy 137.515794 105.508902) (xy 137.593737 105.430959) - (xy 137.75078 105.195927) (xy 137.858953 104.934774) (xy 137.864613 104.906318) (xy 137.945497 105.132492) (xy 138.012429 105.257714) - (xy 138.256398 105.329297) (xy 139.069495 104.5162) (xy 139.428705 104.5162) (xy 140.241802 105.329297) (xy 140.485771 105.257714) - (xy 140.606671 105.002204) (xy 140.632312 104.899911) (xy 140.639247 104.934774) (xy 140.74742 105.195927) (xy 140.904463 105.430959) - (xy 141.104341 105.630837) (xy 141.339373 105.78788) (xy 141.600526 105.896053) (xy 141.877765 105.9512) (xy 142.160435 105.9512) - (xy 142.437674 105.896053) (xy 142.698827 105.78788) (xy 142.933859 105.630837) (xy 143.133737 105.430959) (xy 143.29078 105.195927) - (xy 143.398953 104.934774) (xy 143.4041 104.908899) (xy 143.409247 104.934774) (xy 143.51742 105.195927) (xy 143.674463 105.430959) - (xy 143.874341 105.630837) (xy 144.109373 105.78788) (xy 144.370526 105.896053) (xy 144.647765 105.9512) (xy 144.930435 105.9512) - (xy 145.207674 105.896053) (xy 145.468827 105.78788) (xy 145.703859 105.630837) (xy 145.903737 105.430959) (xy 146.06078 105.195927) - (xy 146.168953 104.934774) (xy 146.1741 104.908899) (xy 146.179247 104.934774) (xy 146.28742 105.195927) (xy 146.444463 105.430959) - (xy 146.644341 105.630837) (xy 146.879373 105.78788) (xy 147.140526 105.896053) (xy 147.417765 105.9512) (xy 147.700435 105.9512) - (xy 147.977674 105.896053) (xy 148.238827 105.78788) (xy 148.473859 105.630837) (xy 148.673737 105.430959) (xy 148.83078 105.195927) - (xy 148.938953 104.934774) (xy 148.9441 104.908899) (xy 148.949247 104.934774) (xy 149.05742 105.195927) (xy 149.214463 105.430959) - (xy 149.414341 105.630837) (xy 149.649373 105.78788) (xy 149.910526 105.896053) (xy 150.187765 105.9512) (xy 150.470435 105.9512) - (xy 150.747674 105.896053) (xy 151.008827 105.78788) (xy 151.243859 105.630837) (xy 151.443737 105.430959) (xy 151.60078 105.195927) - (xy 151.708953 104.934774) (xy 151.7141 104.908899) (xy 151.719247 104.934774) (xy 151.82742 105.195927) (xy 151.984463 105.430959) - (xy 152.184341 105.630837) (xy 152.419373 105.78788) (xy 152.680526 105.896053) (xy 152.957765 105.9512) (xy 153.240435 105.9512) - (xy 153.517674 105.896053) (xy 153.778827 105.78788) (xy 154.013859 105.630837) (xy 154.135794 105.508902) (xy 155.056003 105.508902) - (xy 155.127586 105.752871) (xy 155.383096 105.873771) (xy 155.657284 105.9425) (xy 155.939612 105.956417) (xy 156.21923 105.914987) - (xy 156.485392 105.819803) (xy 156.610614 105.752871) (xy 156.682197 105.508902) (xy 157.826003 105.508902) (xy 157.897586 105.752871) - (xy 158.153096 105.873771) (xy 158.427284 105.9425) (xy 158.709612 105.956417) (xy 158.98923 105.914987) (xy 159.255392 105.819803) - (xy 159.380614 105.752871) (xy 159.452197 105.508902) (xy 158.6391 104.695805) (xy 157.826003 105.508902) (xy 156.682197 105.508902) - (xy 155.8691 104.695805) (xy 155.056003 105.508902) (xy 154.135794 105.508902) (xy 154.213737 105.430959) (xy 154.37078 105.195927) - (xy 154.478953 104.934774) (xy 154.484613 104.906318) (xy 154.565497 105.132492) (xy 154.632429 105.257714) (xy 154.876398 105.329297) - (xy 155.689495 104.5162) (xy 156.048705 104.5162) (xy 156.861802 105.329297) (xy 157.105771 105.257714) (xy 157.226671 105.002204) - (xy 157.252316 104.899895) (xy 157.335497 105.132492) (xy 157.402429 105.257714) (xy 157.646398 105.329297) (xy 158.459495 104.5162) - (xy 158.818705 104.5162) (xy 159.631802 105.329297) (xy 159.875771 105.257714) (xy 159.996671 105.002204) (xy 160.0654 104.728016) - (xy 160.079317 104.445688) (xy 160.037887 104.16607) (xy 159.942703 103.899908) (xy 159.875771 103.774686) (xy 159.631802 103.703103) - (xy 158.818705 104.5162) (xy 158.459495 104.5162) (xy 157.646398 103.703103) (xy 157.402429 103.774686) (xy 157.281529 104.030196) - (xy 157.255884 104.132505) (xy 157.172703 103.899908) (xy 157.105771 103.774686) (xy 156.861802 103.703103) (xy 156.048705 104.5162) - (xy 155.689495 104.5162) (xy 154.876398 103.703103) (xy 154.632429 103.774686) (xy 154.511529 104.030196) (xy 154.485888 104.132489) - (xy 154.478953 104.097626) (xy 154.37078 103.836473) (xy 154.213737 103.601441) (xy 154.135794 103.523498) (xy 155.056003 103.523498) - (xy 155.8691 104.336595) (xy 156.682197 103.523498) (xy 157.826003 103.523498) (xy 158.6391 104.336595) (xy 159.452197 103.523498) - (xy 159.380614 103.279529) (xy 159.125104 103.158629) (xy 158.850916 103.0899) (xy 158.568588 103.075983) (xy 158.28897 103.117413) - (xy 158.022808 103.212597) (xy 157.897586 103.279529) (xy 157.826003 103.523498) (xy 156.682197 103.523498) (xy 156.610614 103.279529) - (xy 156.355104 103.158629) (xy 156.080916 103.0899) (xy 155.798588 103.075983) (xy 155.51897 103.117413) (xy 155.252808 103.212597) - (xy 155.127586 103.279529) (xy 155.056003 103.523498) (xy 154.135794 103.523498) (xy 154.013859 103.401563) (xy 153.778827 103.24452) - (xy 153.517674 103.136347) (xy 153.240435 103.0812) (xy 152.957765 103.0812) (xy 152.680526 103.136347) (xy 152.419373 103.24452) - (xy 152.184341 103.401563) (xy 151.984463 103.601441) (xy 151.82742 103.836473) (xy 151.719247 104.097626) (xy 151.7141 104.123501) - (xy 151.708953 104.097626) (xy 151.60078 103.836473) (xy 151.443737 103.601441) (xy 151.243859 103.401563) (xy 151.008827 103.24452) - (xy 150.747674 103.136347) (xy 150.470435 103.0812) (xy 150.187765 103.0812) (xy 149.910526 103.136347) (xy 149.649373 103.24452) - (xy 149.414341 103.401563) (xy 149.214463 103.601441) (xy 149.05742 103.836473) (xy 148.949247 104.097626) (xy 148.9441 104.123501) - (xy 148.938953 104.097626) (xy 148.83078 103.836473) (xy 148.673737 103.601441) (xy 148.473859 103.401563) (xy 148.238827 103.24452) - (xy 147.977674 103.136347) (xy 147.700435 103.0812) (xy 147.417765 103.0812) (xy 147.140526 103.136347) (xy 146.879373 103.24452) - (xy 146.644341 103.401563) (xy 146.444463 103.601441) (xy 146.28742 103.836473) (xy 146.179247 104.097626) (xy 146.1741 104.123501) - (xy 146.168953 104.097626) (xy 146.06078 103.836473) (xy 145.903737 103.601441) (xy 145.703859 103.401563) (xy 145.468827 103.24452) - (xy 145.207674 103.136347) (xy 144.930435 103.0812) (xy 144.647765 103.0812) (xy 144.370526 103.136347) (xy 144.109373 103.24452) - (xy 143.874341 103.401563) (xy 143.674463 103.601441) (xy 143.51742 103.836473) (xy 143.409247 104.097626) (xy 143.4041 104.123501) - (xy 143.398953 104.097626) (xy 143.29078 103.836473) (xy 143.133737 103.601441) (xy 142.933859 103.401563) (xy 142.698827 103.24452) - (xy 142.437674 103.136347) (xy 142.160435 103.0812) (xy 141.877765 103.0812) (xy 141.600526 103.136347) (xy 141.339373 103.24452) - (xy 141.104341 103.401563) (xy 140.904463 103.601441) (xy 140.74742 103.836473) (xy 140.639247 104.097626) (xy 140.633587 104.126082) - (xy 140.552703 103.899908) (xy 140.485771 103.774686) (xy 140.241802 103.703103) (xy 139.428705 104.5162) (xy 139.069495 104.5162) - (xy 138.256398 103.703103) (xy 138.012429 103.774686) (xy 137.891529 104.030196) (xy 137.865888 104.132489) (xy 137.858953 104.097626) - (xy 137.75078 103.836473) (xy 137.593737 103.601441) (xy 137.515794 103.523498) (xy 138.436003 103.523498) (xy 139.2491 104.336595) - (xy 140.062197 103.523498) (xy 139.990614 103.279529) (xy 139.735104 103.158629) (xy 139.460916 103.0899) (xy 139.178588 103.075983) - (xy 138.89897 103.117413) (xy 138.632808 103.212597) (xy 138.507586 103.279529) (xy 138.436003 103.523498) (xy 137.515794 103.523498) - (xy 137.393859 103.401563) (xy 137.158827 103.24452) (xy 136.897674 103.136347) (xy 136.620435 103.0812) (xy 136.337765 103.0812) - (xy 136.060526 103.136347) (xy 135.799373 103.24452) (xy 135.564341 103.401563) (xy 135.364463 103.601441) (xy 135.20742 103.836473) - (xy 135.099247 104.097626) (xy 135.093587 104.126082) (xy 135.012703 103.899908) (xy 134.945771 103.774686) (xy 134.701802 103.703103) - (xy 133.888705 104.5162) (xy 133.529495 104.5162) (xy 132.716398 103.703103) (xy 132.472429 103.774686) (xy 132.351529 104.030196) - (xy 132.325888 104.132489) (xy 132.318953 104.097626) (xy 132.21078 103.836473) (xy 132.053737 103.601441) (xy 131.975794 103.523498) - (xy 132.896003 103.523498) (xy 133.7091 104.336595) (xy 134.522197 103.523498) (xy 134.450614 103.279529) (xy 134.195104 103.158629) - (xy 133.920916 103.0899) (xy 133.638588 103.075983) (xy 133.35897 103.117413) (xy 133.092808 103.212597) (xy 132.967586 103.279529) - (xy 132.896003 103.523498) (xy 131.975794 103.523498) (xy 131.853859 103.401563) (xy 131.618827 103.24452) (xy 131.357674 103.136347) - (xy 131.080435 103.0812) (xy 130.797765 103.0812) (xy 130.520526 103.136347) (xy 130.259373 103.24452) (xy 130.024341 103.401563) - (xy 129.824463 103.601441) (xy 129.66742 103.836473) (xy 129.559247 104.097626) (xy 129.553587 104.126082) (xy 129.472703 103.899908) - (xy 129.405771 103.774686) (xy 129.161802 103.703103) (xy 128.348705 104.5162) (xy 127.989495 104.5162) (xy 127.176398 103.703103) - (xy 126.932429 103.774686) (xy 126.811529 104.030196) (xy 126.7428 104.304384) (xy 126.728883 104.586712) (xy 120.236735 104.586712) - (xy 120.622701 104.509939) (xy 121.102241 104.311307) (xy 121.533815 104.022938) (xy 121.900838 103.655915) (xy 121.989316 103.523498) - (xy 127.356003 103.523498) (xy 128.1691 104.336595) (xy 128.982197 103.523498) (xy 128.910614 103.279529) (xy 128.655104 103.158629) - (xy 128.380916 103.0899) (xy 128.098588 103.075983) (xy 127.81897 103.117413) (xy 127.552808 103.212597) (xy 127.427586 103.279529) - (xy 127.356003 103.523498) (xy 121.989316 103.523498) (xy 122.189207 103.224341) (xy 122.387839 102.744801) (xy 122.4891 102.235725) - (xy 122.4891 101.716675) (xy 122.387839 101.207599) (xy 122.25057 100.8762) (xy 125.346028 100.8762) (xy 125.346028 102.4762) - (xy 125.358288 102.600682) (xy 125.394598 102.72038) (xy 125.453563 102.830694) (xy 125.532915 102.927385) (xy 125.629606 103.006737) - (xy 125.73992 103.065702) (xy 125.859618 103.102012) (xy 125.9841 103.114272) (xy 127.5841 103.114272) (xy 127.708582 103.102012) - (xy 127.82828 103.065702) (xy 127.938594 103.006737) (xy 128.035285 102.927385) (xy 128.114637 102.830694) (xy 128.173602 102.72038) - (xy 128.209912 102.600682) (xy 128.222172 102.4762) (xy 128.222172 102.210475) (xy 128.28242 102.355927) (xy 128.439463 102.590959) - (xy 128.639341 102.790837) (xy 128.874373 102.94788) (xy 129.135526 103.056053) (xy 129.412765 103.1112) (xy 129.695435 103.1112) - (xy 129.972674 103.056053) (xy 130.233827 102.94788) (xy 130.468859 102.790837) (xy 130.668737 102.590959) (xy 130.82578 102.355927) - (xy 130.933953 102.094774) (xy 130.9391 102.068899) (xy 130.944247 102.094774) (xy 131.05242 102.355927) (xy 131.209463 102.590959) - (xy 131.409341 102.790837) (xy 131.644373 102.94788) (xy 131.905526 103.056053) (xy 132.182765 103.1112) (xy 132.465435 103.1112) - (xy 132.742674 103.056053) (xy 133.003827 102.94788) (xy 133.238859 102.790837) (xy 133.438737 102.590959) (xy 133.59578 102.355927) - (xy 133.703953 102.094774) (xy 133.7091 102.068899) (xy 133.714247 102.094774) (xy 133.82242 102.355927) (xy 133.979463 102.590959) - (xy 134.179341 102.790837) (xy 134.414373 102.94788) (xy 134.675526 103.056053) (xy 134.952765 103.1112) (xy 135.235435 103.1112) - (xy 135.512674 103.056053) (xy 135.773827 102.94788) (xy 136.008859 102.790837) (xy 136.208737 102.590959) (xy 136.36578 102.355927) - (xy 136.473953 102.094774) (xy 136.4791 102.068899) (xy 136.484247 102.094774) (xy 136.59242 102.355927) (xy 136.749463 102.590959) - (xy 136.949341 102.790837) (xy 137.184373 102.94788) (xy 137.445526 103.056053) (xy 137.722765 103.1112) (xy 138.005435 103.1112) - (xy 138.282674 103.056053) (xy 138.543827 102.94788) (xy 138.778859 102.790837) (xy 138.978737 102.590959) (xy 139.13578 102.355927) - (xy 139.243953 102.094774) (xy 139.2491 102.068899) (xy 139.254247 102.094774) (xy 139.36242 102.355927) (xy 139.519463 102.590959) - (xy 139.719341 102.790837) (xy 139.954373 102.94788) (xy 140.215526 103.056053) (xy 140.492765 103.1112) (xy 140.775435 103.1112) - (xy 141.052674 103.056053) (xy 141.313827 102.94788) (xy 141.548859 102.790837) (xy 141.670794 102.668902) (xy 142.591003 102.668902) - (xy 142.662586 102.912871) (xy 142.918096 103.033771) (xy 143.192284 103.1025) (xy 143.474612 103.116417) (xy 143.75423 103.074987) - (xy 144.020392 102.979803) (xy 144.145614 102.912871) (xy 144.217197 102.668902) (xy 143.4041 101.855805) (xy 142.591003 102.668902) - (xy 141.670794 102.668902) (xy 141.748737 102.590959) (xy 141.90578 102.355927) (xy 142.013953 102.094774) (xy 142.019613 102.066318) - (xy 142.100497 102.292492) (xy 142.167429 102.417714) (xy 142.411398 102.489297) (xy 143.224495 101.6762) (xy 143.583705 101.6762) - (xy 144.396802 102.489297) (xy 144.640771 102.417714) (xy 144.761671 102.162204) (xy 144.787312 102.059911) (xy 144.794247 102.094774) - (xy 144.90242 102.355927) (xy 145.059463 102.590959) (xy 145.259341 102.790837) (xy 145.494373 102.94788) (xy 145.755526 103.056053) - (xy 146.032765 103.1112) (xy 146.315435 103.1112) (xy 146.592674 103.056053) (xy 146.853827 102.94788) (xy 147.088859 102.790837) - (xy 147.210794 102.668902) (xy 148.131003 102.668902) (xy 148.202586 102.912871) (xy 148.458096 103.033771) (xy 148.732284 103.1025) - (xy 149.014612 103.116417) (xy 149.29423 103.074987) (xy 149.560392 102.979803) (xy 149.685614 102.912871) (xy 149.757197 102.668902) - (xy 148.9441 101.855805) (xy 148.131003 102.668902) (xy 147.210794 102.668902) (xy 147.288737 102.590959) (xy 147.44578 102.355927) - (xy 147.553953 102.094774) (xy 147.559613 102.066318) (xy 147.640497 102.292492) (xy 147.707429 102.417714) (xy 147.951398 102.489297) - (xy 148.764495 101.6762) (xy 149.123705 101.6762) (xy 149.936802 102.489297) (xy 150.180771 102.417714) (xy 150.301671 102.162204) - (xy 150.327312 102.059911) (xy 150.334247 102.094774) (xy 150.44242 102.355927) (xy 150.599463 102.590959) (xy 150.799341 102.790837) - (xy 151.034373 102.94788) (xy 151.295526 103.056053) (xy 151.572765 103.1112) (xy 151.855435 103.1112) (xy 152.132674 103.056053) - (xy 152.393827 102.94788) (xy 152.628859 102.790837) (xy 152.828737 102.590959) (xy 152.98578 102.355927) (xy 153.093953 102.094774) - (xy 153.0991 102.068899) (xy 153.104247 102.094774) (xy 153.21242 102.355927) (xy 153.369463 102.590959) (xy 153.569341 102.790837) - (xy 153.804373 102.94788) (xy 154.065526 103.056053) (xy 154.342765 103.1112) (xy 154.625435 103.1112) (xy 154.902674 103.056053) - (xy 155.163827 102.94788) (xy 155.398859 102.790837) (xy 155.598737 102.590959) (xy 155.75578 102.355927) (xy 155.863953 102.094774) - (xy 155.8691 102.068899) (xy 155.874247 102.094774) (xy 155.98242 102.355927) (xy 156.139463 102.590959) (xy 156.339341 102.790837) - (xy 156.574373 102.94788) (xy 156.835526 103.056053) (xy 157.112765 103.1112) (xy 157.395435 103.1112) (xy 157.672674 103.056053) - (xy 157.933827 102.94788) (xy 158.168859 102.790837) (xy 158.368737 102.590959) (xy 158.52578 102.355927) (xy 158.633953 102.094774) - (xy 158.6391 102.068899) (xy 158.644247 102.094774) (xy 158.75242 102.355927) (xy 158.909463 102.590959) (xy 159.109341 102.790837) - (xy 159.344373 102.94788) (xy 159.605526 103.056053) (xy 159.882765 103.1112) (xy 160.165435 103.1112) (xy 160.442674 103.056053) - (xy 160.703827 102.94788) (xy 160.938859 102.790837) (xy 161.138737 102.590959) (xy 161.29578 102.355927) (xy 161.403953 102.094774) - (xy 161.4591 101.817535) (xy 161.4591 101.716675) (xy 164.3191 101.716675) (xy 164.3191 102.235725) (xy 164.420361 102.744801) - (xy 164.618993 103.224341) (xy 164.907362 103.655915) (xy 165.274385 104.022938) (xy 165.705959 104.311307) (xy 166.185499 104.509939) - (xy 166.694575 104.6112) (xy 167.213625 104.6112) (xy 167.722701 104.509939) (xy 168.202241 104.311307) (xy 168.633815 104.022938) - (xy 169.000838 103.655915) (xy 169.289207 103.224341) (xy 169.487839 102.744801) (xy 169.5891 102.235725) (xy 169.5891 101.716675) - (xy 169.487839 101.207599) (xy 169.289207 100.728059) (xy 169.000838 100.296485) (xy 168.633815 99.929462) (xy 168.202241 99.641093) - (xy 167.722701 99.442461) (xy 167.213625 99.3412) (xy 166.694575 99.3412) (xy 166.185499 99.442461) (xy 165.705959 99.641093) - (xy 165.274385 99.929462) (xy 164.907362 100.296485) (xy 164.618993 100.728059) (xy 164.420361 101.207599) (xy 164.3191 101.716675) - (xy 161.4591 101.716675) (xy 161.4591 101.534865) (xy 161.403953 101.257626) (xy 161.29578 100.996473) (xy 161.138737 100.761441) - (xy 160.938859 100.561563) (xy 160.703827 100.40452) (xy 160.442674 100.296347) (xy 160.165435 100.2412) (xy 159.882765 100.2412) - (xy 159.605526 100.296347) (xy 159.344373 100.40452) (xy 159.109341 100.561563) (xy 158.909463 100.761441) (xy 158.75242 100.996473) - (xy 158.644247 101.257626) (xy 158.6391 101.283501) (xy 158.633953 101.257626) (xy 158.52578 100.996473) (xy 158.368737 100.761441) - (xy 158.168859 100.561563) (xy 157.933827 100.40452) (xy 157.672674 100.296347) (xy 157.395435 100.2412) (xy 157.112765 100.2412) - (xy 156.835526 100.296347) (xy 156.574373 100.40452) (xy 156.339341 100.561563) (xy 156.139463 100.761441) (xy 155.98242 100.996473) - (xy 155.874247 101.257626) (xy 155.8691 101.283501) (xy 155.863953 101.257626) (xy 155.75578 100.996473) (xy 155.598737 100.761441) - (xy 155.398859 100.561563) (xy 155.163827 100.40452) (xy 154.902674 100.296347) (xy 154.625435 100.2412) (xy 154.342765 100.2412) - (xy 154.065526 100.296347) (xy 153.804373 100.40452) (xy 153.569341 100.561563) (xy 153.369463 100.761441) (xy 153.21242 100.996473) - (xy 153.104247 101.257626) (xy 153.0991 101.283501) (xy 153.093953 101.257626) (xy 152.98578 100.996473) (xy 152.828737 100.761441) - (xy 152.628859 100.561563) (xy 152.393827 100.40452) (xy 152.132674 100.296347) (xy 151.855435 100.2412) (xy 151.572765 100.2412) - (xy 151.295526 100.296347) (xy 151.034373 100.40452) (xy 150.799341 100.561563) (xy 150.599463 100.761441) (xy 150.44242 100.996473) - (xy 150.334247 101.257626) (xy 150.328587 101.286082) (xy 150.247703 101.059908) (xy 150.180771 100.934686) (xy 149.936802 100.863103) - (xy 149.123705 101.6762) (xy 148.764495 101.6762) (xy 147.951398 100.863103) (xy 147.707429 100.934686) (xy 147.586529 101.190196) - (xy 147.560888 101.292489) (xy 147.553953 101.257626) (xy 147.44578 100.996473) (xy 147.288737 100.761441) (xy 147.210794 100.683498) - (xy 148.131003 100.683498) (xy 148.9441 101.496595) (xy 149.757197 100.683498) (xy 149.685614 100.439529) (xy 149.430104 100.318629) - (xy 149.155916 100.2499) (xy 148.873588 100.235983) (xy 148.59397 100.277413) (xy 148.327808 100.372597) (xy 148.202586 100.439529) - (xy 148.131003 100.683498) (xy 147.210794 100.683498) (xy 147.088859 100.561563) (xy 146.853827 100.40452) (xy 146.592674 100.296347) - (xy 146.315435 100.2412) (xy 146.032765 100.2412) (xy 145.755526 100.296347) (xy 145.494373 100.40452) (xy 145.259341 100.561563) - (xy 145.059463 100.761441) (xy 144.90242 100.996473) (xy 144.794247 101.257626) (xy 144.788587 101.286082) (xy 144.707703 101.059908) - (xy 144.640771 100.934686) (xy 144.396802 100.863103) (xy 143.583705 101.6762) (xy 143.224495 101.6762) (xy 142.411398 100.863103) - (xy 142.167429 100.934686) (xy 142.046529 101.190196) (xy 142.020888 101.292489) (xy 142.013953 101.257626) (xy 141.90578 100.996473) - (xy 141.748737 100.761441) (xy 141.670794 100.683498) (xy 142.591003 100.683498) (xy 143.4041 101.496595) (xy 144.217197 100.683498) - (xy 144.145614 100.439529) (xy 143.890104 100.318629) (xy 143.615916 100.2499) (xy 143.333588 100.235983) (xy 143.05397 100.277413) - (xy 142.787808 100.372597) (xy 142.662586 100.439529) (xy 142.591003 100.683498) (xy 141.670794 100.683498) (xy 141.548859 100.561563) - (xy 141.313827 100.40452) (xy 141.052674 100.296347) (xy 140.775435 100.2412) (xy 140.492765 100.2412) (xy 140.215526 100.296347) - (xy 139.954373 100.40452) (xy 139.719341 100.561563) (xy 139.519463 100.761441) (xy 139.36242 100.996473) (xy 139.254247 101.257626) - (xy 139.2491 101.283501) (xy 139.243953 101.257626) (xy 139.13578 100.996473) (xy 138.978737 100.761441) (xy 138.778859 100.561563) - (xy 138.543827 100.40452) (xy 138.282674 100.296347) (xy 138.005435 100.2412) (xy 137.722765 100.2412) (xy 137.445526 100.296347) - (xy 137.184373 100.40452) (xy 136.949341 100.561563) (xy 136.749463 100.761441) (xy 136.59242 100.996473) (xy 136.484247 101.257626) - (xy 136.4791 101.283501) (xy 136.473953 101.257626) (xy 136.36578 100.996473) (xy 136.208737 100.761441) (xy 136.008859 100.561563) - (xy 135.773827 100.40452) (xy 135.512674 100.296347) (xy 135.235435 100.2412) (xy 134.952765 100.2412) (xy 134.675526 100.296347) - (xy 134.414373 100.40452) (xy 134.179341 100.561563) (xy 133.979463 100.761441) (xy 133.82242 100.996473) (xy 133.714247 101.257626) - (xy 133.7091 101.283501) (xy 133.703953 101.257626) (xy 133.59578 100.996473) (xy 133.438737 100.761441) (xy 133.238859 100.561563) - (xy 133.003827 100.40452) (xy 132.742674 100.296347) (xy 132.465435 100.2412) (xy 132.182765 100.2412) (xy 131.905526 100.296347) - (xy 131.644373 100.40452) (xy 131.409341 100.561563) (xy 131.209463 100.761441) (xy 131.05242 100.996473) (xy 130.944247 101.257626) - (xy 130.9391 101.283501) (xy 130.933953 101.257626) (xy 130.82578 100.996473) (xy 130.668737 100.761441) (xy 130.468859 100.561563) - (xy 130.233827 100.40452) (xy 129.972674 100.296347) (xy 129.695435 100.2412) (xy 129.412765 100.2412) (xy 129.135526 100.296347) - (xy 128.874373 100.40452) (xy 128.639341 100.561563) (xy 128.439463 100.761441) (xy 128.28242 100.996473) (xy 128.222172 101.141925) - (xy 128.222172 100.8762) (xy 128.209912 100.751718) (xy 128.173602 100.63202) (xy 128.114637 100.521706) (xy 128.035285 100.425015) - (xy 127.938594 100.345663) (xy 127.82828 100.286698) (xy 127.708582 100.250388) (xy 127.5841 100.238128) (xy 125.9841 100.238128) - (xy 125.859618 100.250388) (xy 125.73992 100.286698) (xy 125.629606 100.345663) (xy 125.532915 100.425015) (xy 125.453563 100.521706) - (xy 125.394598 100.63202) (xy 125.358288 100.751718) (xy 125.346028 100.8762) (xy 122.25057 100.8762) (xy 122.189207 100.728059) - (xy 121.900838 100.296485) (xy 121.533815 99.929462) (xy 121.102241 99.641093) (xy 120.622701 99.442461) (xy 120.113625 99.3412) - (xy 119.594575 99.3412) (xy 119.085499 99.442461) (xy 118.605959 99.641093) (xy 118.174385 99.929462) (xy 117.807362 100.296485) - (xy 117.518993 100.728059) (xy 117.320361 101.207599) (xy 117.2191 101.716675) (xy 115.1124 101.716675) (xy 115.1124 94.1066) - (xy 170.790001 94.1066) - ) - ) - ) -) diff --git a/hw/loopback/loopback.pro b/hw/loopback/loopback.pro deleted file mode 100644 index 152769cb..00000000 --- a/hw/loopback/loopback.pro +++ /dev/null @@ -1,33 +0,0 @@ -update=22/05/2015 07:44:53 -version=1 -last_client=kicad -[general] -version=1 -RootSch= -BoardNm= -[pcbnew] -version=1 -LastNetListRead= -UseCmpFile=1 -PadDrill=0.600000000000 -PadDrillOvalY=0.600000000000 -PadSizeH=1.500000000000 -PadSizeV=1.500000000000 -PcbTextSizeV=1.500000000000 -PcbTextSizeH=1.500000000000 -PcbTextThickness=0.300000000000 -ModuleTextSizeV=1.000000000000 -ModuleTextSizeH=1.000000000000 -ModuleTextSizeThickness=0.150000000000 -SolderMaskClearance=0.000000000000 -SolderMaskMinWidth=0.000000000000 -DrawSegmentWidth=0.200000000000 -BoardOutlineThickness=0.100000000000 -ModuleOutlineThickness=0.150000000000 -[cvpcb] -version=1 -NetIExt=net -[eeschema] -version=1 -LibDir= -[eeschema/libraries] diff --git a/hw/loopback/loopback.sch b/hw/loopback/loopback.sch deleted file mode 100644 index e2b2ff7f..00000000 --- a/hw/loopback/loopback.sch +++ /dev/null @@ -1,205 +0,0 @@ -EESchema Schematic File Version 4 -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 Connector:DB25_Male J1 -U 1 1 60A9E3C3 -P 2800 3050 -F 0 "J1" H 2718 1558 50 0000 C CNN -F 1 "DB25_Male" H 2718 1649 50 0000 C CNN -F 2 "Connector_Dsub:DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm" H 2800 3050 50 0001 C CNN -F 3 " ~" H 2800 3050 50 0001 C CNN - 1 2800 3050 - -1 0 0 1 -$EndComp -Wire Wire Line - 3100 4250 4150 4250 -Wire Wire Line - 4150 4250 4150 1850 -Wire Wire Line - 4150 1850 3100 1850 -Text Label 3150 1850 0 50 ~ 0 -REQ -Text Label 3150 4250 0 50 ~ 0 -DB7 -Wire Wire Line - 3100 2050 4050 2050 -Wire Wire Line - 4050 2050 4050 4050 -Wire Wire Line - 4050 4050 3100 4050 -Text Label 3150 2050 0 50 ~ 0 -MSG -Text Label 3150 4050 0 50 ~ 0 -DB6 -Wire Wire Line - 3100 2250 3950 2250 -Wire Wire Line - 3950 2250 3950 3850 -Wire Wire Line - 3950 3850 3100 3850 -Text Label 3150 2250 0 50 ~ 0 -IO -Text Label 3150 3850 0 50 ~ 0 -DB5 -Wire Wire Line - 3100 3650 3850 3650 -Wire Wire Line - 3850 3650 3850 2450 -Wire Wire Line - 3850 2450 3100 2450 -Text Label 3150 2450 0 50 ~ 0 -RST -Wire Wire Line - 3100 2650 3750 2650 -Wire Wire Line - 3750 2650 3750 3250 -Wire Wire Line - 3750 3250 3100 3250 -Text Label 3150 2650 0 50 ~ 0 -ACK -Text Label 3150 3250 0 50 ~ 0 -DB0 -Wire Wire Line - 3100 2150 4000 2150 -Wire Wire Line - 4000 2150 4000 3750 -Wire Wire Line - 4000 3750 3100 3750 -Text Label 3150 3750 0 50 ~ 0 -DB4 -Text Label 3150 3650 0 50 ~ 0 -DB3 -Text Label 3150 2150 0 50 ~ 0 -CD -Wire Wire Line - 3100 2550 3800 2550 -Wire Wire Line - 3800 2550 3800 3550 -Wire Wire Line - 3800 3550 3100 3550 -Text Label 3150 3550 0 50 ~ 0 -DB2 -Text Label 3150 2550 0 50 ~ 0 -ATN -Wire Wire Line - 3100 3350 3700 3350 -Text Label 3150 2850 0 50 ~ 0 -BSY -Text Label 3150 3350 0 50 ~ 0 -DB1 -Text Label 3150 3150 0 50 ~ 0 -DBP -Wire Wire Line - 3100 3150 3600 3150 -Wire Wire Line - 3600 3150 3600 2850 -Wire Wire Line - 3600 2850 3100 2850 -Wire Wire Line - 3100 2950 3700 2950 -Wire Wire Line - 3700 2950 3700 3350 -Text Label 3150 2950 0 50 ~ 0 -SEL -$Comp -L power:GND #PWR0101 -U 1 1 60AAE0F5 -P 3100 4150 -F 0 "#PWR0101" H 3100 3900 50 0001 C CNN -F 1 "GND" V 3105 4022 50 0000 R CNN -F 2 "" H 3100 4150 50 0001 C CNN -F 3 "" H 3100 4150 50 0001 C CNN - 1 3100 4150 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0102 -U 1 1 60AAEBA7 -P 3100 3950 -F 0 "#PWR0102" H 3100 3700 50 0001 C CNN -F 1 "GND" V 3105 3822 50 0000 R CNN -F 2 "" H 3100 3950 50 0001 C CNN -F 3 "" H 3100 3950 50 0001 C CNN - 1 3100 3950 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0103 -U 1 1 60AAF1B2 -P 3100 3450 -F 0 "#PWR0103" H 3100 3200 50 0001 C CNN -F 1 "GND" V 3105 3322 50 0000 R CNN -F 2 "" H 3100 3450 50 0001 C CNN -F 3 "" H 3100 3450 50 0001 C CNN - 1 3100 3450 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0104 -U 1 1 60AAF986 -P 3100 3050 -F 0 "#PWR0104" H 3100 2800 50 0001 C CNN -F 1 "GND" V 3105 2922 50 0000 R CNN -F 2 "" H 3100 3050 50 0001 C CNN -F 3 "" H 3100 3050 50 0001 C CNN - 1 3100 3050 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0105 -U 1 1 60AB006C -P 3100 2750 -F 0 "#PWR0105" H 3100 2500 50 0001 C CNN -F 1 "GND" V 3105 2622 50 0000 R CNN -F 2 "" H 3100 2750 50 0001 C CNN -F 3 "" H 3100 2750 50 0001 C CNN - 1 3100 2750 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0106 -U 1 1 60AB09A4 -P 3100 2350 -F 0 "#PWR0106" H 3100 2100 50 0001 C CNN -F 1 "GND" V 3105 2222 50 0000 R CNN -F 2 "" H 3100 2350 50 0001 C CNN -F 3 "" H 3100 2350 50 0001 C CNN - 1 3100 2350 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0107 -U 1 1 60AB12AA -P 3100 1950 -F 0 "#PWR0107" H 3100 1700 50 0001 C CNN -F 1 "GND" V 3105 1822 50 0000 R CNN -F 2 "" H 3100 1950 50 0001 C CNN -F 3 "" H 3100 1950 50 0001 C CNN - 1 3100 1950 - 0 -1 -1 0 -$EndComp -$Comp -L Connector_Generic:Conn_02x25_Counter_Clockwise J2 -U 1 1 60AB1BAF -P 7000 3050 -F 0 "J2" H 7050 4467 50 0000 C CNN -F 1 "Conn_02x25_Counter_Clockwise" H 7050 4376 50 0000 C CNN -F 2 "Connector_PinSocket_2.54mm:PinSocket_2x24_P2.54mm_Vertical" H 7000 3050 50 0001 C CNN -F 3 "~" H 7000 3050 50 0001 C CNN - 1 7000 3050 - 1 0 0 -1 -$EndComp -$EndSCHEMATC diff --git a/hw/loopback/loopback.sch-bak b/hw/loopback/loopback.sch-bak deleted file mode 100644 index e1f50597..00000000 --- a/hw/loopback/loopback.sch-bak +++ /dev/null @@ -1,205 +0,0 @@ -EESchema Schematic File Version 4 -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 Connector:DB25_Male J1 -U 1 1 60A9E3C3 -P 2800 3050 -F 0 "J1" H 2718 1558 50 0000 C CNN -F 1 "DB25_Male" H 2718 1649 50 0000 C CNN -F 2 "Connector_Dsub:DSUB-25_Male_Horizontal_P2.77x2.84mm_EdgePinOffset4.94mm_Housed_MountingHolesOffset7.48mm" H 2800 3050 50 0001 C CNN -F 3 " ~" H 2800 3050 50 0001 C CNN - 1 2800 3050 - -1 0 0 1 -$EndComp -Wire Wire Line - 3100 4250 4150 4250 -Wire Wire Line - 4150 4250 4150 1850 -Wire Wire Line - 4150 1850 3100 1850 -Text Label 3150 1850 0 50 ~ 0 -REQ -Text Label 3150 4250 0 50 ~ 0 -DB7 -Wire Wire Line - 3100 2050 4050 2050 -Wire Wire Line - 4050 2050 4050 4050 -Wire Wire Line - 4050 4050 3100 4050 -Text Label 3150 2050 0 50 ~ 0 -MSG -Text Label 3150 4050 0 50 ~ 0 -DB6 -Wire Wire Line - 3100 2250 3950 2250 -Wire Wire Line - 3950 2250 3950 3850 -Wire Wire Line - 3950 3850 3100 3850 -Text Label 3150 2250 0 50 ~ 0 -IO -Text Label 3150 3850 0 50 ~ 0 -DB5 -Wire Wire Line - 3100 3650 3850 3650 -Wire Wire Line - 3850 3650 3850 2450 -Wire Wire Line - 3850 2450 3100 2450 -Text Label 3150 2450 0 50 ~ 0 -RST -Wire Wire Line - 3100 2650 3750 2650 -Wire Wire Line - 3750 2650 3750 3250 -Wire Wire Line - 3750 3250 3100 3250 -Text Label 3150 2650 0 50 ~ 0 -ACK -Text Label 3150 3250 0 50 ~ 0 -DB0 -Wire Wire Line - 3100 2150 4000 2150 -Wire Wire Line - 4000 2150 4000 3750 -Wire Wire Line - 4000 3750 3100 3750 -Text Label 3150 3750 0 50 ~ 0 -DB4 -Text Label 3150 3650 0 50 ~ 0 -DB3 -Text Label 3150 2150 0 50 ~ 0 -CD -Wire Wire Line - 3100 2550 3800 2550 -Wire Wire Line - 3800 2550 3800 3550 -Wire Wire Line - 3800 3550 3100 3550 -Text Label 3150 3550 0 50 ~ 0 -DB2 -Text Label 3150 2550 0 50 ~ 0 -ATN -Wire Wire Line - 3100 3350 3700 3350 -Text Label 3150 2850 0 50 ~ 0 -BSY -Text Label 3150 3350 0 50 ~ 0 -DB1 -Text Label 3150 3150 0 50 ~ 0 -DBP -Wire Wire Line - 3100 3150 3600 3150 -Wire Wire Line - 3600 3150 3600 2850 -Wire Wire Line - 3600 2850 3100 2850 -Wire Wire Line - 3100 2950 3700 2950 -Wire Wire Line - 3700 2950 3700 3350 -Text Label 3150 2950 0 50 ~ 0 -SEL -$Comp -L power:GND #PWR0101 -U 1 1 60AAE0F5 -P 3100 4150 -F 0 "#PWR0101" H 3100 3900 50 0001 C CNN -F 1 "GND" V 3105 4022 50 0000 R CNN -F 2 "" H 3100 4150 50 0001 C CNN -F 3 "" H 3100 4150 50 0001 C CNN - 1 3100 4150 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0102 -U 1 1 60AAEBA7 -P 3100 3950 -F 0 "#PWR0102" H 3100 3700 50 0001 C CNN -F 1 "GND" V 3105 3822 50 0000 R CNN -F 2 "" H 3100 3950 50 0001 C CNN -F 3 "" H 3100 3950 50 0001 C CNN - 1 3100 3950 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0103 -U 1 1 60AAF1B2 -P 3100 3450 -F 0 "#PWR0103" H 3100 3200 50 0001 C CNN -F 1 "GND" V 3105 3322 50 0000 R CNN -F 2 "" H 3100 3450 50 0001 C CNN -F 3 "" H 3100 3450 50 0001 C CNN - 1 3100 3450 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0104 -U 1 1 60AAF986 -P 3100 3050 -F 0 "#PWR0104" H 3100 2800 50 0001 C CNN -F 1 "GND" V 3105 2922 50 0000 R CNN -F 2 "" H 3100 3050 50 0001 C CNN -F 3 "" H 3100 3050 50 0001 C CNN - 1 3100 3050 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0105 -U 1 1 60AB006C -P 3100 2750 -F 0 "#PWR0105" H 3100 2500 50 0001 C CNN -F 1 "GND" V 3105 2622 50 0000 R CNN -F 2 "" H 3100 2750 50 0001 C CNN -F 3 "" H 3100 2750 50 0001 C CNN - 1 3100 2750 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0106 -U 1 1 60AB09A4 -P 3100 2350 -F 0 "#PWR0106" H 3100 2100 50 0001 C CNN -F 1 "GND" V 3105 2222 50 0000 R CNN -F 2 "" H 3100 2350 50 0001 C CNN -F 3 "" H 3100 2350 50 0001 C CNN - 1 3100 2350 - 0 -1 -1 0 -$EndComp -$Comp -L power:GND #PWR0107 -U 1 1 60AB12AA -P 3100 1950 -F 0 "#PWR0107" H 3100 1700 50 0001 C CNN -F 1 "GND" V 3105 1822 50 0000 R CNN -F 2 "" H 3100 1950 50 0001 C CNN -F 3 "" H 3100 1950 50 0001 C CNN - 1 3100 1950 - 0 -1 -1 0 -$EndComp -$Comp -L Connector_Generic:Conn_02x25_Counter_Clockwise J? -U 1 1 60AB1BAF -P 7000 3050 -F 0 "J?" H 7050 4467 50 0000 C CNN -F 1 "Conn_02x25_Counter_Clockwise" H 7050 4376 50 0000 C CNN -F 2 "Connector_PinSocket_2.54mm:PinSocket_2x24_P2.54mm_Vertical" H 7000 3050 50 0001 C CNN -F 3 "~" H 7000 3050 50 0001 C CNN - 1 7000 3050 - 1 0 0 -1 -$EndComp -$EndSCHEMATC